diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..aefacc383594c206f1c1d0be66fe424bd4403a9b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +local_data/private_gpt/qdrant/collection/make_this_parameterizable_per_api_call/storage.sqlite filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/actions/install_dependencies/action.yml b/.github/workflows/actions/install_dependencies/action.yml new file mode 100644 index 0000000000000000000000000000000000000000..e16c63370f73a64504bc0ac51b8c18426e8d6c8e --- /dev/null +++ b/.github/workflows/actions/install_dependencies/action.yml @@ -0,0 +1,30 @@ +name: "Install Dependencies" +description: "Action to build the project dependencies from the main versions" +inputs: + python_version: + required: true + type: string + default: "3.11.4" + poetry_version: + required: true + type: string + default: "1.5.1" + +runs: + using: composite + steps: + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + version: ${{ inputs.poetry_version }} + virtualenvs-create: true + virtualenvs-in-project: false + installer-parallel: true + - uses: actions/setup-python@v4 + with: + python-version: ${{ inputs.python_version }} + cache: "poetry" + - name: Install Dependencies + run: poetry install --with ui --no-root + shell: bash + diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000000000000000000000000000000000000..259cf5da296b3da8027854910676df4b9d6fead0 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,45 @@ +name: docker + +on: + release: + types: [ published ] + workflow_dispatch: + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Log in to the Container registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=ref,event=branch + type=ref,event=pr + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=sha + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + file: Dockerfile.external + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/fern-check.yml b/.github/workflows/fern-check.yml new file mode 100644 index 0000000000000000000000000000000000000000..6b021abc79928cd798faa2a22181ee691f7b4b61 --- /dev/null +++ b/.github/workflows/fern-check.yml @@ -0,0 +1,21 @@ +name: fern check + +on: + pull_request: + branches: + - main + paths: + - "fern/**" + +jobs: + fern-check: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Install Fern + run: npm install -g fern-api + + - name: Check Fern API is valid + run: fern check \ No newline at end of file diff --git a/.github/workflows/preview-docs.yml b/.github/workflows/preview-docs.yml new file mode 100644 index 0000000000000000000000000000000000000000..21ecf9528afce4598bbc86471512d58212d32c64 --- /dev/null +++ b/.github/workflows/preview-docs.yml @@ -0,0 +1,48 @@ +name: deploy preview docs + +on: + pull_request_target: + branches: + - main + paths: + - "fern/**" + +jobs: + preview-docs: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: "18" + + - name: Install Fern + run: npm install -g fern-api + + - name: Generate Documentation Preview with Fern + id: generate_docs + env: + FERN_TOKEN: ${{ secrets.FERN_TOKEN }} + run: | + output=$(fern generate --docs --preview --log-level debug) + echo "$output" + # Extract the URL + preview_url=$(echo "$output" | grep -oP '(?<=Published docs to )https://[^\s]*') + # Set the output for the step + echo "::set-output name=preview_url::$preview_url" + - name: Comment PR with URL using github-actions bot + uses: actions/github-script@v4 + if: ${{ steps.generate_docs.outputs.preview_url }} + with: + script: | + const preview_url = '${{ steps.generate_docs.outputs.preview_url }}'; + const issue_number = context.issue.number; + github.issues.createComment({ + ...context.repo, + issue_number: issue_number, + body: `Published docs preview URL: ${preview_url}` + }) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml new file mode 100644 index 0000000000000000000000000000000000000000..a7ff1e35bf06606f6b5cc1c23e007a91423beb6a --- /dev/null +++ b/.github/workflows/publish-docs.yml @@ -0,0 +1,26 @@ +name: publish docs + +on: + push: + branches: + - main + paths: + - "fern/**" + +jobs: + publish-docs: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Setup node + uses: actions/setup-node@v3 + + - name: Download Fern + run: npm install -g fern-api + + - name: Generate and Publish Docs + env: + FERN_TOKEN: ${{ secrets.FERN_TOKEN }} + run: fern generate --docs --log-level debug diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000000000000000000000000000000000000..b7b74e05dd1c369e7b675a4b86b26230b2e970c4 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,19 @@ +name: release-please + +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: simple + version-file: version.txt \ No newline at end of file diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000000000000000000000000000000000000..15a70fe3a7de2cbec1b7183983f1c1bd1ab57bcf --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,30 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '42 5 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v8 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 15 + stale-issue-message: 'Stale issue' + stale-pr-message: 'Stale pull request' + stale-issue-label: 'stale' + stale-pr-label: 'stale' + exempt-issue-labels: 'autorelease: pending' + exempt-pr-labels: 'autorelease: pending' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000000000000000000000000000000000000..6a450cbeda1ef11d8b9c3bcc1f4474e0e0735988 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,67 @@ +name: tests + +on: + push: + branches: + - main + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref || github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + +jobs: + setup: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: ./.github/workflows/actions/install_dependencies + + checks: + needs: setup + runs-on: ubuntu-latest + name: ${{ matrix.quality-command }} + strategy: + matrix: + quality-command: + - black + - ruff + - mypy + steps: + - uses: actions/checkout@v3 + - uses: ./.github/workflows/actions/install_dependencies + - name: run ${{ matrix.quality-command }} + run: make ${{ matrix.quality-command }} + + test: + needs: setup + runs-on: ubuntu-latest + name: test + steps: + - uses: actions/checkout@v3 + - uses: ./.github/workflows/actions/install_dependencies + - name: run test + run: make test-coverage + # Run even if make test fails for coverage reports + # TODO: select a better xml results displayer + - name: Archive test results coverage results + uses: actions/upload-artifact@v3 + if: always() + with: + name: test_results + path: tests-results.xml + - name: Archive code coverage results + uses: actions/upload-artifact@v3 + if: always() + with: + name: code-coverage-report + path: htmlcov/ + + all_checks_passed: + # Used to easily force requirements checks in GitHub + needs: + - checks + - test + runs-on: ubuntu-latest + steps: + - run: echo "All checks passed" diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/docs/description.md b/docs/description.md new file mode 100644 index 0000000000000000000000000000000000000000..024bf7beca658665a6bbb0072bc15316d93668e1 --- /dev/null +++ b/docs/description.md @@ -0,0 +1,474 @@ +## Introduction + +PrivateGPT provides an **API** containing all the building blocks required to build +**private, context-aware AI applications**. The API follows and extends OpenAI API standard, and supports +both normal and streaming responses. + +The API is divided in two logical blocks: + +- High-level API, abstracting all the complexity of a RAG (Retrieval Augmented Generation) pipeline implementation: + - Ingestion of documents: internally managing document parsing, splitting, metadata extraction, + embedding generation and storage. + - Chat & Completions using context from ingested documents: abstracting the retrieval of context, the prompt + engineering and the response generation. +- Low-level API, allowing advanced users to implement their own complex pipelines: + - Embeddings generation: based on a piece of text. + - Contextual chunks retrieval: given a query, returns the most relevant chunks of text from the ingested + documents. + +> A working **Gradio UI client** is provided to test the API, together with a set of +> useful tools such as bulk model download script, ingestion script, documents folder +> watch, etc. + +## Quick Local Installation steps + +The steps in `Installation and Settings` section are better explained and cover more +setup scenarios. But if you are looking for a quick setup guide, here it is: + +``` +# Clone the repo +git clone https://github.com/imartinez/privateGPT +cd privateGPT + +# Install Python 3.11 +pyenv install 3.11 +pyenv local 3.11 + +# Install dependencies +poetry install --with ui,local + +# Download Embedding and LLM models +poetry run python scripts/setup + +# (Optional) For Mac with Metal GPU, enable it. Check Installation and Settings section +to know how to enable GPU on other platforms +CMAKE_ARGS="-DLLAMA_METAL=on" pip install --force-reinstall --no-cache-dir llama-cpp-python + +# Run the local server +PGPT_PROFILES=local make run + +# Note: on Mac with Metal you should see a ggml_metal_add_buffer log, stating GPU is +being used + +# Navigate to the UI and try it out! +http://localhost:8001/ +``` + +## Installation and Settings + +### Base requirements to run PrivateGPT + +* Git clone PrivateGPT repository, and navigate to it: + +``` + git clone https://github.com/imartinez/privateGPT + cd privateGPT +``` + +* Install Python 3.11. Ideally through a python version manager like `pyenv`. + Python 3.12 + should work too. Earlier python versions are not supported. + * osx/linux: [pyenv](https://github.com/pyenv/pyenv) + * windows: [pyenv-win](https://github.com/pyenv-win/pyenv-win) + +``` +pyenv install 3.11 +pyenv local 3.11 +``` + +* Install [Poetry](https://python-poetry.org/docs/#installing-with-the-official-installer) for dependency management: + +* Have a valid C++ compiler like gcc. See [Troubleshooting: C++ Compiler](#troubleshooting-c-compiler) for more details. + +* Install `make` for scripts: + * osx: (Using homebrew): `brew install make` + * windows: (Using chocolatey) `choco install make` + +### Install dependencies + +Install the dependencies: + +```bash +poetry install --with ui +``` + +Verify everything is working by running `make run` (or `poetry run python -m private_gpt`) and navigate to +http://localhost:8001. You should see a [Gradio UI](https://gradio.app/) **configured with a mock LLM** that will +echo back the input. Later we'll see how to configure a real LLM. + +### Settings + +> Note: the default settings of PrivateGPT work out-of-the-box for a 100% local setup. Skip this section if you just +> want to test PrivateGPT locally, and come back later to learn about more configuration options. + +PrivateGPT is configured through *profiles* that are defined using yaml files, and selected through env variables. +The full list of properties configurable can be found in `settings.yaml` + +#### env var `PGPT_SETTINGS_FOLDER` + +The location of the settings folder. Defaults to the root of the project. +Should contain the default `settings.yaml` and any other `settings-{profile}.yaml`. + +#### env var `PGPT_PROFILES` + +By default, the profile definition in `settings.yaml` is loaded. +Using this env var you can load additional profiles; format is a comma separated list of profile names. +This will merge `settings-{profile}.yaml` on top of the base settings file. + +For example: +`PGPT_PROFILES=local,cuda` will load `settings-local.yaml` +and `settings-cuda.yaml`, their contents will be merged with +later profiles properties overriding values of earlier ones like `settings.yaml`. + +During testing, the `test` profile will be active along with the default, therefore `settings-test.yaml` +file is required. + +#### Environment variables expansion + +Configuration files can contain environment variables, +they will be expanded at runtime. + +Expansion must follow the pattern `${VARIABLE_NAME:default_value}`. + +For example, the following configuration will use the value of the `PORT` +environment variable or `8001` if it's not set. +Missing variables with no default will produce an error. + +```yaml +server: + port: ${PORT:8001} +``` + +### Local LLM requirements + +Install extra dependencies for local execution: + +```bash +poetry install --with local +``` + +For PrivateGPT to run fully locally GPU acceleration is required +(CPU execution is possible, but very slow), however, +typical Macbook laptops or window desktops with mid-range GPUs lack VRAM to run +even the smallest LLMs. For that reason +**local execution is only supported for models compatible with [llama.cpp](https://github.com/ggerganov/llama.cpp)** + +These two models are known to work well: + +* https://huggingface.co/TheBloke/Llama-2-7B-chat-GGUF +* https://huggingface.co/TheBloke/Mistral-7B-Instruct-v0.1-GGUF (recommended) + +To ease the installation process, use the `setup` script that will download both +the embedding and the LLM model and place them in the correct location (under `models` folder): + +```bash +poetry run python scripts/setup +``` + +If you are ok with CPU execution, you can skip the rest of this section. + +As stated before, llama.cpp is required and in +particular [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) +is used. + +> It's highly encouraged that you fully read llama-cpp and llama-cpp-python documentation relevant to your platform. +> Running into installation issues is very likely, and you'll need to troubleshoot them yourself. + +#### Customizing low level parameters + +Currently not all the parameters of llama-cpp and llama-cpp-python are available at PrivateGPT's `settings.yaml` file. In case you need to customize parameters such as the number of layers loaded into the GPU, you might change these at the `llm_component.py` file under the `private_gpt/components/llm/llm_component.py`. If you are getting an out of memory error, you might also try a smaller model or stick to the proposed recommended models, instead of custom tuning the parameters. + +#### OSX GPU support + +You will need to build [llama.cpp](https://github.com/ggerganov/llama.cpp) with +metal support. To do that run: + +```bash +CMAKE_ARGS="-DLLAMA_METAL=on" pip install --force-reinstall --no-cache-dir llama-cpp-python +``` + +#### Windows NVIDIA GPU support + +Windows GPU support is done through CUDA. +Follow the instructions on the original [llama.cpp](https://github.com/ggerganov/llama.cpp) repo to install the required +dependencies. + +Some tips to get it working with an NVIDIA card and CUDA (Tested on Windows 10 with CUDA 11.5 RTX 3070): + +* Install latest VS2022 (and build tools) https://visualstudio.microsoft.com/vs/community/ +* Install CUDA toolkit https://developer.nvidia.com/cuda-downloads +* Verify your installation is correct by running `nvcc --version` and `nvidia-smi`, ensure your CUDA version is up to + date and your GPU is detected. +* [Optional] Install CMake to troubleshoot building issues by compiling llama.cpp directly https://cmake.org/download/ + +If you have all required dependencies properly configured running the +following powershell command should succeed. + +```powershell +$env:CMAKE_ARGS='-DLLAMA_CUBLAS=on'; poetry run pip install --force-reinstall --no-cache-dir llama-cpp-python +``` + +If your installation was correct, you should see a message similar to the following next +time you start the server `BLAS = 1`. + +``` +llama_new_context_with_model: total VRAM used: 4857.93 MB (model: 4095.05 MB, context: 762.87 MB) +AVX = 1 | AVX2 = 1 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 1 | SSSE3 = 0 | VSX = 0 | +``` + +Note that llama.cpp offloads matrix calculations to the GPU but the performance is +still hit heavily due to latency between CPU and GPU communication. You might need to tweak +batch sizes and other parameters to get the best performance for your particular system. + +#### Linux NVIDIA GPU support and Windows-WSL + +Linux GPU support is done through CUDA. +Follow the instructions on the original [llama.cpp](https://github.com/ggerganov/llama.cpp) repo to install the required +external +dependencies. + +Some tips: + +* Make sure you have an up-to-date C++ compiler +* Install CUDA toolkit https://developer.nvidia.com/cuda-downloads +* Verify your installation is correct by running `nvcc --version` and `nvidia-smi`, ensure your CUDA version is up to + date and your GPU is detected. + +After that running the following command in the repository will install llama.cpp with GPU support: + +` +CMAKE_ARGS='-DLLAMA_CUBLAS=on' poetry run pip install --force-reinstall --no-cache-dir llama-cpp-python +` + +If your installation was correct, you should see a message similar to the following next +time you start the server `BLAS = 1`. + +``` +llama_new_context_with_model: total VRAM used: 4857.93 MB (model: 4095.05 MB, context: 762.87 MB) +AVX = 1 | AVX2 = 1 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 1 | SSSE3 = 0 | VSX = 0 | +``` + +#### Vectorstores +PrivateGPT supports [Chroma](https://www.trychroma.com/), [Qdrant](https://qdrant.tech/) as vectorstore providers. Chroma being the default. + +To enable Qdrant, set the `vectorstore.database` property in the `settings.yaml` file to `qdrant` and install the `qdrant` extra. + +```bash +poetry install --extras qdrant +``` + +By default Qdrant tries to connect to an instance at `http://localhost:3000`. + +Qdrant settings can be configured by setting values to the `qdrant` property in the `settings.yaml` file. + +The available configuration options are: +| Field | Description | +|--------------|-------------| +| location | If `:memory:` - use in-memory Qdrant instance.
If `str` - use it as a `url` parameter.| +| url | Either host or str of 'Optional[scheme], host, Optional[port], Optional[prefix]'.
Eg. `http://localhost:6333` | +| port | Port of the REST API interface. Default: `6333` | +| grpc_port | Port of the gRPC interface. Default: `6334` | +| prefer_grpc | If `true` - use gRPC interface whenever possible in custom methods. | +| https | If `true` - use HTTPS(SSL) protocol.| +| api_key | API key for authentication in Qdrant Cloud.| +| prefix | If set, add `prefix` to the REST URL path.
Example: `service/v1` will result in `http://localhost:6333/service/v1/{qdrant-endpoint}` for REST API.| +| timeout | Timeout for REST and gRPC API requests.
Default: 5.0 seconds for REST and unlimited for gRPC | +| host | Host name of Qdrant service. If url and host are not set, defaults to 'localhost'.| +| path | Persistence path for QdrantLocal. Eg. `local_data/private_gpt/qdrant`| +| force_disable_check_same_thread | Force disable check_same_thread for QdrantLocal sqlite connection.| + +#### Known issues and Troubleshooting + +Execution of LLMs locally still has a lot of sharp edges, specially when running on non Linux platforms. +You might encounter several issues: + +* Performance: RAM or VRAM usage is very high, your computer might experience slowdowns or even crashes. +* GPU Virtualization on Windows and OSX: Simply not possible with docker desktop, you have to run the server directly on + the host. +* Building errors: Some of PrivateGPT dependencies need to build native code, and they might fail on some platforms. + Most likely you are missing some dev tools in your machine (updated C++ compiler, CUDA is not on PATH, etc.). + If you encounter any of these issues, please open an issue and we'll try to help. + +#### Troubleshooting: C++ Compiler + +If you encounter an error while building a wheel during the `pip install` process, you may need to install a C++ +compiler on your computer. + +**For Windows 10/11** + +To install a C++ compiler on Windows 10/11, follow these steps: + +1. Install Visual Studio 2022. +2. Make sure the following components are selected: + * Universal Windows Platform development + * C++ CMake tools for Windows +3. Download the MinGW installer from the [MinGW website](https://sourceforge.net/projects/mingw/). +4. Run the installer and select the `gcc` component. + +** For OSX ** + +1. Check if you have a C++ compiler installed, Xcode might have done it for you. for example running `gcc`. +2. If not, you can install clang or gcc with homebrew `brew install gcc` + +#### Troubleshooting: Mac Running Intel + +When running a Mac with Intel hardware (not M1), you may run into _clang: error: the clang compiler does not support ' +-march=native'_ during pip install. + +If so set your archflags during pip install. eg: _ARCHFLAGS="-arch x86_64" pip3 install -r requirements.txt_ + +## Running the Server + +After following the installation steps you should be ready to go. Here are some common run setups: + +### Running 100% locally + +Make sure you have followed the *Local LLM requirements* section before moving on. + +This command will start PrivateGPT using the `settings.yaml` (default profile) together with the `settings-local.yaml` +configuration files. By default, it will enable both the API and the Gradio UI. Run: + +``` +PGPT_PROFILES=local make run +``` + +or + +``` +PGPT_PROFILES=local poetry run python -m private_gpt +``` + +When the server is started it will print a log *Application startup complete*. +Navigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API +using Swagger UI. + +### Local server using OpenAI as LLM + +If you cannot run a local model (because you don't have a GPU, for example) or for testing purposes, you may +decide to run PrivateGPT using OpenAI as the LLM. + +In order to do so, create a profile `settings-openai.yaml` with the following contents: + +```yaml +llm: + mode: openai + +openai: + api_key: # You could skip this configuration and use the OPENAI_API_KEY env var instead +``` + +And run PrivateGPT loading that profile you just created: + +```PGPT_PROFILES=openai make run``` + +or + +```PGPT_PROFILES=openai poetry run python -m private_gpt``` + +> Note this will still use the local Embeddings model, as it is ok to use it on a CPU. +> We'll support using OpenAI embeddings in a future release. + +When the server is started it will print a log *Application startup complete*. +Navigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API. +You'll notice the speed and quality of response is higher, given you are using OpenAI's servers for the heavy +computations. + +### Use AWS's Sagemaker + +🚧 Under construction 🚧 + +## Gradio UI user manual + +Gradio UI is a ready to use way of testing most of PrivateGPT API functionalities. + +![Gradio PrivateGPT](https://lh3.googleusercontent.com/drive-viewer/AK7aPaD_Hc-A8A9ooMe-hPgm_eImgsbxAjb__8nFYj8b_WwzvL1Gy90oAnp1DfhPaN6yGiEHCOXs0r77W1bYHtPzlVwbV7fMsA=s1600) + +### Execution Modes + +It has 3 modes of execution (you can select in the top-left): + +* Query Docs: uses the context from the + ingested documents to answer the questions posted in the chat. It also takes + into account previous chat messages as context. + * Makes use of `/chat/completions` API with `use_context=true` and no + `context_filter`. +* Search in Docs: fast search that returns the 4 most related text + chunks, together with their source document and page. + * Makes use of `/chunks` API with no `context_filter`, `limit=4` and + `prev_next_chunks=0`. +* LLM Chat: simple, non-contextual chat with the LLM. The ingested documents won't + be taken into account, only the previous messages. + * Makes use of `/chat/completions` API with `use_context=false`. + +### Document Ingestion + +Ingest documents by using the `Upload a File` button. You can check the progress of +the ingestion in the console logs of the server. + +The list of ingested files is shown below the button. + +If you want to delete the ingested documents, refer to *Reset Local documents +database* section in the documentation. + +### Chat + +Normal chat interface, self-explanatory ;) + +You can check the actual prompt being passed to the LLM by looking at the logs of +the server. We'll add better observability in future releases. + +## Deployment options + +🚧 We are working on Dockerized deployment guidelines 🚧 + +## Observability + +Basic logs are enabled using LlamaIndex +basic logging (for example ingestion progress or LLM prompts and answers). + +🚧 We are working on improved Observability. 🚧 + +## Ingesting & Managing Documents + +🚧 Document Update and Delete are still WIP. 🚧 + +The ingestion of documents can be done in different ways: + +* Using the `/ingest` API +* Using the Gradio UI +* Using the Bulk Local Ingestion functionality (check next section) + +### Bulk Local Ingestion + +When you are running PrivateGPT in a fully local setup, you can ingest a complete folder for convenience (containing +pdf, text files, etc.) +and optionally watch changes on it with the command: + +```bash +make ingest /path/to/folder -- --watch +``` + +To log the processed and failed files to an additional file, use: + +```bash +make ingest /path/to/folder -- --watch --log-file /path/to/log/file.log +``` + +After ingestion is complete, you should be able to chat with your documents +by navigating to http://localhost:8001 and using the option `Query documents`, +or using the completions / chat API. + +### Reset Local documents database + +When running in a local setup, you can remove all ingested documents by simply +deleting all contents of `local_data` folder (except .gitignore). + +To simplify this process, you can use the command: +```bash +make wipe +``` + +## API + +As explained in the introduction, the API contains high level APIs (ingestion and chat/completions) and low level APIs +(embeddings and chunk retrieval). In this section the different specific API calls are explained. diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000000000000000000000000000000000000..5ed134d02ccef1bae39ece0064d9703192fcc2b0 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,22 @@ + + + + + PrivateGPT Docs + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/logo.png b/docs/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7164708a9ef1511d5f0c83baf28f120e3db274 Binary files /dev/null and b/docs/logo.png differ diff --git a/docs/openapi.json b/docs/openapi.json new file mode 100644 index 0000000000000000000000000000000000000000..306ba283b77668d1c4e2a90fec6f3b844dc981fb --- /dev/null +++ b/docs/openapi.json @@ -0,0 +1,989 @@ +{ + "openapi": "3.1.0", + "info": { + "title": "PrivateGPT", + "summary": "PrivateGPT is a production-ready AI project that allows you to ask questions to your documents using the power of Large Language Models (LLMs), even in scenarios without Internet connection. 100% private, no data leaves your execution environment at any point.", + "description": "## Introduction\n\nPrivateGPT provides an **API** containing all the building blocks required to build\n**private, context-aware AI applications**. The API follows and extends OpenAI API standard, and supports\nboth normal and streaming responses.\n\nThe API is divided in two logical blocks:\n\n- High-level API, abstracting all the complexity of a RAG (Retrieval Augmented Generation) pipeline implementation:\n - Ingestion of documents: internally managing document parsing, splitting, metadata extraction,\n embedding generation and storage.\n - Chat & Completions using context from ingested documents: abstracting the retrieval of context, the prompt\n engineering and the response generation.\n- Low-level API, allowing advanced users to implement their own complex pipelines:\n - Embeddings generation: based on a piece of text.\n - Contextual chunks retrieval: given a query, returns the most relevant chunks of text from the ingested\n documents.\n\n> A working **Gradio UI client** is provided to test the API, together with a set of\n> useful tools such as bulk model download script, ingestion script, documents folder\n> watch, etc.\n\n## Quick Local Installation steps\n\nThe steps in `Installation and Settings` section are better explained and cover more\nsetup scenarios. But if you are looking for a quick setup guide, here it is:\n\n```\n# Clone the repo\ngit clone https://github.com/imartinez/privateGPT\ncd privateGPT\n\n# Install Python 3.11\npyenv install 3.11\npyenv local 3.11\n\n# Install dependencies\npoetry install --with ui,local\n\n# Download Embedding and LLM models\npoetry run python scripts/setup\n\n# (Optional) For Mac with Metal GPU, enable it. Check Installation and Settings section \nto know how to enable GPU on other platforms\nCMAKE_ARGS=\"-DLLAMA_METAL=on\" pip install --force-reinstall --no-cache-dir llama-cpp-python\n\n# Run the local server \nPGPT_PROFILES=local make run\n\n# Note: on Mac with Metal you should see a ggml_metal_add_buffer log, stating GPU is \nbeing used\n\n# Navigate to the UI and try it out! \nhttp://localhost:8001/\n```\n\n## Installation and Settings\n\n### Base requirements to run PrivateGPT\n\n* Git clone PrivateGPT repository, and navigate to it:\n\n```\n git clone https://github.com/imartinez/privateGPT\n cd privateGPT\n```\n\n* Install Python 3.11. Ideally through a python version manager like `pyenv`.\n Python 3.12\n should work too. Earlier python versions are not supported.\n * osx/linux: [pyenv](https://github.com/pyenv/pyenv)\n * windows: [pyenv-win](https://github.com/pyenv-win/pyenv-win)\n\n``` \npyenv install 3.11\npyenv local 3.11\n```\n\n* Install [Poetry](https://python-poetry.org/docs/#installing-with-the-official-installer) for dependency management:\n\n* Have a valid C++ compiler like gcc. See [Troubleshooting: C++ Compiler](#troubleshooting-c-compiler) for more details.\n\n* Install `make` for scripts:\n * osx: (Using homebrew): `brew install make`\n * windows: (Using chocolatey) `choco install make`\n\n### Install dependencies\n\nInstall the dependencies:\n\n```bash\npoetry install --with ui\n```\n\nVerify everything is working by running `make run` (or `poetry run python -m private_gpt`) and navigate to\nhttp://localhost:8001. You should see a [Gradio UI](https://gradio.app/) **configured with a mock LLM** that will\necho back the input. Later we'll see how to configure a real LLM.\n\n### Settings\n\n> Note: the default settings of PrivateGPT work out-of-the-box for a 100% local setup. Skip this section if you just\n> want to test PrivateGPT locally, and come back later to learn about more configuration options.\n\nPrivateGPT is configured through *profiles* that are defined using yaml files, and selected through env variables.\nThe full list of properties configurable can be found in `settings.yaml`\n\n#### env var `PGPT_SETTINGS_FOLDER`\n\nThe location of the settings folder. Defaults to the root of the project.\nShould contain the default `settings.yaml` and any other `settings-{profile}.yaml`.\n\n#### env var `PGPT_PROFILES`\n\nBy default, the profile definition in `settings.yaml` is loaded.\nUsing this env var you can load additional profiles; format is a comma separated list of profile names.\nThis will merge `settings-{profile}.yaml` on top of the base settings file.\n\nFor example:\n`PGPT_PROFILES=local,cuda` will load `settings-local.yaml`\nand `settings-cuda.yaml`, their contents will be merged with\nlater profiles properties overriding values of earlier ones like `settings.yaml`.\n\nDuring testing, the `test` profile will be active along with the default, therefore `settings-test.yaml`\nfile is required.\n\n#### Environment variables expansion\n\nConfiguration files can contain environment variables,\nthey will be expanded at runtime.\n\nExpansion must follow the pattern `${VARIABLE_NAME:default_value}`.\n\nFor example, the following configuration will use the value of the `PORT`\nenvironment variable or `8001` if it's not set.\nMissing variables with no default will produce an error.\n\n```yaml\nserver:\n port: ${PORT:8001}\n```\n\n### Local LLM requirements\n\nInstall extra dependencies for local execution:\n\n```bash\npoetry install --with local\n```\n\nFor PrivateGPT to run fully locally GPU acceleration is required\n(CPU execution is possible, but very slow), however,\ntypical Macbook laptops or window desktops with mid-range GPUs lack VRAM to run\neven the smallest LLMs. For that reason\n**local execution is only supported for models compatible with [llama.cpp](https://github.com/ggerganov/llama.cpp)**\n\nThese two models are known to work well:\n\n* https://huggingface.co/TheBloke/Llama-2-7B-chat-GGUF\n* https://huggingface.co/TheBloke/Mistral-7B-Instruct-v0.1-GGUF (recommended)\n\nTo ease the installation process, use the `setup` script that will download both\nthe embedding and the LLM model and place them in the correct location (under `models` folder):\n\n```bash\npoetry run python scripts/setup\n```\n\nIf you are ok with CPU execution, you can skip the rest of this section.\n\nAs stated before, llama.cpp is required and in\nparticular [llama-cpp-python](https://github.com/abetlen/llama-cpp-python)\nis used.\n\n> It's highly encouraged that you fully read llama-cpp and llama-cpp-python documentation relevant to your platform.\n> Running into installation issues is very likely, and you'll need to troubleshoot them yourself.\n\n#### Customizing low level parameters\n\nCurrently not all the parameters of llama-cpp and llama-cpp-python are available at PrivateGPT's `settings.yaml` file. In case you need to customize parameters such as the number of layers loaded into the GPU, you might change these at the `llm_component.py` file under the `private_gpt/components/llm/llm_component.py`. If you are getting an out of memory error, you might also try a smaller model or stick to the proposed recommended models, instead of custom tuning the parameters.\n\n#### OSX GPU support\n\nYou will need to build [llama.cpp](https://github.com/ggerganov/llama.cpp) with\nmetal support. To do that run:\n\n```bash\nCMAKE_ARGS=\"-DLLAMA_METAL=on\" pip install --force-reinstall --no-cache-dir llama-cpp-python\n```\n\n#### Windows NVIDIA GPU support\n\nWindows GPU support is done through CUDA.\nFollow the instructions on the original [llama.cpp](https://github.com/ggerganov/llama.cpp) repo to install the required\ndependencies.\n\nSome tips to get it working with an NVIDIA card and CUDA (Tested on Windows 10 with CUDA 11.5 RTX 3070):\n\n* Install latest VS2022 (and build tools) https://visualstudio.microsoft.com/vs/community/\n* Install CUDA toolkit https://developer.nvidia.com/cuda-downloads\n* Verify your installation is correct by running `nvcc --version` and `nvidia-smi`, ensure your CUDA version is up to\n date and your GPU is detected.\n* [Optional] Install CMake to troubleshoot building issues by compiling llama.cpp directly https://cmake.org/download/\n\nIf you have all required dependencies properly configured running the\nfollowing powershell command should succeed.\n\n```powershell\n$env:CMAKE_ARGS='-DLLAMA_CUBLAS=on'; poetry run pip install --force-reinstall --no-cache-dir llama-cpp-python\n```\n\nIf your installation was correct, you should see a message similar to the following next\ntime you start the server `BLAS = 1`.\n\n```\nllama_new_context_with_model: total VRAM used: 4857.93 MB (model: 4095.05 MB, context: 762.87 MB)\nAVX = 1 | AVX2 = 1 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 1 | SSSE3 = 0 | VSX = 0 | \n```\n\nNote that llama.cpp offloads matrix calculations to the GPU but the performance is\nstill hit heavily due to latency between CPU and GPU communication. You might need to tweak\nbatch sizes and other parameters to get the best performance for your particular system.\n\n#### Linux NVIDIA GPU support and Windows-WSL\n\nLinux GPU support is done through CUDA.\nFollow the instructions on the original [llama.cpp](https://github.com/ggerganov/llama.cpp) repo to install the required\nexternal\ndependencies.\n\nSome tips:\n\n* Make sure you have an up-to-date C++ compiler\n* Install CUDA toolkit https://developer.nvidia.com/cuda-downloads\n* Verify your installation is correct by running `nvcc --version` and `nvidia-smi`, ensure your CUDA version is up to\n date and your GPU is detected.\n\nAfter that running the following command in the repository will install llama.cpp with GPU support:\n\n`\nCMAKE_ARGS='-DLLAMA_CUBLAS=on' poetry run pip install --force-reinstall --no-cache-dir llama-cpp-python\n`\n\nIf your installation was correct, you should see a message similar to the following next\ntime you start the server `BLAS = 1`.\n\n```\nllama_new_context_with_model: total VRAM used: 4857.93 MB (model: 4095.05 MB, context: 762.87 MB)\nAVX = 1 | AVX2 = 1 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 1 | SSSE3 = 0 | VSX = 0 | \n```\n\n#### Vectorstores\nPrivateGPT supports [Chroma](https://www.trychroma.com/), [Qdrant](https://qdrant.tech/) as vectorstore providers. Chroma being the default.\n\nTo enable Qdrant, set the `vectorstore.database` property in the `settings.yaml` file to `qdrant` and install the `qdrant` extra.\n\n```bash\npoetry install --extras qdrant\n```\n\nBy default Qdrant tries to connect to an instance at `http://localhost:3000`.\n\nQdrant settings can be configured by setting values to the `qdrant` propery in the `settings.yaml` file.\n\nThe available configuration options are:\n| Field | Description |\n|--------------|-------------|\n| location | If `:memory:` - use in-memory Qdrant instance.
If `str` - use it as a `url` parameter.|\n| url | Either host or str of 'Optional[scheme], host, Optional[port], Optional[prefix]'.
Eg. `http://localhost:6333` |\n| port | Port of the REST API interface. Default: `6333` |\n| grpc_port | Port of the gRPC interface. Default: `6334` |\n| prefer_grpc | If `true` - use gRPC interface whenever possible in custom methods. |\n| https | If `true` - use HTTPS(SSL) protocol.|\n| api_key | API key for authentication in Qdrant Cloud.|\n| prefix | If set, add `prefix` to the REST URL path.
Example: `service/v1` will result in `http://localhost:6333/service/v1/{qdrant-endpoint}` for REST API.|\n| timeout | Timeout for REST and gRPC API requests.
Default: 5.0 seconds for REST and unlimited for gRPC |\n| host | Host name of Qdrant service. If url and host are not set, defaults to 'localhost'.|\n| path | Persistence path for QdrantLocal. Eg. `local_data/private_gpt/qdrant`|\n| force_disable_check_same_thread | Force disable check_same_thread for QdrantLocal sqlite connection.|\n\n#### Known issues and Troubleshooting\n\nExecution of LLMs locally still has a lot of sharp edges, specially when running on non Linux platforms.\nYou might encounter several issues:\n\n* Performance: RAM or VRAM usage is very high, your computer might experience slowdowns or even crashes.\n* GPU Virtualization on Windows and OSX: Simply not possible with docker desktop, you have to run the server directly on\n the host.\n* Building errors: Some of PrivateGPT dependencies need to build native code, and they might fail on some platforms.\n Most likely you are missing some dev tools in your machine (updated C++ compiler, CUDA is not on PATH, etc.).\n If you encounter any of these issues, please open an issue and we'll try to help.\n\n#### Troubleshooting: C++ Compiler\n\nIf you encounter an error while building a wheel during the `pip install` process, you may need to install a C++\ncompiler on your computer.\n\n**For Windows 10/11**\n\nTo install a C++ compiler on Windows 10/11, follow these steps:\n\n1. Install Visual Studio 2022.\n2. Make sure the following components are selected:\n * Universal Windows Platform development\n * C++ CMake tools for Windows\n3. Download the MinGW installer from the [MinGW website](https://sourceforge.net/projects/mingw/).\n4. Run the installer and select the `gcc` component.\n\n** For OSX **\n\n1. Check if you have a C++ compiler installed, Xcode might have done it for you. for example running `gcc`.\n2. If not, you can install clang or gcc with homebrew `brew install gcc`\n\n#### Troubleshooting: Mac Running Intel\n\nWhen running a Mac with Intel hardware (not M1), you may run into _clang: error: the clang compiler does not support '\n-march=native'_ during pip install.\n\nIf so set your archflags during pip install. eg: _ARCHFLAGS=\"-arch x86_64\" pip3 install -r requirements.txt_\n\n## Running the Server\n\nAfter following the installation steps you should be ready to go. Here are some common run setups:\n\n### Running 100% locally\n\nMake sure you have followed the *Local LLM requirements* section before moving on.\n\nThis command will start PrivateGPT using the `settings.yaml` (default profile) together with the `settings-local.yaml`\nconfiguration files. By default, it will enable both the API and the Gradio UI. Run:\n\n```\nPGPT_PROFILES=local make run\n``` \n\nor\n\n```\nPGPT_PROFILES=local poetry run python -m private_gpt\n```\n\nWhen the server is started it will print a log *Application startup complete*.\nNavigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API\nusing Swagger UI.\n\n### Local server using OpenAI as LLM\n\nIf you cannot run a local model (because you don't have a GPU, for example) or for testing purposes, you may\ndecide to run PrivateGPT using OpenAI as the LLM.\n\nIn order to do so, create a profile `settings-openai.yaml` with the following contents:\n\n```yaml\nllm:\n mode: openai\n\nopenai:\n api_key: # You could skip this configuration and use the OPENAI_API_KEY env var instead\n```\n\nAnd run PrivateGPT loading that profile you just created:\n\n```PGPT_PROFILES=openai make run```\n\nor\n\n```PGPT_PROFILES=openai poetry run python -m private_gpt```\n\n> Note this will still use the local Embeddings model, as it is ok to use it on a CPU.\n> We'll support using OpenAI embeddings in a future release.\n\nWhen the server is started it will print a log *Application startup complete*.\nNavigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API.\nYou'll notice the speed and quality of response is higher, given you are using OpenAI's servers for the heavy\ncomputations.\n\n### Use AWS's Sagemaker\n\n\ud83d\udea7 Under construction \ud83d\udea7\n\n## Gradio UI user manual\n\nGradio UI is a ready to use way of testing most of PrivateGPT API functionalities.\n\n![Gradio PrivateGPT](https://lh3.googleusercontent.com/drive-viewer/AK7aPaD_Hc-A8A9ooMe-hPgm_eImgsbxAjb__8nFYj8b_WwzvL1Gy90oAnp1DfhPaN6yGiEHCOXs0r77W1bYHtPzlVwbV7fMsA=s1600)\n\n### Execution Modes\n\nIt has 3 modes of execution (you can select in the top-left):\n\n* Query Docs: uses the context from the\n ingested documents to answer the questions posted in the chat. It also takes\n into account previous chat messages as context.\n * Makes use of `/chat/completions` API with `use_context=true` and no\n `context_filter`.\n* Search in Docs: fast search that returns the 4 most related text\n chunks, together with their source document and page.\n * Makes use of `/chunks` API with no `context_filter`, `limit=4` and\n `prev_next_chunks=0`.\n* LLM Chat: simple, non-contextual chat with the LLM. The ingested documents won't\n be taken into account, only the previous messages.\n * Makes use of `/chat/completions` API with `use_context=false`.\n\n### Document Ingestion\n\nIngest documents by using the `Upload a File` button. You can check the progress of\nthe ingestion in the console logs of the server.\n\nThe list of ingested files is shown below the button.\n\nIf you want to delete the ingested documents, refer to *Reset Local documents\ndatabase* section in the documentation.\n\n### Chat\n\nNormal chat interface, self-explanatory ;)\n\nYou can check the actual prompt being passed to the LLM by looking at the logs of\nthe server. We'll add better observability in future releases.\n\n## Deployment options\n\n\ud83d\udea7 We are working on Dockerized deployment guidelines \ud83d\udea7\n\n## Observability\n\nBasic logs are enabled using LlamaIndex\nbasic logging (for example ingestion progress or LLM prompts and answers).\n\n\ud83d\udea7 We are working on improved Observability. \ud83d\udea7\n\n## Ingesting & Managing Documents\n\n\ud83d\udea7 Document Update and Delete are still WIP. \ud83d\udea7\n\nThe ingestion of documents can be done in different ways:\n\n* Using the `/ingest` API\n* Using the Gradio UI\n* Using the Bulk Local Ingestion functionality (check next section)\n\n### Bulk Local Ingestion\n\nWhen you are running PrivateGPT in a fully local setup, you can ingest a complete folder for convenience (containing\npdf, text files, etc.)\nand optionally watch changes on it with the command:\n\n```bash\nmake ingest /path/to/folder -- --watch\n```\n\nTo log the processed and failed files to an additional file, use:\n\n```bash\nmake ingest /path/to/folder -- --watch --log-file /path/to/log/file.log\n```\n\nAfter ingestion is complete, you should be able to chat with your documents\nby navigating to http://localhost:8001 and using the option `Query documents`,\nor using the completions / chat API.\n\n### Reset Local documents database\n\nWhen running in a local setup, you can remove all ingested documents by simply\ndeleting all contents of `local_data` folder (except .gitignore).\n\n## API\n\nAs explained in the introduction, the API contains high level APIs (ingestion and chat/completions) and low level APIs\n(embeddings and chunk retrieval). In this section the different specific API calls are explained.\n", + "contact": { + "url": "https://github.com/imartinez/privateGPT" + }, + "license": { + "name": "Apache 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.html" + }, + "version": "0.1.0", + "x-logo": { + "url": "https://lh3.googleusercontent.com/drive-viewer/AK7aPaD_iNlMoTquOBsw4boh4tIYxyEuhz6EtEs8nzq3yNkNAK00xGjE1KUCmPJSk3TYOjcs6tReG6w_cLu1S7L_gPgT9z52iw=s2560" + } + }, + "paths": { + "/v1/completions": { + "post": { + "tags": [ + "Contextual Completions" + ], + "summary": "Completion", + "description": "We recommend most users use our Chat completions API.\n\nGiven a prompt, the model will return one predicted completion. If `use_context`\nis set to `true`, the model will use context coming from the ingested documents\nto create the response. The documents being used can be filtered using the\n`context_filter` and passing the document IDs to be used. Ingested documents IDs\ncan be found using `/ingest/list` endpoint. If you want all ingested documents to\nbe used, remove `context_filter` altogether.\n\nWhen using `'include_sources': true`, the API will return the source Chunks used\nto create the response, which come from the context provided.\n\nWhen using `'stream': true`, the API will return data chunks following [OpenAI's\nstreaming model](https://platform.openai.com/docs/api-reference/chat/streaming):\n```\n{\"id\":\"12345\",\"object\":\"completion.chunk\",\"created\":1694268190,\n\"model\":\"private-gpt\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"Hello\"},\n\"finish_reason\":null}]}\n```", + "operationId": "prompt_completion_v1_completions_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CompletionsBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OpenAICompletion" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/chat/completions": { + "post": { + "tags": [ + "Contextual Completions" + ], + "summary": "Chat Completion", + "description": "Given a list of messages comprising a conversation, return a response.\n\nIf `use_context` is set to `true`, the model will use context coming\nfrom the ingested documents to create the response. The documents being used can\nbe filtered using the `context_filter` and passing the document IDs to be used.\nIngested documents IDs can be found using `/ingest/list` endpoint. If you want\nall ingested documents to be used, remove `context_filter` altogether.\n\nWhen using `'include_sources': true`, the API will return the source Chunks used\nto create the response, which come from the context provided.\n\nWhen using `'stream': true`, the API will return data chunks following [OpenAI's\nstreaming model](https://platform.openai.com/docs/api-reference/chat/streaming):\n```\n{\"id\":\"12345\",\"object\":\"completion.chunk\",\"created\":1694268190,\n\"model\":\"private-gpt\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"Hello\"},\n\"finish_reason\":null}]}\n```", + "operationId": "chat_completion_v1_chat_completions_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OpenAICompletion" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/chunks": { + "post": { + "tags": [ + "Context Chunks" + ], + "summary": "Chunks Retrieval", + "description": "Given a `text`, returns the most relevant chunks from the ingested documents.\n\nThe returned information can be used to generate prompts that can be\npassed to `/completions` or `/chat/completions` APIs. Note: it is usually a very\nfast API, because only the Embeddings model is involved, not the LLM. The\nreturned information contains the relevant chunk `text` together with the source\n`document` it is coming from. It also contains a score that can be used to\ncompare different results.\n\nThe max number of chunks to be returned is set using the `limit` param.\n\nPrevious and next chunks (pieces of text that appear right before or after in the\ndocument) can be fetched by using the `prev_next_chunks` field.\n\nThe documents being used can be filtered using the `context_filter` and passing\nthe document IDs to be used. Ingested documents IDs can be found using\n`/ingest/list` endpoint. If you want all ingested documents to be used,\nremove `context_filter` altogether.", + "operationId": "chunks_retrieval_v1_chunks_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChunksBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChunksResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/ingest": { + "post": { + "tags": [ + "Ingestion" + ], + "summary": "Ingest", + "description": "Ingests and processes a file, storing its chunks to be used as context.\n\nThe context obtained from files is later used in\n`/chat/completions`, `/completions`, and `/chunks` APIs.\n\nMost common document\nformats are supported, but you may be prompted to install an extra dependency to\nmanage a specific file type.\n\nA file can generate different Documents (for example a PDF generates one Document\nper page). All Documents IDs are returned in the response, together with the\nextracted Metadata (which is later used to improve context retrieval). Those IDs\ncan be used to filter the context used to create responses in\n`/chat/completions`, `/completions`, and `/chunks` APIs.", + "operationId": "ingest_v1_ingest_post", + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/Body_ingest_v1_ingest_post" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/IngestResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/ingest/list": { + "get": { + "tags": [ + "Ingestion" + ], + "summary": "List Ingested", + "description": "Lists already ingested Documents including their Document ID and metadata.\n\nThose IDs can be used to filter the context used to create responses\nin `/chat/completions`, `/completions`, and `/chunks` APIs.", + "operationId": "list_ingested_v1_ingest_list_get", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/IngestResponse" + } + } + } + } + } + } + }, + "/v1/ingest/{doc_id}": { + "delete": { + "tags": [ + "Ingestion" + ], + "summary": "Delete Ingested", + "description": "Delete the specified ingested Document.\n\nThe `doc_id` can be obtained from the `GET /ingest/list` endpoint.\nThe document will be effectively deleted from your storage context.", + "operationId": "delete_ingested_v1_ingest__doc_id__delete", + "parameters": [ + { + "name": "doc_id", + "in": "path", + "required": true, + "schema": { + "type": "string", + "title": "Doc Id" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/embeddings": { + "post": { + "tags": [ + "Embeddings" + ], + "summary": "Embeddings Generation", + "description": "Get a vector representation of a given input.\n\nThat vector representation can be easily consumed\nby machine learning models and algorithms.", + "operationId": "embeddings_generation_v1_embeddings_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmbeddingsBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmbeddingsResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/health": { + "get": { + "tags": [ + "Health" + ], + "summary": "Health", + "description": "Return ok if the system is up.", + "operationId": "health_health_get", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HealthResponse" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_ingest_v1_ingest_post": { + "properties": { + "file": { + "type": "string", + "format": "binary", + "title": "File" + } + }, + "type": "object", + "required": [ + "file" + ], + "title": "Body_ingest_v1_ingest_post" + }, + "ChatBody": { + "properties": { + "messages": { + "items": { + "$ref": "#/components/schemas/OpenAIMessage" + }, + "type": "array", + "title": "Messages" + }, + "use_context": { + "type": "boolean", + "title": "Use Context", + "default": false + }, + "context_filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/ContextFilter" + }, + { + "type": "null" + } + ] + }, + "include_sources": { + "type": "boolean", + "title": "Include Sources", + "default": true + }, + "stream": { + "type": "boolean", + "title": "Stream", + "default": false + } + }, + "type": "object", + "required": [ + "messages" + ], + "title": "ChatBody", + "examples": [ + { + "context_filter": { + "docs_ids": [ + "c202d5e6-7b69-4869-81cc-dd574ee8ee11" + ] + }, + "include_sources": true, + "messages": [ + { + "content": "How do you fry an egg?", + "role": "user" + } + ], + "stream": false, + "use_context": true + } + ] + }, + "Chunk": { + "properties": { + "object": { + "const": "context.chunk", + "title": "Object" + }, + "score": { + "type": "number", + "title": "Score", + "examples": [ + 0.023 + ] + }, + "document": { + "$ref": "#/components/schemas/IngestedDoc" + }, + "text": { + "type": "string", + "title": "Text", + "examples": [ + "Outbound sales increased 20%, driven by new leads." + ] + }, + "previous_texts": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Previous Texts", + "examples": [ + [ + "SALES REPORT 2023", + "Inbound didn't show major changes." + ] + ] + }, + "next_texts": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Next Texts", + "examples": [ + [ + "New leads came from Google Ads campaign.", + "The campaign was run by the Marketing Department" + ] + ] + } + }, + "type": "object", + "required": [ + "object", + "score", + "document", + "text" + ], + "title": "Chunk" + }, + "ChunksBody": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "examples": [ + "Q3 2023 sales" + ] + }, + "context_filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/ContextFilter" + }, + { + "type": "null" + } + ] + }, + "limit": { + "type": "integer", + "title": "Limit", + "default": 10 + }, + "prev_next_chunks": { + "type": "integer", + "title": "Prev Next Chunks", + "default": 0, + "examples": [ + 2 + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "ChunksBody" + }, + "ChunksResponse": { + "properties": { + "object": { + "const": "list", + "title": "Object" + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "data": { + "items": { + "$ref": "#/components/schemas/Chunk" + }, + "type": "array", + "title": "Data" + } + }, + "type": "object", + "required": [ + "object", + "model", + "data" + ], + "title": "ChunksResponse" + }, + "CompletionsBody": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + }, + "use_context": { + "type": "boolean", + "title": "Use Context", + "default": false + }, + "context_filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/ContextFilter" + }, + { + "type": "null" + } + ] + }, + "include_sources": { + "type": "boolean", + "title": "Include Sources", + "default": true + }, + "stream": { + "type": "boolean", + "title": "Stream", + "default": false + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "CompletionsBody", + "examples": [ + { + "include_sources": false, + "prompt": "How do you fry an egg?", + "stream": false, + "use_context": false + } + ] + }, + "ContextFilter": { + "properties": { + "docs_ids": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Docs Ids", + "examples": [ + [ + "c202d5e6-7b69-4869-81cc-dd574ee8ee11" + ] + ] + } + }, + "type": "object", + "required": [ + "docs_ids" + ], + "title": "ContextFilter" + }, + "Embedding": { + "properties": { + "index": { + "type": "integer", + "title": "Index" + }, + "object": { + "const": "embedding", + "title": "Object" + }, + "embedding": { + "items": { + "type": "number" + }, + "type": "array", + "title": "Embedding", + "examples": [ + [ + 0.0023064255, + -0.009327292 + ] + ] + } + }, + "type": "object", + "required": [ + "index", + "object", + "embedding" + ], + "title": "Embedding" + }, + "EmbeddingsBody": { + "properties": { + "input": { + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "title": "Input" + } + }, + "type": "object", + "required": [ + "input" + ], + "title": "EmbeddingsBody" + }, + "EmbeddingsResponse": { + "properties": { + "object": { + "const": "list", + "title": "Object" + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "data": { + "items": { + "$ref": "#/components/schemas/Embedding" + }, + "type": "array", + "title": "Data" + } + }, + "type": "object", + "required": [ + "object", + "model", + "data" + ], + "title": "EmbeddingsResponse" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HealthResponse": { + "properties": { + "status": { + "const": "ok", + "title": "Status", + "default": "ok" + } + }, + "type": "object", + "title": "HealthResponse" + }, + "IngestResponse": { + "properties": { + "object": { + "const": "list", + "title": "Object" + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "data": { + "items": { + "$ref": "#/components/schemas/IngestedDoc" + }, + "type": "array", + "title": "Data" + } + }, + "type": "object", + "required": [ + "object", + "model", + "data" + ], + "title": "IngestResponse" + }, + "IngestedDoc": { + "properties": { + "object": { + "const": "ingest.document", + "title": "Object" + }, + "doc_id": { + "type": "string", + "title": "Doc Id", + "examples": [ + "c202d5e6-7b69-4869-81cc-dd574ee8ee11" + ] + }, + "doc_metadata": { + "anyOf": [ + { + "type": "object" + }, + { + "type": "null" + } + ], + "title": "Doc Metadata", + "examples": [ + { + "file_name": "Sales Report Q3 2023.pdf", + "page_label": "2" + } + ] + } + }, + "type": "object", + "required": [ + "object", + "doc_id", + "doc_metadata" + ], + "title": "IngestedDoc" + }, + "OpenAIChoice": { + "properties": { + "finish_reason": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Finish Reason", + "examples": [ + "stop" + ] + }, + "delta": { + "anyOf": [ + { + "$ref": "#/components/schemas/OpenAIDelta" + }, + { + "type": "null" + } + ] + }, + "message": { + "anyOf": [ + { + "$ref": "#/components/schemas/OpenAIMessage" + }, + { + "type": "null" + } + ] + }, + "sources": { + "anyOf": [ + { + "items": { + "$ref": "#/components/schemas/Chunk" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Sources" + }, + "index": { + "type": "integer", + "title": "Index", + "default": 0 + } + }, + "type": "object", + "required": [ + "finish_reason" + ], + "title": "OpenAIChoice", + "description": "Response from AI.\n\nEither the delta or the message will be present, but never both.\nSources used will be returned in case context retrieval was enabled." + }, + "OpenAICompletion": { + "properties": { + "id": { + "type": "string", + "title": "Id" + }, + "object": { + "type": "string", + "enum": [ + "completion", + "completion.chunk" + ], + "title": "Object", + "default": "completion" + }, + "created": { + "type": "integer", + "title": "Created", + "examples": [ + 1623340000 + ] + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "choices": { + "items": { + "$ref": "#/components/schemas/OpenAIChoice" + }, + "type": "array", + "title": "Choices" + } + }, + "type": "object", + "required": [ + "id", + "created", + "model", + "choices" + ], + "title": "OpenAICompletion", + "description": "Clone of OpenAI Completion model.\n\nFor more information see: https://platform.openai.com/docs/api-reference/chat/object" + }, + "OpenAIDelta": { + "properties": { + "content": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Content" + } + }, + "type": "object", + "required": [ + "content" + ], + "title": "OpenAIDelta", + "description": "A piece of completion that needs to be concatenated to get the full message." + }, + "OpenAIMessage": { + "properties": { + "role": { + "type": "string", + "enum": [ + "assistant", + "system", + "user" + ], + "title": "Role", + "default": "user" + }, + "content": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Content" + } + }, + "type": "object", + "required": [ + "content" + ], + "title": "OpenAIMessage", + "description": "Inference result, with the source of the message.\n\nRole could be the assistant or system\n(providing a default response, not AI generated)." + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + } + } + }, + "tags": [ + { + "name": "Ingestion", + "description": "High-level APIs covering document ingestion -internally managing document parsing, splitting,metadata extraction, embedding generation and storage- and ingested documents CRUD.Each ingested document is identified by an ID that can be used to filter the contextused in *Contextual Completions* and *Context Chunks* APIs." + }, + { + "name": "Contextual Completions", + "description": "High-level APIs covering contextual Chat and Completions. They follow OpenAI's format, extending it to allow using the context coming from ingested documents to create the response. Internallymanage context retrieval, prompt engineering and the response generation." + }, + { + "name": "Context Chunks", + "description": "Low-level API that given a query return relevant chunks of text coming from the ingesteddocuments." + }, + { + "name": "Embeddings", + "description": "Low-level API to obtain the vector representation of a given text, using an Embeddings model.Follows OpenAI's embeddings API format." + }, + { + "name": "Health", + "description": "Simple health API to make sure the server is up and running." + } + ] +} \ No newline at end of file diff --git a/fern/README.md b/fern/README.md new file mode 100644 index 0000000000000000000000000000000000000000..72fe9f11d99ec42244f0b539c7b20cceb838493e --- /dev/null +++ b/fern/README.md @@ -0,0 +1,39 @@ +# Documentation of privateGPT + +The documentation of this project is being rendered thanks to [fern](https://github.com/fern-api/fern). + +Fern is basically transforming your `.md` and `.mdx` files into a static website: your documentation. + +The configuration of your documentation is done in the `./docs.yml` file. +There, you can configure the navbar, tabs, sections and pages being rendered. + +The documentation of fern (and the syntax of its configuration `docs.yml`) is +available there [docs.buildwithfern.com](https://docs.buildwithfern.com/). + +## How to run fern + +**You cannot render your documentation locally without fern credentials.** + +To see how your documentation looks like, you **have to** use the CICD of this +repository (by opening a PR, CICD job will be executed, and a preview of +your PR's documentation will be deployed in vercel automatically, through fern). + +The only thing you can do locally, is to run `fern check`, which check the syntax of +your `docs.yml` file. + +## How to add a new page +Add in the `docs.yml` a new `page`, with the following syntax: + +```yml +navigation: + # ... + - tab: my-existing-tab + layout: + # ... + - section: My Existing Section + contents: + # ... + - page: My new page display name + # The path of the page, relative to `fern/` + path: ./docs/pages/my-existing-tab/new-page-content.mdx +``` \ No newline at end of file diff --git a/fern/docs.yml b/fern/docs.yml new file mode 100644 index 0000000000000000000000000000000000000000..d3b0025a0bb2257fd79a1cd5d59a377aa31ad658 --- /dev/null +++ b/fern/docs.yml @@ -0,0 +1,111 @@ +# Main Fern configuration file +instances: + - url: privategpt.docs.buildwithfern.com + custom-domain: docs.privategpt.dev + +title: PrivateGPT | Docs + +# The tabs definition, in the top left corner +tabs: + overview: + display-name: Overview + icon: "fa-solid fa-home" + installation: + display-name: Installation + icon: "fa-solid fa-download" + manual: + display-name: Manual + icon: "fa-solid fa-book" + recipes: + display-name: Recipes + icon: "fa-solid fa-flask" + api-reference: + display-name: API Reference + icon: "fa-solid fa-file-contract" + +# Definition of tabs contents, will be displayed on the left side of the page, below all tabs +navigation: + # The default tab + - tab: overview + layout: + - section: Welcome + contents: + - page: Welcome + path: ./docs/pages/overview/welcome.mdx + - page: Quickstart + path: ./docs/pages/overview/quickstart.mdx + # How to install privateGPT, with FAQ and troubleshooting + - tab: installation + layout: + - section: Getting started + contents: + - page: Installation + path: ./docs/pages/installation/installation.mdx + # Manual of privateGPT: how to use it and configure it + - tab: manual + layout: + - section: General configuration + contents: + - page: Configuration + path: ./docs/pages/manual/settings.mdx + - section: Document management + contents: + - page: Ingestion + path: ./docs/pages/manual/ingestion.mdx + - page: Deletion + path: ./docs/pages/manual/ingestion-reset.mdx + - section: Storage + contents: + - page: Vector Stores + path: ./docs/pages/manual/vectordb.mdx + - section: Advanced Setup + contents: + - page: LLM Backends + path: ./docs/pages/manual/llms.mdx + - section: User Interface + contents: + - page: User interface (Gradio) Manual + path: ./docs/pages/manual/ui.mdx + # Small code snippet or example of usage to help users + - tab: recipes + layout: + - section: Choice of LLM + contents: + # TODO: add recipes + - page: List of LLMs + path: ./docs/pages/recipes/list-llm.mdx + # More advanced usage of privateGPT, by API + - tab: api-reference + layout: + - section: Overview + contents: + - page : API Reference overview + path: ./docs/pages/api-reference/api-reference.mdx + - page: SDKs + path: ./docs/pages/api-reference/sdks.mdx + - api: API Reference + +# Definition of the navbar, will be displayed in the top right corner. +# `type:primary` is always displayed at the most right side of the navbar +navbar-links: + - type: secondary + text: Github + url: "https://github.com/imartinez/privateGPT" + - type: secondary + text: Contact us + url: "mailto:hello@zylon.ai" + - type: primary + text: Join the Discord + url: https://discord.com/invite/bK6mRVpErU + +colors: + accentPrimary: + dark: "#C6BBFF" + light: "#756E98" + +logo: + dark: ./docs/assets/logo_light.png + light: ./docs/assets/logo_dark.png + height: 50 + +favicon: ./docs/assets/favicon.ico diff --git a/fern/docs/assets/favicon.ico b/fern/docs/assets/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..ab220adb2ff076d74bac45104f3c068b85e7aecd Binary files /dev/null and b/fern/docs/assets/favicon.ico differ diff --git a/fern/docs/assets/header.jpeg b/fern/docs/assets/header.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..b67c56d82fb4bb9b15096e4b80db8427a0b92920 Binary files /dev/null and b/fern/docs/assets/header.jpeg differ diff --git a/fern/docs/assets/logo_dark.png b/fern/docs/assets/logo_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7164708a9ef1511d5f0c83baf28f120e3db274 Binary files /dev/null and b/fern/docs/assets/logo_dark.png differ diff --git a/fern/docs/assets/logo_light.png b/fern/docs/assets/logo_light.png new file mode 100644 index 0000000000000000000000000000000000000000..8819056c5168a7a07fe52619e1d3ec6d535bfa6a Binary files /dev/null and b/fern/docs/assets/logo_light.png differ diff --git a/fern/docs/assets/ui.png b/fern/docs/assets/ui.png new file mode 100644 index 0000000000000000000000000000000000000000..009427a515dfdbcd64ade1647002f9b9a43b2ef2 Binary files /dev/null and b/fern/docs/assets/ui.png differ diff --git a/fern/docs/pages/api-reference/api-reference.mdx b/fern/docs/pages/api-reference/api-reference.mdx new file mode 100644 index 0000000000000000000000000000000000000000..b0d5c88fcb4101f6c782c2b164728da7a9d5a358 --- /dev/null +++ b/fern/docs/pages/api-reference/api-reference.mdx @@ -0,0 +1 @@ +# API Reference diff --git a/fern/docs/pages/api-reference/sdks.mdx b/fern/docs/pages/api-reference/sdks.mdx new file mode 100644 index 0000000000000000000000000000000000000000..30935b7f490f05da843a183b24c992fa4a6083aa --- /dev/null +++ b/fern/docs/pages/api-reference/sdks.mdx @@ -0,0 +1,38 @@ +We use [Fern](www.buildwithfern.com) to offer API clients for Node.js, Python, Go, and Java. +We recommend using these clients to interact with our endpoints. +The clients are kept up to date automatically, so we encourage you to use the latest version. + +## SDKs + +*Coming soon!* + + + + +
+
+ +
+ + + + + + +
diff --git a/fern/docs/pages/installation/installation.mdx b/fern/docs/pages/installation/installation.mdx new file mode 100644 index 0000000000000000000000000000000000000000..baad4a4a70e20009d0ddca3a63b3fa02ba533e98 --- /dev/null +++ b/fern/docs/pages/installation/installation.mdx @@ -0,0 +1,235 @@ +## Installation and Settings + +### Base requirements to run PrivateGPT + +* Git clone PrivateGPT repository, and navigate to it: + +```bash + git clone https://github.com/imartinez/privateGPT + cd privateGPT +``` + +* Install Python `3.11` (*if you do not have it already*). Ideally through a python version manager like `pyenv`. + Python 3.12 should work too. Earlier python versions are not supported. + * osx/linux: [pyenv](https://github.com/pyenv/pyenv) + * windows: [pyenv-win](https://github.com/pyenv-win/pyenv-win) + +```bash +pyenv install 3.11 +pyenv local 3.11 +``` + +* Install [Poetry](https://python-poetry.org/docs/#installing-with-the-official-installer) for dependency management: + +* Have a valid C++ compiler like gcc. See [Troubleshooting: C++ Compiler](#troubleshooting-c-compiler) for more details. + +* Install `make` for scripts: + * osx: (Using homebrew): `brew install make` + * windows: (Using chocolatey) `choco install make` + +### Install dependencies + +Install the dependencies: + +```bash +poetry install --with ui +``` + +Verify everything is working by running `make run` (or `poetry run python -m private_gpt`) and navigate to +http://localhost:8001. You should see a [Gradio UI](https://gradio.app/) **configured with a mock LLM** that will +echo back the input. Below we'll see how to configure a real LLM. + +### Settings + + +The default settings of PrivateGPT should work out-of-the-box for a 100% local setup. **However**, as is, it runs exclusively on your CPU. +Skip this section if you just want to test PrivateGPT locally, and come back later to learn about more configuration options (and have better performances). + + +
+ +### Local LLM requirements + +Install extra dependencies for local execution: + +```bash +poetry install --with local +``` + +For PrivateGPT to run fully locally GPU acceleration is required +(CPU execution is possible, but very slow), however, +typical Macbook laptops or window desktops with mid-range GPUs lack VRAM to run +even the smallest LLMs. For that reason +**local execution is only supported for models compatible with [llama.cpp](https://github.com/ggerganov/llama.cpp)** + +These two models are known to work well: + +* https://huggingface.co/TheBloke/Llama-2-7B-chat-GGUF +* https://huggingface.co/TheBloke/Mistral-7B-Instruct-v0.1-GGUF (recommended) + +To ease the installation process, use the `setup` script that will download both +the embedding and the LLM model and place them in the correct location (under `models` folder): + +```bash +poetry run python scripts/setup +``` + +If you are ok with CPU execution, you can skip the rest of this section. + +As stated before, llama.cpp is required and in +particular [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) +is used. + +> It's highly encouraged that you fully read llama-cpp and llama-cpp-python documentation relevant to your platform. +> Running into installation issues is very likely, and you'll need to troubleshoot them yourself. + +#### Customizing low level parameters + +Currently, not all the parameters of `llama.cpp` and `llama-cpp-python` are available at PrivateGPT's `settings.yaml` file. +In case you need to customize parameters such as the number of layers loaded into the GPU, you might change +these at the `llm_component.py` file under the `private_gpt/components/llm/llm_component.py`. + +##### Available LLM config options + +The `llm` section of the settings allows for the following configurations: + +- `mode`: how to run your llm +- `max_new_tokens`: this lets you configure the number of new tokens the LLM will generate and add to the context window (by default Llama.cpp uses `256`) + +Example: + +```yaml +llm: + mode: local + max_new_tokens: 256 +``` + +If you are getting an out of memory error, you might also try a smaller model or stick to the proposed +recommended models, instead of custom tuning the parameters. + +#### OSX GPU support + +You will need to build [llama.cpp](https://github.com/ggerganov/llama.cpp) with metal support. + +To do that, you need to install `llama.cpp` python's binding `llama-cpp-python` through pip, with the compilation flag +that activate `METAL`: you have to pass `-DLLAMA_METAL=on` to the CMake command tha `pip` runs for you (see below). + +In other words, one should simply run: +```bash +CMAKE_ARGS="-DLLAMA_METAL=on" pip install --force-reinstall --no-cache-dir llama-cpp-python +``` + +The above command will force the re-installation of `llama-cpp-python` with `METAL` support by compiling +`llama.cpp` locally with your `METAL` libraries (shipped by default with your macOS). + +More information is available in the documentation of the libraries themselves: +* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python#installation-with-hardware-acceleration) +* [llama-cpp-python's documentation](https://llama-cpp-python.readthedocs.io/en/latest/#installation-with-hardware-acceleration) +* [llama.cpp](https://github.com/ggerganov/llama.cpp#build) + +#### Windows NVIDIA GPU support + +Windows GPU support is done through CUDA. +Follow the instructions on the original [llama.cpp](https://github.com/ggerganov/llama.cpp) repo to install the required +dependencies. + +Some tips to get it working with an NVIDIA card and CUDA (Tested on Windows 10 with CUDA 11.5 RTX 3070): + +* Install latest VS2022 (and build tools) https://visualstudio.microsoft.com/vs/community/ +* Install CUDA toolkit https://developer.nvidia.com/cuda-downloads +* Verify your installation is correct by running `nvcc --version` and `nvidia-smi`, ensure your CUDA version is up to + date and your GPU is detected. +* [Optional] Install CMake to troubleshoot building issues by compiling llama.cpp directly https://cmake.org/download/ + +If you have all required dependencies properly configured running the +following powershell command should succeed. + +```powershell +$env:CMAKE_ARGS='-DLLAMA_CUBLAS=on'; poetry run pip install --force-reinstall --no-cache-dir llama-cpp-python +``` + +If your installation was correct, you should see a message similar to the following next +time you start the server `BLAS = 1`. + +```console +llama_new_context_with_model: total VRAM used: 4857.93 MB (model: 4095.05 MB, context: 762.87 MB) +AVX = 1 | AVX2 = 1 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 1 | SSSE3 = 0 | VSX = 0 | +``` + +Note that llama.cpp offloads matrix calculations to the GPU but the performance is +still hit heavily due to latency between CPU and GPU communication. You might need to tweak +batch sizes and other parameters to get the best performance for your particular system. + +#### Linux NVIDIA GPU support and Windows-WSL + +Linux GPU support is done through CUDA. +Follow the instructions on the original [llama.cpp](https://github.com/ggerganov/llama.cpp) repo to install the required +external +dependencies. + +Some tips: + +* Make sure you have an up-to-date C++ compiler +* Install CUDA toolkit https://developer.nvidia.com/cuda-downloads +* Verify your installation is correct by running `nvcc --version` and `nvidia-smi`, ensure your CUDA version is up to + date and your GPU is detected. + +After that running the following command in the repository will install llama.cpp with GPU support: + +```bash +CMAKE_ARGS='-DLLAMA_CUBLAS=on' poetry run pip install --force-reinstall --no-cache-dir llama-cpp-python +``` + +If your installation was correct, you should see a message similar to the following next +time you start the server `BLAS = 1`. + +``` +llama_new_context_with_model: total VRAM used: 4857.93 MB (model: 4095.05 MB, context: 762.87 MB) +AVX = 1 | AVX2 = 1 | AVX512 = 0 | AVX512_VBMI = 0 | AVX512_VNNI = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 1 | SSE3 = 1 | SSSE3 = 0 | VSX = 0 | +``` + +### Known issues and Troubleshooting + +Execution of LLMs locally still has a lot of sharp edges, specially when running on non Linux platforms. +You might encounter several issues: + +* Performance: RAM or VRAM usage is very high, your computer might experience slowdowns or even crashes. +* GPU Virtualization on Windows and OSX: Simply not possible with docker desktop, you have to run the server directly on + the host. +* Building errors: Some of PrivateGPT dependencies need to build native code, and they might fail on some platforms. + Most likely you are missing some dev tools in your machine (updated C++ compiler, CUDA is not on PATH, etc.). + If you encounter any of these issues, please open an issue and we'll try to help. + +One of the first reflex to adopt is: get more information. +If, during your installation, something does not go as planned, retry in *verbose* mode, and see what goes wrong. + +For example, when installing packages with `pip install`, you can add the option `-vvv` to show the details of the installation. + +#### Troubleshooting: C++ Compiler + +If you encounter an error while building a wheel during the `pip install` process, you may need to install a C++ +compiler on your computer. + +**For Windows 10/11** + +To install a C++ compiler on Windows 10/11, follow these steps: + +1. Install Visual Studio 2022. +2. Make sure the following components are selected: + * Universal Windows Platform development + * C++ CMake tools for Windows +3. Download the MinGW installer from the [MinGW website](https://sourceforge.net/projects/mingw/). +4. Run the installer and select the `gcc` component. + +**For OSX** + +1. Check if you have a C++ compiler installed, `Xcode` should have done it for you. To install Xcode, go to the App + Store and search for Xcode and install it. **Or** you can install the command line tools by running `xcode-select --install`. +2. If not, you can install clang or gcc with homebrew `brew install gcc` + +#### Troubleshooting: Mac Running Intel + +When running a Mac with Intel hardware (not M1), you may run into _clang: error: the clang compiler does not support ' +-march=native'_ during pip install. + +If so set your archflags during pip install. eg: _ARCHFLAGS="-arch x86_64" pip3 install -r requirements.txt_ \ No newline at end of file diff --git a/fern/docs/pages/manual/ingestion-reset.mdx b/fern/docs/pages/manual/ingestion-reset.mdx new file mode 100644 index 0000000000000000000000000000000000000000..516f98c5d932ab693337cac39b6e9527b4ebb804 --- /dev/null +++ b/fern/docs/pages/manual/ingestion-reset.mdx @@ -0,0 +1,14 @@ +# Reset Local documents database + +When running in a local setup, you can remove all ingested documents by simply +deleting all contents of `local_data` folder (except .gitignore). + +To simplify this process, you can use the command: +```bash +make wipe +``` + +# Advanced usage + +You can actually delete your documents from your storage by using the +API endpoint `DELETE` in the Ingestion API. \ No newline at end of file diff --git a/fern/docs/pages/manual/ingestion.mdx b/fern/docs/pages/manual/ingestion.mdx new file mode 100644 index 0000000000000000000000000000000000000000..39b83cc9fdb2db4bd3af9bf1c10cd7cd66cfbbcb --- /dev/null +++ b/fern/docs/pages/manual/ingestion.mdx @@ -0,0 +1,124 @@ +# Ingesting & Managing Documents + +The ingestion of documents can be done in different ways: + +* Using the `/ingest` API +* Using the Gradio UI +* Using the Bulk Local Ingestion functionality (check next section) + +## Bulk Local Ingestion + +When you are running PrivateGPT in a fully local setup, you can ingest a complete folder for convenience (containing +pdf, text files, etc.) +and optionally watch changes on it with the command: + +```bash +make ingest /path/to/folder -- --watch +``` + +To log the processed and failed files to an additional file, use: + +```bash +make ingest /path/to/folder -- --watch --log-file /path/to/log/file.log +``` + +**Note for Windows Users:** Depending on your Windows version and whether you are using PowerShell to execute +PrivateGPT API calls, you may need to include the parameter name before passing the folder path for consumption: + +```bash +make ingest arg=/path/to/folder -- --watch --log-file /path/to/log/file.log +``` + +After ingestion is complete, you should be able to chat with your documents +by navigating to http://localhost:8001 and using the option `Query documents`, +or using the completions / chat API. + +## Ingestion troubleshooting + +### Running out of memory + +To do not run out of memory, you should ingest your documents without the LLM loaded in your (video) memory. +To do so, you should change your configuration to set `llm.mode: mock`. + +You can also use the existing `PGPT_PROFILES=mock` that will set the following configuration for you: + +```yaml +llm: + mode: mock +embedding: + mode: local +``` + +This configuration allows you to use hardware acceleration for creating embeddings while avoiding loading the full LLM into (video) memory. + +Once your documents are ingested, you can set the `llm.mode` value back to `local` (or your previous custom value). + +### Ingestion speed + +The ingestion speed depends on the number of documents you are ingesting, and the size of each document. +To speed up the ingestion, you can change the ingestion mode in configuration. + +The following ingestion mode exist: +* `simple`: historic behavior, ingest one document at a time, sequentially +* `batch`: read, parse, and embed multiple documents using batches (batch read, and then batch parse, and then batch embed) +* `parallel`: read, parse, and embed multiple documents in parallel. This is the fastest ingestion mode for local setup. +To change the ingestion mode, you can use the `embedding.ingest_mode` configuration value. The default value is `simple`. + +To configure the number of workers used for parallel or batched ingestion, you can use +the `embedding.count_workers` configuration value. If you set this value too high, you might run out of +memory, so be mindful when setting this value. The default value is `2`. +For `batch` mode, you can easily set this value to your number of threads available on your CPU without +running out of memory. For `parallel` mode, you should be more careful, and set this value to a lower value. + +The configuration below should be enough for users who want to stress more their hardware: +```yaml +embedding: + ingest_mode: parallel + count_workers: 4 +``` + +If your hardware is powerful enough, and that you are loading heavy documents, you can increase the number of workers. +It is recommended to do your own tests to find the optimal value for your hardware. + +If you have a `bash` shell, you can use this set of command to do your own benchmark: + +```bash +# Wipe your local data, to put yourself in a clean state +# This will delete all your ingested documents +make wipe + +time PGPT_PROFILES=mock python ./scripts/ingest_folder.py ~/my-dir/to-ingest/ +``` + +## Supported file formats + +privateGPT by default supports all the file formats that contains clear text (for example, `.txt` files, `.html`, etc.). +However, these text based file formats as only considered as text files, and are not pre-processed in any other way. + +It also supports the following file formats: +* `.hwp` +* `.pdf` +* `.docx` +* `.pptx` +* `.ppt` +* `.pptm` +* `.jpg` +* `.png` +* `.jpeg` +* `.mp3` +* `.mp4` +* `.csv` +* `.epub` +* `.md` +* `.mbox` +* `.ipynb` +* `.json` + +**Please note the following nuance**: while `privateGPT` supports these file formats, it **might** require additional +dependencies to be installed in your python's virtual environment. +For example, if you try to ingest `.epub` files, `privateGPT` might fail to do it, and will instead display an +explanatory error asking you to download the necessary dependencies to install this file format. + + +**Other file formats might work**, but they will be considered as plain text +files (in other words, they will be ingested as `.txt` files). \ No newline at end of file diff --git a/fern/docs/pages/manual/llms.mdx b/fern/docs/pages/manual/llms.mdx new file mode 100644 index 0000000000000000000000000000000000000000..6dbb4a63014daa31af5991762accbd3caf001cc9 --- /dev/null +++ b/fern/docs/pages/manual/llms.mdx @@ -0,0 +1,83 @@ +## Running the Server + +PrivateGPT supports running with different LLMs & setups. + +### Local models + +Both the LLM and the Embeddings model will run locally. + +Make sure you have followed the *Local LLM requirements* section before moving on. + +This command will start PrivateGPT using the `settings.yaml` (default profile) together with the `settings-local.yaml` +configuration files. By default, it will enable both the API and the Gradio UI. Run: + +```bash +PGPT_PROFILES=local make run +``` + +or + +```bash +PGPT_PROFILES=local poetry run python -m private_gpt +``` + +When the server is started it will print a log *Application startup complete*. +Navigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API +using Swagger UI. + +### Using OpenAI + +If you cannot run a local model (because you don't have a GPU, for example) or for testing purposes, you may +decide to run PrivateGPT using OpenAI as the LLM and Embeddings model. + +In order to do so, create a profile `settings-openai.yaml` with the following contents: + +```yaml +llm: + mode: openai + +openai: + api_key: # You could skip this configuration and use the OPENAI_API_KEY env var instead +``` + +And run PrivateGPT loading that profile you just created: + +`PGPT_PROFILES=openai make run` + +or + +`PGPT_PROFILES=openai poetry run python -m private_gpt` + +When the server is started it will print a log *Application startup complete*. +Navigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API. +You'll notice the speed and quality of response is higher, given you are using OpenAI's servers for the heavy +computations. + +### Using AWS Sagemaker + +For a fully private & performant setup, you can choose to have both your LLM and Embeddings model deployed using Sagemaker. + +Note: how to deploy models on Sagemaker is out of the scope of this documentation. + +In order to do so, create a profile `settings-sagemaker.yaml` with the following contents (remember to +update the values of the llm_endpoint_name and embedding_endpoint_name to yours): + +```yaml +llm: + mode: sagemaker + +sagemaker: + llm_endpoint_name: huggingface-pytorch-tgi-inference-2023-09-25-19-53-32-140 + embedding_endpoint_name: huggingface-pytorch-inference-2023-11-03-07-41-36-479 +``` + +And run PrivateGPT loading that profile you just created: + +`PGPT_PROFILES=sagemaker make run` + +or + +`PGPT_PROFILES=sagemaker poetry run python -m private_gpt` + +When the server is started it will print a log *Application startup complete*. +Navigate to http://localhost:8001 to use the Gradio UI or to http://localhost:8001/docs (API section) to try the API. \ No newline at end of file diff --git a/fern/docs/pages/manual/settings.mdx b/fern/docs/pages/manual/settings.mdx new file mode 100644 index 0000000000000000000000000000000000000000..7f55cbfb0ce5e064503762c85f04fa8aa5526463 --- /dev/null +++ b/fern/docs/pages/manual/settings.mdx @@ -0,0 +1,80 @@ +# Settings and profiles for your private GPT + +The configuration of your private GPT server is done thanks to `settings` files (more precisely `settings.yaml`). +These text files are written using the [YAML](https://en.wikipedia.org/wiki/YAML) syntax. + +While privateGPT is distributing safe and universal configuration files, you might want to quickly customize your +privateGPT, and this can be done using the `settings` files. + +This project is defining the concept of **profiles** (or configuration profiles). +This mechanism, using your environment variables, is giving you the ability to easily switch between +configuration you've made. + +A typical use case of profile is to easily switch between LLM and embeddings. +To be a bit more precise, you can change the language (to French, Spanish, Italian, English, etc) by simply changing +the profile you've selected; no code changes required! + +PrivateGPT is configured through *profiles* that are defined using yaml files, and selected through env variables. +The full list of properties configurable can be found in `settings.yaml`. + +## How to know which profiles exist +Given that a profile `foo_bar` points to the file `settings-foo_bar.yaml` and vice-versa, you simply have to look +at the files starting with `settings` and ending in `.yaml`. + +## How to use an existing profiles +**Please note that the syntax to set the value of an environment variables depends on your OS**. +You have to set environment variable `PGPT_PROFILES` to the name of the profile you want to use. + +For example, on **linux and macOS**, this gives: +```bash +export PGPT_PROFILES=my_profile_name_here +``` + +Windows Powershell(s) have a different syntax, one of them being: +```shell +set PGPT_PROFILES=my_profile_name_here +``` +If the above is not working, you might want to try other ways to set an env variable in your window's terminal. + +--- + +Once you've set this environment variable to the desired profile, you can simply launch your privateGPT, +and it will run using your profile on top of the default configuration. + +## Reference +Additional details on the profiles are described in this section + +### Environment variable `PGPT_SETTINGS_FOLDER` + +The location of the settings folder. Defaults to the root of the project. +Should contain the default `settings.yaml` and any other `settings-{profile}.yaml`. + +### Environment variable `PGPT_PROFILES` + +By default, the profile definition in `settings.yaml` is loaded. +Using this env var you can load additional profiles; format is a comma separated list of profile names. +This will merge `settings-{profile}.yaml` on top of the base settings file. + +For example: +`PGPT_PROFILES=local,cuda` will load `settings-local.yaml` +and `settings-cuda.yaml`, their contents will be merged with +later profiles properties overriding values of earlier ones like `settings.yaml`. + +During testing, the `test` profile will be active along with the default, therefore `settings-test.yaml` +file is required. + +### Environment variables expansion + +Configuration files can contain environment variables, +they will be expanded at runtime. + +Expansion must follow the pattern `${VARIABLE_NAME:default_value}`. + +For example, the following configuration will use the value of the `PORT` +environment variable or `8001` if it's not set. +Missing variables with no default will produce an error. + +```yaml +server: + port: ${PORT:8001} +``` \ No newline at end of file diff --git a/fern/docs/pages/manual/ui.mdx b/fern/docs/pages/manual/ui.mdx new file mode 100644 index 0000000000000000000000000000000000000000..ddc4d04e4770e1a7b6529e778781ade8e207b690 --- /dev/null +++ b/fern/docs/pages/manual/ui.mdx @@ -0,0 +1,39 @@ +## Gradio UI user manual + +Gradio UI is a ready to use way of testing most of PrivateGPT API functionalities. + +![Gradio PrivateGPT](https://lh3.googleusercontent.com/drive-viewer/AK7aPaD_Hc-A8A9ooMe-hPgm_eImgsbxAjb__8nFYj8b_WwzvL1Gy90oAnp1DfhPaN6yGiEHCOXs0r77W1bYHtPzlVwbV7fMsA=s1600) + +### Execution Modes + +It has 3 modes of execution (you can select in the top-left): + +* Query Docs: uses the context from the + ingested documents to answer the questions posted in the chat. It also takes + into account previous chat messages as context. + * Makes use of `/chat/completions` API with `use_context=true` and no + `context_filter`. +* Search in Docs: fast search that returns the 4 most related text + chunks, together with their source document and page. + * Makes use of `/chunks` API with no `context_filter`, `limit=4` and + `prev_next_chunks=0`. +* LLM Chat: simple, non-contextual chat with the LLM. The ingested documents won't + be taken into account, only the previous messages. + * Makes use of `/chat/completions` API with `use_context=false`. + +### Document Ingestion + +Ingest documents by using the `Upload a File` button. You can check the progress of +the ingestion in the console logs of the server. + +The list of ingested files is shown below the button. + +If you want to delete the ingested documents, refer to *Reset Local documents +database* section in the documentation. + +### Chat + +Normal chat interface, self-explanatory ;) + +You can check the actual prompt being passed to the LLM by looking at the logs of +the server. We'll add better observability in future releases. \ No newline at end of file diff --git a/fern/docs/pages/manual/vectordb.mdx b/fern/docs/pages/manual/vectordb.mdx new file mode 100644 index 0000000000000000000000000000000000000000..f59f04823aa07a89c1c617a977ffcf29212d1c62 --- /dev/null +++ b/fern/docs/pages/manual/vectordb.mdx @@ -0,0 +1,50 @@ +## Vectorstores +PrivateGPT supports [Qdrant](https://qdrant.tech/) and [Chroma](https://www.trychroma.com/) as vectorstore providers. Qdrant being the default. + +In order to select one or the other, set the `vectorstore.database` property in the `settings.yaml` file to `qdrant` or `chroma`. + +```yaml +vectorstore: + database: qdrant +``` + +### Qdrant configuration + +To enable Qdrant, set the `vectorstore.database` property in the `settings.yaml` file to `qdrant`. + +Qdrant settings can be configured by setting values to the `qdrant` property in the `settings.yaml` file. + +The available configuration options are: +| Field | Description | +|--------------|-------------| +| location | If `:memory:` - use in-memory Qdrant instance. If `str` - use it as a `url` parameter.| +| url | Either host or str of 'Optional[scheme], host, Optional[port], Optional[prefix]'. Eg. `http://localhost:6333` | +| port | Port of the REST API interface. Default: `6333` | +| grpc_port | Port of the gRPC interface. Default: `6334` | +| prefer_grpc | If `true` - use gRPC interface whenever possible in custom methods. | +| https | If `true` - use HTTPS(SSL) protocol.| +| api_key | API key for authentication in Qdrant Cloud.| +| prefix | If set, add `prefix` to the REST URL path. Example: `service/v1` will result in `http://localhost:6333/service/v1/{qdrant-endpoint}` for REST API.| +| timeout | Timeout for REST and gRPC API requests. Default: 5.0 seconds for REST and unlimited for gRPC | +| host | Host name of Qdrant service. If url and host are not set, defaults to 'localhost'.| +| path | Persistence path for QdrantLocal. Eg. `local_data/private_gpt/qdrant`| +| force_disable_check_same_thread | Force disable check_same_thread for QdrantLocal sqlite connection, defaults to True.| + +By default Qdrant tries to connect to an instance of Qdrant server at `http://localhost:3000`. + +To obtain a local setup (disk-based database) without running a Qdrant server, configure the `qdrant.path` value in settings.yaml: + +```yaml +qdrant: + path: local_data/private_gpt/qdrant +``` + +### Chroma configuration + +To enable Chroma, set the `vectorstore.database` property in the `settings.yaml` file to `chroma` and install the `chroma` extra. + +```bash +poetry install --extras chroma +``` + +By default `chroma` will use a disk-based database stored in local_data_path / "chroma_db" (being local_data_path defined in settings.yaml) \ No newline at end of file diff --git a/fern/docs/pages/overview/quickstart.mdx b/fern/docs/pages/overview/quickstart.mdx new file mode 100644 index 0000000000000000000000000000000000000000..47a2322edfc437647476178d03b214a88a117cfe --- /dev/null +++ b/fern/docs/pages/overview/quickstart.mdx @@ -0,0 +1,21 @@ +## Local Installation steps + +The steps in [Installation](/installation) section are better explained and cover more +setup scenarios (macOS, Windows, Linux). +But if you like one-liners, have python3.11 installed, and you are running a UNIX (macOS or Linux) +system, you can get up and running on CPU in few lines: + +```bash +git clone https://github.com/imartinez/privateGPT && cd privateGPT && \ +python3.11 -m venv .venv && source .venv/bin/activate && \ +pip install --upgrade pip poetry && poetry install --with ui,local && ./scripts/setup + +# Launch the privateGPT API server **and** the gradio UI +python3.11 -m private_gpt + +# In another terminal, create a new browser window on your private GPT! +open http:////127.0.0.1:8001/ +``` + +The above is not working, or it is too slow, so **you want to run it on GPU(s)**? +Please check the more detailed [installation guide](/installation). diff --git a/fern/docs/pages/overview/welcome.mdx b/fern/docs/pages/overview/welcome.mdx new file mode 100644 index 0000000000000000000000000000000000000000..a016a8b32b1c31a81e4cc7c2e712be531dd94a06 --- /dev/null +++ b/fern/docs/pages/overview/welcome.mdx @@ -0,0 +1,53 @@ +## Introduction 👋 + +PrivateGPT provides an **API** containing all the building blocks required to +build **private, context-aware AI applications**. +The API follows and extends OpenAI API standard, and supports both normal and streaming responses. +That means that, if you can use OpenAI API in one of your tools, you can use your own PrivateGPT API instead, +with no code changes, **and for free** if you are running privateGPT in `local` mode. + +Looking for the installation quickstart? [Quickstart installation guide for Linux and macOS](/overview/welcome/quickstart). + +Do you want to install it on Windows? Or do you want to take full advantage of your hardware for better performances? +The installation guide will help you in the [Installation section](/installation). + + +## Frequently Visited Resources + + + + + + + +## API Organization + +The API is divided in two logical blocks: + +1. High-level API, abstracting all the complexity of a RAG (Retrieval Augmented Generation) pipeline implementation: + - Ingestion of documents: internally managing document parsing, splitting, metadata extraction, + embedding generation and storage. + - Chat & Completions using context from ingested documents: abstracting the retrieval of context, the prompt + engineering and the response generation. + +2. Low-level API, allowing advanced users to implement their own complex pipelines: + - Embeddings generation: based on a piece of text. + - Contextual chunks retrieval: given a query, returns the most relevant chunks of text from the ingested + documents. + + +A working **Gradio UI client** is provided to test the API, together with a set of useful tools such as bulk +model download script, ingestion script, documents folder watch, etc. + \ No newline at end of file diff --git a/fern/docs/pages/recipes/list-llm.mdx b/fern/docs/pages/recipes/list-llm.mdx new file mode 100644 index 0000000000000000000000000000000000000000..19ae479f565e0c1460fae26f0192a9042561b8c1 --- /dev/null +++ b/fern/docs/pages/recipes/list-llm.mdx @@ -0,0 +1,95 @@ +# List of working LLM + +**Do you have any working combination of LLM and embeddings?** +Please open a PR to add it to the list, and come on our Discord to tell us about it! + +## Prompt style + +LLMs might have been trained with different prompt styles. +The prompt style is the way the prompt is written, and how the system message is injected in the prompt. + +For example, `llama2` looks like this: +```text +[INST] <> +{{ system_prompt }} +<> + +{{ user_message }} [/INST] +``` + +While `default` (the `llama_index` default) looks like this: +```text +system: {{ system_prompt }} +user: {{ user_message }} +assistant: {{ assistant_message }} +``` + +And the "`tag`" style looks like this: + +```text +<|system|>: {{ system_prompt }} +<|user|>: {{ user_message }} +<|assistant|>: {{ assistant_message }} +``` + +Some LLMs will not understand this prompt style, and will not work (returning nothing). +You can try to change the prompt style to `default` (or `tag`) in the settings, and it will +change the way the messages are formatted to be passed to the LLM. + +## Example of configuration + +You might want to change the prompt depending on the language and model you are using. + +### English, with instructions + +`settings-en.yaml`: +```yml +local: + llm_hf_repo_id: TheBloke/Mistral-7B-Instruct-v0.1-GGUF + llm_hf_model_file: mistral-7b-instruct-v0.1.Q4_K_M.gguf + embedding_hf_model_name: BAAI/bge-small-en-v1.5 + prompt_style: "llama2" +``` + +### French, with instructions + +`settings-fr.yaml`: +```yml +local: + llm_hf_repo_id: TheBloke/Vigogne-2-7B-Instruct-GGUF + llm_hf_model_file: vigogne-2-7b-instruct.Q4_K_M.gguf + embedding_hf_model_name: dangvantuan/sentence-camembert-base + prompt_style: "default" + # prompt_style: "tag" # also works + # The default system prompt is injected only when the `prompt_style` != default, and there are no system message in the discussion + # default_system_prompt: Vous êtes un assistant IA qui répond à la question posée à la fin en utilisant le contexte suivant. Si vous ne connaissez pas la réponse, dites simplement que vous ne savez pas, n'essayez pas d'inventer une réponse. Veuillez répondre exclusivement en français. +``` + +You might want to change the prompt as the one above might not directly answer your question. +You can read online about how to write a good prompt, but in a nutshell, make it (extremely) directive. + +You can try and troubleshot your prompt by writing multiline requests in the UI, while +writing your interaction with the model, for example: + +```text +Tu es un programmeur senior qui programme en python et utilise le framework fastapi. Ecrit moi un serveur qui retourne "hello world". +``` + +Another example: +```text +Context: None +Situation: tu es au milieu d'un champ. +Tache: va a la rivière, en bas du champ. +Décrit comment aller a la rivière. +``` + +### Optimised Models +GodziLLa2-70B LLM (English, rank 2 on HuggingFace OpenLLM Leaderboard), bge large Embedding Model (rank 1 on HuggingFace MTEB Leaderboard) +`settings-optimised.yaml`: +```yml +local: + llm_hf_repo_id: TheBloke/GodziLLa2-70B-GGUF + llm_hf_model_file: godzilla2-70b.Q4_K_M.gguf + embedding_hf_model_name: BAAI/bge-large-en + prompt_style: "llama2" +``` \ No newline at end of file diff --git a/fern/fern.config.json b/fern/fern.config.json new file mode 100644 index 0000000000000000000000000000000000000000..bf2d5b9a78245b1afc95b881a8cac542bdf93343 --- /dev/null +++ b/fern/fern.config.json @@ -0,0 +1,4 @@ +{ + "organization": "privategpt", + "version": "0.15.3" +} \ No newline at end of file diff --git a/fern/generators.yml b/fern/generators.yml new file mode 100644 index 0000000000000000000000000000000000000000..ec3f967cc0b73db2a459314e972b3fe94422ae73 --- /dev/null +++ b/fern/generators.yml @@ -0,0 +1,8 @@ +groups: + public: + generators: + - name: fernapi/fern-python-sdk + version: 0.6.2 + output: + location: local-file-system + path: ../../pgpt-sdk/python diff --git a/fern/openapi/openapi.json b/fern/openapi/openapi.json new file mode 100644 index 0000000000000000000000000000000000000000..06fffa6996bc72571ef0a302138c80023bebb2ee --- /dev/null +++ b/fern/openapi/openapi.json @@ -0,0 +1,1012 @@ +{ + "openapi": "3.1.0", + "info": { + "title": "PrivateGPT", + "summary": "PrivateGPT is a production-ready AI project that allows you to ask questions to your documents using the power of Large Language Models (LLMs), even in scenarios without Internet connection. 100% private, no data leaves your execution environment at any point.", + "description": "", + "contact": { + "url": "https://github.com/imartinez/privateGPT" + }, + "license": { + "name": "Apache 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.html" + }, + "version": "0.1.0", + "x-logo": { + "url": "https://lh3.googleusercontent.com/drive-viewer/AK7aPaD_iNlMoTquOBsw4boh4tIYxyEuhz6EtEs8nzq3yNkNAK00xGjE1KUCmPJSk3TYOjcs6tReG6w_cLu1S7L_gPgT9z52iw=s2560" + } + }, + "paths": { + "/v1/completions": { + "post": { + "tags": [ + "Contextual Completions" + ], + "summary": "Completion", + "description": "We recommend most users use our Chat completions API.\n\nGiven a prompt, the model will return one predicted completion.\n\nOptionally include a `system_prompt` to influence the way the LLM answers.\n\nIf `use_context`\nis set to `true`, the model will use context coming from the ingested documents\nto create the response. The documents being used can be filtered using the\n`context_filter` and passing the document IDs to be used. Ingested documents IDs\ncan be found using `/ingest/list` endpoint. If you want all ingested documents to\nbe used, remove `context_filter` altogether.\n\nWhen using `'include_sources': true`, the API will return the source Chunks used\nto create the response, which come from the context provided.\n\nWhen using `'stream': true`, the API will return data chunks following [OpenAI's\nstreaming model](https://platform.openai.com/docs/api-reference/chat/streaming):\n```\n{\"id\":\"12345\",\"object\":\"completion.chunk\",\"created\":1694268190,\n\"model\":\"private-gpt\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"Hello\"},\n\"finish_reason\":null}]}\n```", + "operationId": "prompt_completion_v1_completions_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CompletionsBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OpenAICompletion" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/chat/completions": { + "post": { + "tags": [ + "Contextual Completions" + ], + "summary": "Chat Completion", + "description": "Given a list of messages comprising a conversation, return a response.\n\nOptionally include a `system_prompt` to influence the way the LLM answers.\n\nIf `use_context` is set to `true`, the model will use context coming\nfrom the ingested documents to create the response. The documents being used can\nbe filtered using the `context_filter` and passing the document IDs to be used.\nIngested documents IDs can be found using `/ingest/list` endpoint. If you want\nall ingested documents to be used, remove `context_filter` altogether.\n\nWhen using `'include_sources': true`, the API will return the source Chunks used\nto create the response, which come from the context provided.\n\nWhen using `'stream': true`, the API will return data chunks following [OpenAI's\nstreaming model](https://platform.openai.com/docs/api-reference/chat/streaming):\n```\n{\"id\":\"12345\",\"object\":\"completion.chunk\",\"created\":1694268190,\n\"model\":\"private-gpt\",\"choices\":[{\"index\":0,\"delta\":{\"content\":\"Hello\"},\n\"finish_reason\":null}]}\n```", + "operationId": "chat_completion_v1_chat_completions_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChatBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OpenAICompletion" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/chunks": { + "post": { + "tags": [ + "Context Chunks" + ], + "summary": "Chunks Retrieval", + "description": "Given a `text`, returns the most relevant chunks from the ingested documents.\n\nThe returned information can be used to generate prompts that can be\npassed to `/completions` or `/chat/completions` APIs. Note: it is usually a very\nfast API, because only the Embeddings model is involved, not the LLM. The\nreturned information contains the relevant chunk `text` together with the source\n`document` it is coming from. It also contains a score that can be used to\ncompare different results.\n\nThe max number of chunks to be returned is set using the `limit` param.\n\nPrevious and next chunks (pieces of text that appear right before or after in the\ndocument) can be fetched by using the `prev_next_chunks` field.\n\nThe documents being used can be filtered using the `context_filter` and passing\nthe document IDs to be used. Ingested documents IDs can be found using\n`/ingest/list` endpoint. If you want all ingested documents to be used,\nremove `context_filter` altogether.", + "operationId": "chunks_retrieval_v1_chunks_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChunksBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ChunksResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/ingest": { + "post": { + "tags": [ + "Ingestion" + ], + "summary": "Ingest", + "description": "Ingests and processes a file, storing its chunks to be used as context.\n\nThe context obtained from files is later used in\n`/chat/completions`, `/completions`, and `/chunks` APIs.\n\nMost common document\nformats are supported, but you may be prompted to install an extra dependency to\nmanage a specific file type.\n\nA file can generate different Documents (for example a PDF generates one Document\nper page). All Documents IDs are returned in the response, together with the\nextracted Metadata (which is later used to improve context retrieval). Those IDs\ncan be used to filter the context used to create responses in\n`/chat/completions`, `/completions`, and `/chunks` APIs.", + "operationId": "ingest_v1_ingest_post", + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/Body_ingest_v1_ingest_post" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/IngestResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/ingest/list": { + "get": { + "tags": [ + "Ingestion" + ], + "summary": "List Ingested", + "description": "Lists already ingested Documents including their Document ID and metadata.\n\nThose IDs can be used to filter the context used to create responses\nin `/chat/completions`, `/completions`, and `/chunks` APIs.", + "operationId": "list_ingested_v1_ingest_list_get", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/IngestResponse" + } + } + } + } + } + } + }, + "/v1/ingest/{doc_id}": { + "delete": { + "tags": [ + "Ingestion" + ], + "summary": "Delete Ingested", + "description": "Delete the specified ingested Document.\n\nThe `doc_id` can be obtained from the `GET /ingest/list` endpoint.\nThe document will be effectively deleted from your storage context.", + "operationId": "delete_ingested_v1_ingest__doc_id__delete", + "parameters": [ + { + "name": "doc_id", + "in": "path", + "required": true, + "schema": { + "type": "string", + "title": "Doc Id" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": {} + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/v1/embeddings": { + "post": { + "tags": [ + "Embeddings" + ], + "summary": "Embeddings Generation", + "description": "Get a vector representation of a given input.\n\nThat vector representation can be easily consumed\nby machine learning models and algorithms.", + "operationId": "embeddings_generation_v1_embeddings_post", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmbeddingsBody" + } + } + }, + "required": true + }, + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/EmbeddingsResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + } + } + }, + "/health": { + "get": { + "tags": [ + "Health" + ], + "summary": "Health", + "description": "Return ok if the system is up.", + "operationId": "health_health_get", + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HealthResponse" + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "Body_ingest_v1_ingest_post": { + "properties": { + "file": { + "type": "string", + "format": "binary", + "title": "File" + } + }, + "type": "object", + "required": [ + "file" + ], + "title": "Body_ingest_v1_ingest_post" + }, + "ChatBody": { + "properties": { + "messages": { + "items": { + "$ref": "#/components/schemas/OpenAIMessage" + }, + "type": "array", + "title": "Messages" + }, + "system_prompt": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "System Prompt" + }, + "use_context": { + "type": "boolean", + "title": "Use Context", + "default": false + }, + "context_filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/ContextFilter" + }, + { + "type": "null" + } + ] + }, + "include_sources": { + "type": "boolean", + "title": "Include Sources", + "default": true + }, + "stream": { + "type": "boolean", + "title": "Stream", + "default": false + } + }, + "type": "object", + "required": [ + "messages" + ], + "title": "ChatBody", + "examples": [ + { + "context_filter": { + "docs_ids": [ + "c202d5e6-7b69-4869-81cc-dd574ee8ee11" + ] + }, + "include_sources": true, + "messages": [ + { + "content": "How do you fry an egg?", + "role": "user" + } + ], + "stream": false, + "system_prompt": "You are a rapper. Always answer with a rap.", + "use_context": true + } + ] + }, + "Chunk": { + "properties": { + "object": { + "const": "context.chunk", + "title": "Object" + }, + "score": { + "type": "number", + "title": "Score", + "examples": [ + 0.023 + ] + }, + "document": { + "$ref": "#/components/schemas/IngestedDoc" + }, + "text": { + "type": "string", + "title": "Text", + "examples": [ + "Outbound sales increased 20%, driven by new leads." + ] + }, + "previous_texts": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Previous Texts", + "examples": [ + [ + "SALES REPORT 2023", + "Inbound didn't show major changes." + ] + ] + }, + "next_texts": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Next Texts", + "examples": [ + [ + "New leads came from Google Ads campaign.", + "The campaign was run by the Marketing Department" + ] + ] + } + }, + "type": "object", + "required": [ + "object", + "score", + "document", + "text" + ], + "title": "Chunk" + }, + "ChunksBody": { + "properties": { + "text": { + "type": "string", + "title": "Text", + "examples": [ + "Q3 2023 sales" + ] + }, + "context_filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/ContextFilter" + }, + { + "type": "null" + } + ] + }, + "limit": { + "type": "integer", + "title": "Limit", + "default": 10 + }, + "prev_next_chunks": { + "type": "integer", + "title": "Prev Next Chunks", + "default": 0, + "examples": [ + 2 + ] + } + }, + "type": "object", + "required": [ + "text" + ], + "title": "ChunksBody" + }, + "ChunksResponse": { + "properties": { + "object": { + "const": "list", + "title": "Object" + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "data": { + "items": { + "$ref": "#/components/schemas/Chunk" + }, + "type": "array", + "title": "Data" + } + }, + "type": "object", + "required": [ + "object", + "model", + "data" + ], + "title": "ChunksResponse" + }, + "CompletionsBody": { + "properties": { + "prompt": { + "type": "string", + "title": "Prompt" + }, + "system_prompt": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "System Prompt" + }, + "use_context": { + "type": "boolean", + "title": "Use Context", + "default": false + }, + "context_filter": { + "anyOf": [ + { + "$ref": "#/components/schemas/ContextFilter" + }, + { + "type": "null" + } + ] + }, + "include_sources": { + "type": "boolean", + "title": "Include Sources", + "default": true + }, + "stream": { + "type": "boolean", + "title": "Stream", + "default": false + } + }, + "type": "object", + "required": [ + "prompt" + ], + "title": "CompletionsBody", + "examples": [ + { + "include_sources": false, + "prompt": "How do you fry an egg?", + "stream": false, + "use_context": false + } + ] + }, + "ContextFilter": { + "properties": { + "docs_ids": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Docs Ids", + "examples": [ + [ + "c202d5e6-7b69-4869-81cc-dd574ee8ee11" + ] + ] + } + }, + "type": "object", + "required": [ + "docs_ids" + ], + "title": "ContextFilter" + }, + "Embedding": { + "properties": { + "index": { + "type": "integer", + "title": "Index" + }, + "object": { + "const": "embedding", + "title": "Object" + }, + "embedding": { + "items": { + "type": "number" + }, + "type": "array", + "title": "Embedding", + "examples": [ + [ + 0.0023064255, + -0.009327292 + ] + ] + } + }, + "type": "object", + "required": [ + "index", + "object", + "embedding" + ], + "title": "Embedding" + }, + "EmbeddingsBody": { + "properties": { + "input": { + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "title": "Input" + } + }, + "type": "object", + "required": [ + "input" + ], + "title": "EmbeddingsBody" + }, + "EmbeddingsResponse": { + "properties": { + "object": { + "const": "list", + "title": "Object" + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "data": { + "items": { + "$ref": "#/components/schemas/Embedding" + }, + "type": "array", + "title": "Data" + } + }, + "type": "object", + "required": [ + "object", + "model", + "data" + ], + "title": "EmbeddingsResponse" + }, + "HTTPValidationError": { + "properties": { + "detail": { + "items": { + "$ref": "#/components/schemas/ValidationError" + }, + "type": "array", + "title": "Detail" + } + }, + "type": "object", + "title": "HTTPValidationError" + }, + "HealthResponse": { + "properties": { + "status": { + "const": "ok", + "title": "Status", + "default": "ok" + } + }, + "type": "object", + "title": "HealthResponse" + }, + "IngestResponse": { + "properties": { + "object": { + "const": "list", + "title": "Object" + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "data": { + "items": { + "$ref": "#/components/schemas/IngestedDoc" + }, + "type": "array", + "title": "Data" + } + }, + "type": "object", + "required": [ + "object", + "model", + "data" + ], + "title": "IngestResponse" + }, + "IngestedDoc": { + "properties": { + "object": { + "const": "ingest.document", + "title": "Object" + }, + "doc_id": { + "type": "string", + "title": "Doc Id", + "examples": [ + "c202d5e6-7b69-4869-81cc-dd574ee8ee11" + ] + }, + "doc_metadata": { + "anyOf": [ + { + "type": "object" + }, + { + "type": "null" + } + ], + "title": "Doc Metadata", + "examples": [ + { + "file_name": "Sales Report Q3 2023.pdf", + "page_label": "2" + } + ] + } + }, + "type": "object", + "required": [ + "object", + "doc_id", + "doc_metadata" + ], + "title": "IngestedDoc" + }, + "OpenAIChoice": { + "properties": { + "finish_reason": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Finish Reason", + "examples": [ + "stop" + ] + }, + "delta": { + "anyOf": [ + { + "$ref": "#/components/schemas/OpenAIDelta" + }, + { + "type": "null" + } + ] + }, + "message": { + "anyOf": [ + { + "$ref": "#/components/schemas/OpenAIMessage" + }, + { + "type": "null" + } + ] + }, + "sources": { + "anyOf": [ + { + "items": { + "$ref": "#/components/schemas/Chunk" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "title": "Sources" + }, + "index": { + "type": "integer", + "title": "Index", + "default": 0 + } + }, + "type": "object", + "required": [ + "finish_reason" + ], + "title": "OpenAIChoice", + "description": "Response from AI.\n\nEither the delta or the message will be present, but never both.\nSources used will be returned in case context retrieval was enabled." + }, + "OpenAICompletion": { + "properties": { + "id": { + "type": "string", + "title": "Id" + }, + "object": { + "type": "string", + "enum": [ + "completion", + "completion.chunk" + ], + "title": "Object", + "default": "completion" + }, + "created": { + "type": "integer", + "title": "Created", + "examples": [ + 1623340000 + ] + }, + "model": { + "const": "private-gpt", + "title": "Model" + }, + "choices": { + "items": { + "$ref": "#/components/schemas/OpenAIChoice" + }, + "type": "array", + "title": "Choices" + } + }, + "type": "object", + "required": [ + "id", + "created", + "model", + "choices" + ], + "title": "OpenAICompletion", + "description": "Clone of OpenAI Completion model.\n\nFor more information see: https://platform.openai.com/docs/api-reference/chat/object" + }, + "OpenAIDelta": { + "properties": { + "content": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Content" + } + }, + "type": "object", + "required": [ + "content" + ], + "title": "OpenAIDelta", + "description": "A piece of completion that needs to be concatenated to get the full message." + }, + "OpenAIMessage": { + "properties": { + "role": { + "type": "string", + "enum": [ + "assistant", + "system", + "user" + ], + "title": "Role", + "default": "user" + }, + "content": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Content" + } + }, + "type": "object", + "required": [ + "content" + ], + "title": "OpenAIMessage", + "description": "Inference result, with the source of the message.\n\nRole could be the assistant or system\n(providing a default response, not AI generated)." + }, + "ValidationError": { + "properties": { + "loc": { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "type": "array", + "title": "Location" + }, + "msg": { + "type": "string", + "title": "Message" + }, + "type": { + "type": "string", + "title": "Error Type" + } + }, + "type": "object", + "required": [ + "loc", + "msg", + "type" + ], + "title": "ValidationError" + } + } + }, + "tags": [ + { + "name": "Ingestion", + "description": "High-level APIs covering document ingestion -internally managing document parsing, splitting,metadata extraction, embedding generation and storage- and ingested documents CRUD.Each ingested document is identified by an ID that can be used to filter the contextused in *Contextual Completions* and *Context Chunks* APIs." + }, + { + "name": "Contextual Completions", + "description": "High-level APIs covering contextual Chat and Completions. They follow OpenAI's format, extending it to allow using the context coming from ingested documents to create the response. Internallymanage context retrieval, prompt engineering and the response generation." + }, + { + "name": "Context Chunks", + "description": "Low-level API that given a query return relevant chunks of text coming from the ingesteddocuments." + }, + { + "name": "Embeddings", + "description": "Low-level API to obtain the vector representation of a given text, using an Embeddings model.Follows OpenAI's embeddings API format." + }, + { + "name": "Health", + "description": "Simple health API to make sure the server is up and running." + } + ] +} \ No newline at end of file diff --git a/local_data/.gitignore b/local_data/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..c96a04f008ee21e260b28f7701595ed59e2839e3 --- /dev/null +++ b/local_data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/local_data/private_gpt/docstore.json b/local_data/private_gpt/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..6cffadf88e83a23f301acf0e96be0e0e70ff7582 --- /dev/null +++ b/local_data/private_gpt/docstore.json @@ -0,0 +1 @@ +{"docstore/data": {"4aa647b2-2bcd-42d1-9f75-003fb6d00a68": {"__data__": {"id_": "4aa647b2-2bcd-42d1-9f75-003fb6d00a68", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n", "original_text": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9bf097dd-1a34-46ef-9b61-aad8eb7eb232", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "original_text": "You can enjoy the Faysal Bank ATM services . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "270abbafd7e5a63bcc67f07b1749fc82a2588948e2cb00ed098957ccf7b69f0e", "class_name": "RelatedNodeInfo"}}, "hash": "397bed1f9ef99038bae4f49c37df32763faa9c6a49e2be37688c15086f8027ca", "text": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9bf097dd-1a34-46ef-9b61-aad8eb7eb232": {"__data__": {"id_": "9bf097dd-1a34-46ef-9b61-aad8eb7eb232", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "original_text": "You can enjoy the Faysal Bank ATM services . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4aa647b2-2bcd-42d1-9f75-003fb6d00a68", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n", "original_text": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "397bed1f9ef99038bae4f49c37df32763faa9c6a49e2be37688c15086f8027ca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8b610fd6-7e61-427d-b0fe-7c3bf852962d", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n", "original_text": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "6847305a1385e2d520267d2de5850824f23b4c03d4ee79d50e249f7a2dc45ee2", "class_name": "RelatedNodeInfo"}}, "hash": "270abbafd7e5a63bcc67f07b1749fc82a2588948e2cb00ed098957ccf7b69f0e", "text": "You can enjoy the Faysal Bank ATM services . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b610fd6-7e61-427d-b0fe-7c3bf852962d": {"__data__": {"id_": "8b610fd6-7e61-427d-b0fe-7c3bf852962d", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n", "original_text": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9bf097dd-1a34-46ef-9b61-aad8eb7eb232", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "original_text": "You can enjoy the Faysal Bank ATM services . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "270abbafd7e5a63bcc67f07b1749fc82a2588948e2cb00ed098957ccf7b69f0e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b088df32-24ae-4de7-94fb-93e6b66c6033", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n", "original_text": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "efc68b2ef7303930a03601692e7d0648d97e3442996c74c95ee19c526eef1055", "class_name": "RelatedNodeInfo"}}, "hash": "6847305a1385e2d520267d2de5850824f23b4c03d4ee79d50e249f7a2dc45ee2", "text": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b088df32-24ae-4de7-94fb-93e6b66c6033": {"__data__": {"id_": "b088df32-24ae-4de7-94fb-93e6b66c6033", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n", "original_text": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8b610fd6-7e61-427d-b0fe-7c3bf852962d", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n", "original_text": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "6847305a1385e2d520267d2de5850824f23b4c03d4ee79d50e249f7a2dc45ee2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9ed279dc-e305-4d87-887e-3bdadd545cb9", "node_type": "1", "metadata": {"window": "You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "original_text": "\uf0a7 Improved customer service, as lines in banks decrease . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "05af54a03c62bed14b115b2c80d63e5a854de1953be5174c5e644d261716fc81", "class_name": "RelatedNodeInfo"}}, "hash": "efc68b2ef7303930a03601692e7d0648d97e3442996c74c95ee19c526eef1055", "text": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9ed279dc-e305-4d87-887e-3bdadd545cb9": {"__data__": {"id_": "9ed279dc-e305-4d87-887e-3bdadd545cb9", "embedding": null, "metadata": {"window": "You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "original_text": "\uf0a7 Improved customer service, as lines in banks decrease . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b088df32-24ae-4de7-94fb-93e6b66c6033", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nAutomated Teller Machines \n \nSALES PITCH \nWith the network of more than 560 ATMs, Faysal Bank offers simple and convenient access to your bank \naccounts around the clock. You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n", "original_text": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "efc68b2ef7303930a03601692e7d0648d97e3442996c74c95ee19c526eef1055", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d4b2b46e-2bb9-4ab4-b573-73838af88192", "node_type": "1", "metadata": {"window": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "original_text": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "4eb4b7607d947440db20b289e3ca2f8f5d86ec86bc241e3e4b0c7f54436876ae", "class_name": "RelatedNodeInfo"}}, "hash": "05af54a03c62bed14b115b2c80d63e5a854de1953be5174c5e644d261716fc81", "text": "\uf0a7 Improved customer service, as lines in banks decrease . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d4b2b46e-2bb9-4ab4-b573-73838af88192": {"__data__": {"id_": "d4b2b46e-2bb9-4ab4-b573-73838af88192", "embedding": null, "metadata": {"window": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "original_text": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9ed279dc-e305-4d87-887e-3bdadd545cb9", "node_type": "1", "metadata": {"window": "You can enjoy the Faysal Bank ATM services . \n ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "original_text": "\uf0a7 Improved customer service, as lines in banks decrease . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "05af54a03c62bed14b115b2c80d63e5a854de1953be5174c5e644d261716fc81", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "832ebd8c-769d-466b-ab60-cd790f8e3550", "node_type": "1", "metadata": {"window": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "original_text": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "430432c35e2c01d3981507757396893e299ac3d1bdf169ab68ab993356005f0d", "class_name": "RelatedNodeInfo"}}, "hash": "4eb4b7607d947440db20b289e3ca2f8f5d86ec86bc241e3e4b0c7f54436876ae", "text": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "832ebd8c-769d-466b-ab60-cd790f8e3550": {"__data__": {"id_": "832ebd8c-769d-466b-ab60-cd790f8e3550", "embedding": null, "metadata": {"window": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "original_text": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d4b2b46e-2bb9-4ab4-b573-73838af88192", "node_type": "1", "metadata": {"window": "ELIGIBILITY / TARGET MARKET \nAll FBL CASA, FFC (Faysal Flexi Credit) and PIL ( Personal Installment Loan) account holders \n \nFAYSAL BANK ATMs can be used to: \nSALIENT FEATURES / BENEFITS \n \n\uf0a7 The ability to access one's account 24/7 at multiple locations . \n \uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "original_text": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "4eb4b7607d947440db20b289e3ca2f8f5d86ec86bc241e3e4b0c7f54436876ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2718b9a4-e30f-4e4d-b096-ebdf9efc6f30", "node_type": "1", "metadata": {"window": "\uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "original_text": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "38dd0bf869d9db578cd9d01bc54d99558b438dc80417d2a12aa361e697a5797e", "class_name": "RelatedNodeInfo"}}, "hash": "430432c35e2c01d3981507757396893e299ac3d1bdf169ab68ab993356005f0d", "text": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2718b9a4-e30f-4e4d-b096-ebdf9efc6f30": {"__data__": {"id_": "2718b9a4-e30f-4e4d-b096-ebdf9efc6f30", "embedding": null, "metadata": {"window": "\uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "original_text": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "832ebd8c-769d-466b-ab60-cd790f8e3550", "node_type": "1", "metadata": {"window": "\uf0a7 The ease of carrying a slim card as opposed to a wad of cash . \n \uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "original_text": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "430432c35e2c01d3981507757396893e299ac3d1bdf169ab68ab993356005f0d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549", "node_type": "1", "metadata": {"window": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "original_text": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "1e841f56ff11ad1e24a99a4bce4711e1bbf6b94766ae9cff46494839217ac35e", "class_name": "RelatedNodeInfo"}}, "hash": "38dd0bf869d9db578cd9d01bc54d99558b438dc80417d2a12aa361e697a5797e", "text": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549": {"__data__": {"id_": "b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549", "embedding": null, "metadata": {"window": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "original_text": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2718b9a4-e30f-4e4d-b096-ebdf9efc6f30", "node_type": "1", "metadata": {"window": "\uf0a7 Improved customer service, as lines in banks decrease . \n \uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "original_text": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "38dd0bf869d9db578cd9d01bc54d99558b438dc80417d2a12aa361e697a5797e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "875c7c03-52f2-4eb6-9b74-e2fcf954c042", "node_type": "1", "metadata": {"window": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "original_text": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "a08eb3a8a1eae7bca6bf85e09d41cbe93fd3d33ad8229968fee3886cd01ee729", "class_name": "RelatedNodeInfo"}}, "hash": "1e841f56ff11ad1e24a99a4bce4711e1bbf6b94766ae9cff46494839217ac35e", "text": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "875c7c03-52f2-4eb6-9b74-e2fcf954c042": {"__data__": {"id_": "875c7c03-52f2-4eb6-9b74-e2fcf954c042", "embedding": null, "metadata": {"window": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "original_text": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549", "node_type": "1", "metadata": {"window": "\uf0a7 Lowered costs, as fewer human tellers are needed . \n \uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "original_text": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "1e841f56ff11ad1e24a99a4bce4711e1bbf6b94766ae9cff46494839217ac35e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "76f31973-ae09-464e-b789-d664a7b74bac", "node_type": "1", "metadata": {"window": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "original_text": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "400413bbf391bcff8b72b42ef812a1595b47e8db47797300e64d8c75b7f17ed8", "class_name": "RelatedNodeInfo"}}, "hash": "a08eb3a8a1eae7bca6bf85e09d41cbe93fd3d33ad8229968fee3886cd01ee729", "text": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "76f31973-ae09-464e-b789-d664a7b74bac": {"__data__": {"id_": "76f31973-ae09-464e-b789-d664a7b74bac", "embedding": null, "metadata": {"window": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "original_text": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "875c7c03-52f2-4eb6-9b74-e2fcf954c042", "node_type": "1", "metadata": {"window": "\uf0a7 More security when compared to cash; if an ATM card is reported as stolen, the thief will not be \nable to withdraw any cash . \n Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "original_text": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "a08eb3a8a1eae7bca6bf85e09d41cbe93fd3d33ad8229968fee3886cd01ee729", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "74b0560a-29cf-42a6-86c0-55ddb56d5e9c", "node_type": "1", "metadata": {"window": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n", "original_text": "Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "6032ace395bf66e81dd45d7fff673736c59ea569f5eac5aca2f6595372662ccb", "class_name": "RelatedNodeInfo"}}, "hash": "400413bbf391bcff8b72b42ef812a1595b47e8db47797300e64d8c75b7f17ed8", "text": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "74b0560a-29cf-42a6-86c0-55ddb56d5e9c": {"__data__": {"id_": "74b0560a-29cf-42a6-86c0-55ddb56d5e9c", "embedding": null, "metadata": {"window": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n", "original_text": "Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "76f31973-ae09-464e-b789-d664a7b74bac", "node_type": "1", "metadata": {"window": "Access your Cash 24 hours - You can withdraw Cash from any of your linked accounts * and receive a \nconfirmation receipt of your transaction. \n Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "original_text": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "400413bbf391bcff8b72b42ef812a1595b47e8db47797300e64d8c75b7f17ed8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4828767f-396a-4ae7-a317-5be800ad8cee", "node_type": "1", "metadata": {"window": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "f99f6c30afe6313e8b7ec993891ba457aff589333cc85d8f4fbfc0f1438c931d", "class_name": "RelatedNodeInfo"}}, "hash": "6032ace395bf66e81dd45d7fff673736c59ea569f5eac5aca2f6595372662ccb", "text": "Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4828767f-396a-4ae7-a317-5be800ad8cee": {"__data__": {"id_": "4828767f-396a-4ae7-a317-5be800ad8cee", "embedding": null, "metadata": {"window": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "74b0560a-29cf-42a6-86c0-55ddb56d5e9c", "node_type": "1", "metadata": {"window": "Funds Transfer \n\uf0b7 Funds transfer between your accounts with in Faysal Bank. \n \uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n", "original_text": "Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "6032ace395bf66e81dd45d7fff673736c59ea569f5eac5aca2f6595372662ccb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "26a37355-9073-432a-8325-d3733769e4f1", "node_type": "1", "metadata": {"window": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "* Maximum 10 accounts can be linked with your Debit Card. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "4b4769c2be01465d4d7a5af57f8cfc0fb3e0924e75bd66f23c8cba94ae67ffe7", "class_name": "RelatedNodeInfo"}}, "hash": "f99f6c30afe6313e8b7ec993891ba457aff589333cc85d8f4fbfc0f1438c931d", "text": "Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "26a37355-9073-432a-8325-d3733769e4f1": {"__data__": {"id_": "26a37355-9073-432a-8325-d3733769e4f1", "embedding": null, "metadata": {"window": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "* Maximum 10 accounts can be linked with your Debit Card. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4828767f-396a-4ae7-a317-5be800ad8cee", "node_type": "1", "metadata": {"window": "\uf0b7 Funds transfer from one account to another account in any 1 Link members Bank. \n \uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "f99f6c30afe6313e8b7ec993891ba457aff589333cc85d8f4fbfc0f1438c931d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc737f1d-a3f6-49f0-aff8-0b83215e4d03", "node_type": "1", "metadata": {"window": "Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "** Currently Cash deposit option is available at selected ATMs . ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "1fddc19ec3c267e9a2b3884d8e018b281ed51f706541d2d2287ede023b05b79a", "class_name": "RelatedNodeInfo"}}, "hash": "4b4769c2be01465d4d7a5af57f8cfc0fb3e0924e75bd66f23c8cba94ae67ffe7", "text": "* Maximum 10 accounts can be linked with your Debit Card. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc737f1d-a3f6-49f0-aff8-0b83215e4d03": {"__data__": {"id_": "bc737f1d-a3f6-49f0-aff8-0b83215e4d03", "embedding": null, "metadata": {"window": "Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "** Currently Cash deposit option is available at selected ATMs . ", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a5afa212-fb26-4956-8698-2369aee5db8f", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "26a37355-9073-432a-8325-d3733769e4f1", "node_type": "1", "metadata": {"window": "\uf0b7 Daily funds transfer limit is PKR 250,000/ - \nPay Utility Bills and get airtime \u2013 You can Pay your utility bills (SSGC, SNGPL, KE & LESCO) and also buy \nairtime of your respective network (JAZZ , MOBILINK, ZONG, UFONE & TELENOR) \nInquiry Balance and Transaction detail \u2013 You can receive acco unt balances and mini statement \ncontaining last 6 \u2013 8 transactions of your bank account \nPIN Change \u2013 You can conveniently change your PIN whenever you want. Your Faysal Bank Debit Card \nATM Pin can now be changed on all Faysal Bank ATM network across Pakistan. \n Deposit Cash ** \u2013 You can deposit cash into your account 24\u00d77 and receive a confirmation receipt of \nyour deposit transaction. \n * Maximum 10 accounts can be linked with your Debit Card. \n ** Currently Cash deposit option is available at selected ATMs . ", "original_text": "* Maximum 10 accounts can be linked with your Debit Card. \n", "page_label": "1", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "hash": "4b4769c2be01465d4d7a5af57f8cfc0fb3e0924e75bd66f23c8cba94ae67ffe7", "class_name": "RelatedNodeInfo"}}, "hash": "1fddc19ec3c267e9a2b3884d8e018b281ed51f706541d2d2287ede023b05b79a", "text": "** Currently Cash deposit option is available at selected ATMs . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c308184-183c-4c74-abd2-1a872e1a5983": {"__data__": {"id_": "2c308184-183c-4c74-abd2-1a872e1a5983", "embedding": null, "metadata": {"window": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "original_text": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. ", "page_label": "2", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "hash": "da15638c94622e518f22f2143d216942b8c7b93471b2b7e0afbe81e08f703fcd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1ecbacfc-e440-40f6-8b7c-58e7f4430263", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "original_text": "OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "page_label": "2", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "hash": "be62596489198557a2617e81646ede59e2c838a5042185b2bf364eca8a689bb8", "class_name": "RelatedNodeInfo"}}, "hash": "bd053b610c7c4857f89584f5efe74bc34bb8ab9642bb7c51f59258de934a7b92", "text": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1ecbacfc-e440-40f6-8b7c-58e7f4430263": {"__data__": {"id_": "1ecbacfc-e440-40f6-8b7c-58e7f4430263", "embedding": null, "metadata": {"window": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "original_text": "OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "page_label": "2", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "hash": "da15638c94622e518f22f2143d216942b8c7b93471b2b7e0afbe81e08f703fcd", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c308184-183c-4c74-abd2-1a872e1a5983", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "original_text": " \nPage 2 of 2 \n \n \nBILLERS AVAILABLE OVER FAYSAL BANK ATMs \n \n1BILL INVOICE FBR/PRAL LUMS SHAHEEN AIR \n1BILL -TOPUP FINJA MCB ARIFHABIB SINDH REVENUE BOARD \n1LOAD FOREE PAY MEPCO SNGPL \nABL ASSET MANAGEMENT FWASA MOBILINK SSGC \nAL MEEZAN INVESTMENT GEPCO NATIONAL INVESTMENT TRUST SWWF \nASKARI INVESTMENT HABALL NAYAPAY TELENOR \nBOPAGR -PESSI HESCO NAYATEL THK/PAYPRO \nBSS HWASA OPTIX TRANSWORLD \nCAREEM IBA PAKQATAR FAMILY TAKAFUL RENEWAL UBL FUND \nCDC INDUS MOTOR COMPANY PAKQATAR FAMILY TAKAFUL TOPUP UFONE \nDAEWOO JAZZCASH PAKQATAR GENERAL TAKAFUL UFONE SUPER CARD GOLD \nDARAZ JLI PESCO WARID \nDHA ISB RWP KE NEW CONNECTION PTCL WATEEN \nDP WORLD KESC PUNJAB GROUP OF COLLEGES WITRIBE \nEFU KUICKPAY QUBEE WORLD CALL \nENGRO KWSB SECP ZONG \nEXCISE & TAXATION LESCO SEPCO GOVT. ", "page_label": "2", "file_name": "Automated Teller Machines ATM.pdf", "doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "hash": "bd053b610c7c4857f89584f5efe74bc34bb8ab9642bb7c51f59258de934a7b92", "class_name": "RelatedNodeInfo"}}, "hash": "be62596489198557a2617e81646ede59e2c838a5042185b2bf364eca8a689bb8", "text": "OF PUNJAB \n \nDEBIT CARD ACTIVATION VIA ATMs \n\uf0b7 Customer will request OTP (One Time PIN) by sending SMS to 9181 from registered number : \nDC \n\uf0b7 An OTP will be sent to customer after verification of mobile number, CNIC and Debit Card \n\uf0b7 Next, customer will visit FBL ATM , Inserts his Debit Card in ATM, ATM machine will identify the \ncard and will ask the c ustomer to enter OTP \n\uf0b7 After OTP validation , ATM will take customer to the new screen to set new ATM / POS PIN \n\uf0b7 FBL will send onscreen message for Activation confirmation after successful ATM/POS PIN \ncreation \n \nNote: For detailed Terms & Conditions, visit below provided links \nhttps://www.faysalbank.com/en/personal/daily -banking/e -banking/atm -services/ \nhttps://www.faysalbank.com/wp -content/uploads/2019/03/Conventional -CRF-TC.pdf \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact Person Email ID Contact Number / IP \nATM Jagdish Pandit JagdishLal@faysalbank.com 32795 275 \n \nFor Charges, kindly refer to the latest Schedule of Charges at the following link: \nhttps://www.faysalbank.com/en/schedule -of-charges -conventional/ ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a84958e5-bbca-40de-bade-ad5d11320792": {"__data__": {"id_": "a84958e5-bbca-40de-bade-ad5d11320792", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n", "original_text": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b7b5f86c-8904-4d52-b024-5c04c86780d2", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "original_text": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "a46df4b7a745a3b685d6f5ccab600a16e53541d18df66855822b25050607529b", "class_name": "RelatedNodeInfo"}}, "hash": "c25e0bc9539163dbda39242e9a31c9aa35a78f8a024247eb881d19df4ae6d06b", "text": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b7b5f86c-8904-4d52-b024-5c04c86780d2": {"__data__": {"id_": "b7b5f86c-8904-4d52-b024-5c04c86780d2", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "original_text": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a84958e5-bbca-40de-bade-ad5d11320792", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n", "original_text": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c25e0bc9539163dbda39242e9a31c9aa35a78f8a024247eb881d19df4ae6d06b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "13494a4c-0324-4416-b03a-337a7dc1c76b", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "original_text": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "92b1618749bdf44d77ac1cdb2c2b664dc030c3ab5b3aa8f0638817a6339cbdda", "class_name": "RelatedNodeInfo"}}, "hash": "a46df4b7a745a3b685d6f5ccab600a16e53541d18df66855822b25050607529b", "text": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "13494a4c-0324-4416-b03a-337a7dc1c76b": {"__data__": {"id_": "13494a4c-0324-4416-b03a-337a7dc1c76b", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "original_text": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7b5f86c-8904-4d52-b024-5c04c86780d2", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "original_text": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "a46df4b7a745a3b685d6f5ccab600a16e53541d18df66855822b25050607529b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2740ef47-e9c7-4a5c-b6ce-dfb7e239f274", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "original_text": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "41bba171831465e1fad5323042201588768017e987aed955a1333639e9e118cf", "class_name": "RelatedNodeInfo"}}, "hash": "92b1618749bdf44d77ac1cdb2c2b664dc030c3ab5b3aa8f0638817a6339cbdda", "text": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2740ef47-e9c7-4a5c-b6ce-dfb7e239f274": {"__data__": {"id_": "2740ef47-e9c7-4a5c-b6ce-dfb7e239f274", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "original_text": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "13494a4c-0324-4416-b03a-337a7dc1c76b", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "original_text": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "92b1618749bdf44d77ac1cdb2c2b664dc030c3ab5b3aa8f0638817a6339cbdda", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f9afaaa7-0487-4426-9f43-3c002db815b4", "node_type": "1", "metadata": {"window": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "original_text": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "da0156b40f1607c6c0fa75934f4cc163de78c8e05e789600d027a7f3b7b799fb", "class_name": "RelatedNodeInfo"}}, "hash": "41bba171831465e1fad5323042201588768017e987aed955a1333639e9e118cf", "text": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f9afaaa7-0487-4426-9f43-3c002db815b4": {"__data__": {"id_": "f9afaaa7-0487-4426-9f43-3c002db815b4", "embedding": null, "metadata": {"window": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "original_text": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2740ef47-e9c7-4a5c-b6ce-dfb7e239f274", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nProduct, Product, FAQs, Posible Questions, Suggetion, Response\nBranch Banking Products, Conversion to Islamic Product, Was Faysal Bank Limited always an Islamic Bank?, from how long FBL is converted to islamic banking,, Faysal Bank journey of islamic banking., Faysal Bank Limited started its operations in Pakistan in 1987, first as a branch set-up of Faysal Islamic Bank of Bahrain and then on October 03,1994 it became a locally incorporated Pakistani Conventional bank, under the present name of Faysal Bank Limited. In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "original_text": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "41bba171831465e1fad5323042201588768017e987aed955a1333639e9e118cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "88a97d57-ef95-413a-acfc-6b167a994455", "node_type": "1", "metadata": {"window": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "original_text": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "2c6bcbf1453ad3795696283242ae7f2e80650d5b7be037bb91839de05a2b42b6", "class_name": "RelatedNodeInfo"}}, "hash": "da0156b40f1607c6c0fa75934f4cc163de78c8e05e789600d027a7f3b7b799fb", "text": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "88a97d57-ef95-413a-acfc-6b167a994455": {"__data__": {"id_": "88a97d57-ef95-413a-acfc-6b167a994455", "embedding": null, "metadata": {"window": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "original_text": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f9afaaa7-0487-4426-9f43-3c002db815b4", "node_type": "1", "metadata": {"window": "In August 2009, Faysal Bank Limited launched its first dedicated Islamic branch again, in accordance with State Bank of Pakistan\u2019s regulation. Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "original_text": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "da0156b40f1607c6c0fa75934f4cc163de78c8e05e789600d027a7f3b7b799fb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dcbddcca-91d1-48bf-8b3f-b414db2fdfea", "node_type": "1", "metadata": {"window": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "original_text": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "ea07e80fc0238c7becead2eb65d1687b18c00d356cf3ede08192181209f14c2d", "class_name": "RelatedNodeInfo"}}, "hash": "2c6bcbf1453ad3795696283242ae7f2e80650d5b7be037bb91839de05a2b42b6", "text": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dcbddcca-91d1-48bf-8b3f-b414db2fdfea": {"__data__": {"id_": "dcbddcca-91d1-48bf-8b3f-b414db2fdfea", "embedding": null, "metadata": {"window": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "original_text": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "88a97d57-ef95-413a-acfc-6b167a994455", "node_type": "1", "metadata": {"window": "Early in 2014, transformation of Faysal Bank Limited to an Islamic Bank was announced.\n Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "original_text": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "2c6bcbf1453ad3795696283242ae7f2e80650d5b7be037bb91839de05a2b42b6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "07cd0333-976f-4256-805e-68442c8896f3", "node_type": "1", "metadata": {"window": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "original_text": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "487a19ad2f3dd0fcb8b8335b548465d1040bb6b1c49234a31d640d1a1d24b6a4", "class_name": "RelatedNodeInfo"}}, "hash": "ea07e80fc0238c7becead2eb65d1687b18c00d356cf3ede08192181209f14c2d", "text": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "07cd0333-976f-4256-805e-68442c8896f3": {"__data__": {"id_": "07cd0333-976f-4256-805e-68442c8896f3", "embedding": null, "metadata": {"window": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "original_text": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dcbddcca-91d1-48bf-8b3f-b414db2fdfea", "node_type": "1", "metadata": {"window": "Branch Banking Products, Conversion to Islamic Product, What is Faysal Islamic Banking?, nan, Faysal Islamic Banking, Faysal Islamic Banking is a division of Faysal Bank Limited which is offering Islamic banking solution through dedicated branches under the State Bank of Pakistan\u2019s Policies for the promotion of Islamic Banking.\n Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "original_text": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "ea07e80fc0238c7becead2eb65d1687b18c00d356cf3ede08192181209f14c2d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "26763fc3-940a-45fe-80eb-2d6911758da9", "node_type": "1", "metadata": {"window": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "original_text": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "6d4250e92e889493489d583883af2b466d640294cb1bb1017913a081515a00c5", "class_name": "RelatedNodeInfo"}}, "hash": "487a19ad2f3dd0fcb8b8335b548465d1040bb6b1c49234a31d640d1a1d24b6a4", "text": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "26763fc3-940a-45fe-80eb-2d6911758da9": {"__data__": {"id_": "26763fc3-940a-45fe-80eb-2d6911758da9", "embedding": null, "metadata": {"window": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "original_text": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "07cd0333-976f-4256-805e-68442c8896f3", "node_type": "1", "metadata": {"window": "Branch Banking Products, Conversion to Islamic Product, What is the philosophy of Islamic banking and finance?, nan, philosophy of Islamic banking and finance., \u00a0Islamic Shariah prohibits \u2018interest\u2019 but it does not prohibit all type of gains on capital. It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "original_text": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "487a19ad2f3dd0fcb8b8335b548465d1040bb6b1c49234a31d640d1a1d24b6a4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c540b737-2679-4aaa-a801-621ca99869fd", "node_type": "1", "metadata": {"window": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "original_text": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "412a7af607a18f82dc62584ae4863861b9d588c124ddf6730e34dd500d4b4e4b", "class_name": "RelatedNodeInfo"}}, "hash": "6d4250e92e889493489d583883af2b466d640294cb1bb1017913a081515a00c5", "text": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c540b737-2679-4aaa-a801-621ca99869fd": {"__data__": {"id_": "c540b737-2679-4aaa-a801-621ca99869fd", "embedding": null, "metadata": {"window": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "original_text": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "26763fc3-940a-45fe-80eb-2d6911758da9", "node_type": "1", "metadata": {"window": "It is only the increase stipulated or sought over the principal of a loan or debt that is prohibited. Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "original_text": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "6d4250e92e889493489d583883af2b466d640294cb1bb1017913a081515a00c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65506434-743b-4efe-a798-570d825d90e5", "node_type": "1", "metadata": {"window": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "original_text": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "dba7d439c103ced2b2838e02fc9def4cd0a5000d62c18d92f1830cd5188fc4fc", "class_name": "RelatedNodeInfo"}}, "hash": "412a7af607a18f82dc62584ae4863861b9d588c124ddf6730e34dd500d4b4e4b", "text": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65506434-743b-4efe-a798-570d825d90e5": {"__data__": {"id_": "65506434-743b-4efe-a798-570d825d90e5", "embedding": null, "metadata": {"window": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "original_text": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c540b737-2679-4aaa-a801-621ca99869fd", "node_type": "1", "metadata": {"window": "Islamic principles simply require that performance of capital should also be considered while rewarding the capital. The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "original_text": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "412a7af607a18f82dc62584ae4863861b9d588c124ddf6730e34dd500d4b4e4b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c9b6a28-397f-4def-a2ef-1914363194d1", "node_type": "1", "metadata": {"window": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "original_text": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "151c5282952519d5f3e1b48cbf8bcd5f445f5e96973d50ac6a7a487988313776", "class_name": "RelatedNodeInfo"}}, "hash": "dba7d439c103ced2b2838e02fc9def4cd0a5000d62c18d92f1830cd5188fc4fc", "text": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c9b6a28-397f-4def-a2ef-1914363194d1": {"__data__": {"id_": "2c9b6a28-397f-4def-a2ef-1914363194d1", "embedding": null, "metadata": {"window": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "original_text": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65506434-743b-4efe-a798-570d825d90e5", "node_type": "1", "metadata": {"window": "The prohibition of a risk-free return and permission of trading, as enshrined in the Verse 2:275 of the Holy Quran, makes the financial activities in an Islamic set-up real asset-backed with ability to cause \u2018value addition\u2019. Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "original_text": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "dba7d439c103ced2b2838e02fc9def4cd0a5000d62c18d92f1830cd5188fc4fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9578196c-027d-4d45-9671-7aefcd321d26", "node_type": "1", "metadata": {"window": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "original_text": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c289a52ed7bdb773fc0dff2013acbe287d9c9f49af9149e1c0965e70cee83778", "class_name": "RelatedNodeInfo"}}, "hash": "151c5282952519d5f3e1b48cbf8bcd5f445f5e96973d50ac6a7a487988313776", "text": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9578196c-027d-4d45-9671-7aefcd321d26": {"__data__": {"id_": "9578196c-027d-4d45-9671-7aefcd321d26", "embedding": null, "metadata": {"window": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "original_text": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c9b6a28-397f-4def-a2ef-1914363194d1", "node_type": "1", "metadata": {"window": "Islamic banking system is based on risk-sharing, owning and handling of physical goods, involvement in the process of trading, leasing and construction contracts using various Islamic modes of finance. As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "original_text": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "151c5282952519d5f3e1b48cbf8bcd5f445f5e96973d50ac6a7a487988313776", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7495270a-b0a9-4bab-96f3-da7e66e1b8f3", "node_type": "1", "metadata": {"window": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "original_text": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "32afae6468a2263ccab722af0c5e2eeb96d1e54320085b3290af2b5cd9ff4399", "class_name": "RelatedNodeInfo"}}, "hash": "c289a52ed7bdb773fc0dff2013acbe287d9c9f49af9149e1c0965e70cee83778", "text": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7495270a-b0a9-4bab-96f3-da7e66e1b8f3": {"__data__": {"id_": "7495270a-b0a9-4bab-96f3-da7e66e1b8f3", "embedding": null, "metadata": {"window": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "original_text": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9578196c-027d-4d45-9671-7aefcd321d26", "node_type": "1", "metadata": {"window": "As such, Islamic banks trade and / or invest in assets / business deals for the purpose of income generation. Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "original_text": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c289a52ed7bdb773fc0dff2013acbe287d9c9f49af9149e1c0965e70cee83778", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "20d2318b-b9ab-41d0-9b97-64c6c3c26aa9", "node_type": "1", "metadata": {"window": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "original_text": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "4177a3d848484c0ec70d5452cd5a52001f474e4474719db62da4e4bff8e79795", "class_name": "RelatedNodeInfo"}}, "hash": "32afae6468a2263ccab722af0c5e2eeb96d1e54320085b3290af2b5cd9ff4399", "text": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "20d2318b-b9ab-41d0-9b97-64c6c3c26aa9": {"__data__": {"id_": "20d2318b-b9ab-41d0-9b97-64c6c3c26aa9", "embedding": null, "metadata": {"window": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "original_text": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7495270a-b0a9-4bab-96f3-da7e66e1b8f3", "node_type": "1", "metadata": {"window": "Profit has been recognized as \u2018reward\u2019 for (use of) capital and Islam permits gainful deployment of surplus resources for enhancement of their value. However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "original_text": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "32afae6468a2263ccab722af0c5e2eeb96d1e54320085b3290af2b5cd9ff4399", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "37b9db24-ddfa-423b-912a-ffc7fbe83847", "node_type": "1", "metadata": {"window": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "original_text": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "9726338d750fd913d77d8a0f2d1ba5e1efd73ce3f06ec6d1b34f7f887172c79c", "class_name": "RelatedNodeInfo"}}, "hash": "4177a3d848484c0ec70d5452cd5a52001f474e4474719db62da4e4bff8e79795", "text": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "37b9db24-ddfa-423b-912a-ffc7fbe83847": {"__data__": {"id_": "37b9db24-ddfa-423b-912a-ffc7fbe83847", "embedding": null, "metadata": {"window": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "original_text": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "20d2318b-b9ab-41d0-9b97-64c6c3c26aa9", "node_type": "1", "metadata": {"window": "However, along with the entitlement of profit, the liability of risk of loss on capital rests with the capital itself; no other factor can be made to bear the burden of the risk of loss. Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "original_text": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "4177a3d848484c0ec70d5452cd5a52001f474e4474719db62da4e4bff8e79795", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ecf9117d-66a4-443b-a571-02efd059827d", "node_type": "1", "metadata": {"window": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "original_text": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "bab40a98a81f66600acdebefc624aa28c675eaf721e2f4bb21c464e064ffbfbb", "class_name": "RelatedNodeInfo"}}, "hash": "9726338d750fd913d77d8a0f2d1ba5e1efd73ce3f06ec6d1b34f7f887172c79c", "text": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ecf9117d-66a4-443b-a571-02efd059827d": {"__data__": {"id_": "ecf9117d-66a4-443b-a571-02efd059827d", "embedding": null, "metadata": {"window": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "original_text": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "37b9db24-ddfa-423b-912a-ffc7fbe83847", "node_type": "1", "metadata": {"window": "Financial transactions, in order to be permissible, should be associated with goods, services or benefits. At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "original_text": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "9726338d750fd913d77d8a0f2d1ba5e1efd73ce3f06ec6d1b34f7f887172c79c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2a50f01a-b552-447a-b93f-c2a113e87bb0", "node_type": "1", "metadata": {"window": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. ", "original_text": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "ce79ea9b2d0993595e39f0b6a37594032ba6c43a1d42975c8aa0c855d7c2ce0b", "class_name": "RelatedNodeInfo"}}, "hash": "bab40a98a81f66600acdebefc624aa28c675eaf721e2f4bb21c464e064ffbfbb", "text": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2a50f01a-b552-447a-b93f-c2a113e87bb0": {"__data__": {"id_": "2a50f01a-b552-447a-b93f-c2a113e87bb0", "embedding": null, "metadata": {"window": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. ", "original_text": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ecf9117d-66a4-443b-a571-02efd059827d", "node_type": "1", "metadata": {"window": "At macro level, this feature of Islamic finance can be helpful in creating better discipline in conduct of fiscal and monetary policies.\n Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "original_text": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "bab40a98a81f66600acdebefc624aa28c675eaf721e2f4bb21c464e064ffbfbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0acf0dc1-f520-44bc-9dfe-b76af39c3667", "node_type": "1", "metadata": {"window": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "original_text": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "a61e33cccd80bc54a43f79da1e966b4177073511a79b2999272eea6ba05212c4", "class_name": "RelatedNodeInfo"}}, "hash": "ce79ea9b2d0993595e39f0b6a37594032ba6c43a1d42975c8aa0c855d7c2ce0b", "text": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0acf0dc1-f520-44bc-9dfe-b76af39c3667": {"__data__": {"id_": "0acf0dc1-f520-44bc-9dfe-b76af39c3667", "embedding": null, "metadata": {"window": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "original_text": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2a50f01a-b552-447a-b93f-c2a113e87bb0", "node_type": "1", "metadata": {"window": "Branch Banking Products, Faysal Islamic Current Account, What is initial deposit required for Islamic Asaan Current Account?, Deposit requirment for current account., Initial deposit requirement for Asaan Current Account., Rs.100 is required as an initial deposit for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, What is the monthly balance requirement on Islamic Asaan Current Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Current Account., There is no monthly balance requirement for Islamic Asaan Current Account\nBranch Banking Products, Faysal Islamic Current Account, On what Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Our Islamic Assan Current Account operates under Qard basis\nBranch Banking Products, Faysal Islamic Saving Account, What is initial deposit required for Islamic Asaan Saving Account?, Deposit requirment for Saving account., Initial deposit requirement for Asaan Saving Account., Rs.100 is required as an initial deposit for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, What is the monthly balance requirement on Islamic Asaan Saving Account?, monthly balance maintenance for Asaan Account, monthly balance maintenance for current Account., monthly balance requirement for Asaan Saving Account., There is no monthly balance requirement for Islamic Asaan Saving Account\nBranch Banking Products, Faysal Islamic Saving Account, On What Shariah Principle Barkat Saving Account based on?, Islamic Barkat Saving accounts are based on which Shariah Principle., Shariah Principle on Barkat Saving Account., Barkat Saving Account operates under Mudarabah basis\nBranch Banking Products, Faysal Islamic Rehmat Account, What type of account is Faysal Islami Rehmat Account?, nan, Type of Faysal Islami Rehmat Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Account, Who is this product for?, account with benefits., Faysal Islami Rehmat Account is for., Faysal Islamic Rehmat Account is for customers who are looking for best transactional account and added benefits\nBranch Banking Products, Faysal Islamic Rehmat Account, What is the criteria for donation to charity organizations?, Account for donation., criteria for donation to charity in Faysal Islamic Rehmat Account., Customer needs to maintain a quarterly average balance of PKR 500K. (PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. ", "original_text": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "ce79ea9b2d0993595e39f0b6a37594032ba6c43a1d42975c8aa0c855d7c2ce0b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "04377eda-8915-49f4-85ec-e06de2108bdc", "node_type": "1", "metadata": {"window": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "original_text": ", account with zero balance maintenance requirement. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "1de0fe67a9d92fbf3d12cffc7d98caadd594728ef49cb55b9699564bda637888", "class_name": "RelatedNodeInfo"}}, "hash": "a61e33cccd80bc54a43f79da1e966b4177073511a79b2999272eea6ba05212c4", "text": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "04377eda-8915-49f4-85ec-e06de2108bdc": {"__data__": {"id_": "04377eda-8915-49f4-85ec-e06de2108bdc", "embedding": null, "metadata": {"window": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "original_text": ", account with zero balance maintenance requirement. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0acf0dc1-f520-44bc-9dfe-b76af39c3667", "node_type": "1", "metadata": {"window": "(PKR 1250 for every PKR 500K)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What type of account is Faysal Islami Rehmat Business Account?, Type of Business Account., Type of Faysal Islamic Rehmat Business Account., A Remunerative Current Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nBranch Banking Products, Faysal Islamic Rehmat Business Account, Who is this product for?, account for large corporation., Faysal Islamic Rehmat Business Account for., Islamic Banking customers who are SMEs / Pvt Limited / Large Corporates / Trusts / Societies / Traders / Business Individuals\nBranch Banking Products, Faysal Islamic Rehmat Business Account, What are the USPs of this product?, USPs of Faysal Islamic Rehmat Business Account., USPs of Faysal Islamic Rehmat Business Account., This is a tier based benefits product (ranging from Basic> Plus> Premier) with various transactional waivers for each tier. In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "original_text": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "a61e33cccd80bc54a43f79da1e966b4177073511a79b2999272eea6ba05212c4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "23386198-87d1-4f74-9e19-d6c7a18fd1de", "node_type": "1", "metadata": {"window": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. ", "original_text": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "d404c120f36ff504396167035e3428e9d7b059eee05b4ae78b0d7cd18826e763", "class_name": "RelatedNodeInfo"}}, "hash": "1de0fe67a9d92fbf3d12cffc7d98caadd594728ef49cb55b9699564bda637888", "text": ", account with zero balance maintenance requirement. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23386198-87d1-4f74-9e19-d6c7a18fd1de": {"__data__": {"id_": "23386198-87d1-4f74-9e19-d6c7a18fd1de", "embedding": null, "metadata": {"window": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. ", "original_text": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "04377eda-8915-49f4-85ec-e06de2108bdc", "node_type": "1", "metadata": {"window": "In addition : A. Hajj/Umrah draws B. Charity payments to selected charity organizations\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, REPEAT ACCOUNT, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Faysal Islamic Rehmat Indivisual Account, nan, nan, nan, nan\nBranch Banking Products, Basic Banking Account, What is the minimum Deposit requirement?, Deposit requirment for Current account., Minimum Deposit requirement for Basic Banking Account., Account can be opened with an initial deposit of Rs. 1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "original_text": ", account with zero balance maintenance requirement. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "1de0fe67a9d92fbf3d12cffc7d98caadd594728ef49cb55b9699564bda637888", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bca1fb8b-a7ef-4687-a85a-f7c4969b8557", "node_type": "1", "metadata": {"window": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. ", "original_text": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "afd1543aae4d74cf6346d43ab40d9fe1ea46f9500102cb2fa36f7c07878f1df2", "class_name": "RelatedNodeInfo"}}, "hash": "d404c120f36ff504396167035e3428e9d7b059eee05b4ae78b0d7cd18826e763", "text": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bca1fb8b-a7ef-4687-a85a-f7c4969b8557": {"__data__": {"id_": "bca1fb8b-a7ef-4687-a85a-f7c4969b8557", "embedding": null, "metadata": {"window": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. ", "original_text": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "23386198-87d1-4f74-9e19-d6c7a18fd1de", "node_type": "1", "metadata": {"window": "1,000/- only\nBranch Banking Products, Basic Banking Account, Is this a current or saving account?, nan, Current Account., Faysal Islamic Basic Banking is a current account that provides customers the comfort of banking in a secure and customer friendly environment.\n Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. ", "original_text": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "d404c120f36ff504396167035e3428e9d7b059eee05b4ae78b0d7cd18826e763", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5e90c533-8419-49ad-931b-fcb513eaf397", "node_type": "1", "metadata": {"window": ", account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. ", "original_text": "1,000,000 in this account other than remittances from abroad. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "45adf35baba61e7145458aff9b56e6cca20fcc9a24cb319412cd186c2c597000", "class_name": "RelatedNodeInfo"}}, "hash": "afd1543aae4d74cf6346d43ab40d9fe1ea46f9500102cb2fa36f7c07878f1df2", "text": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5e90c533-8419-49ad-931b-fcb513eaf397": {"__data__": {"id_": "5e90c533-8419-49ad-931b-fcb513eaf397", "embedding": null, "metadata": {"window": ", account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. ", "original_text": "1,000,000 in this account other than remittances from abroad. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bca1fb8b-a7ef-4687-a85a-f7c4969b8557", "node_type": "1", "metadata": {"window": "Branch Banking Products, Basic Banking Account, Any balance maintainence requirement?, account with zero balance maintenance requirement. , account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. ", "original_text": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "afd1543aae4d74cf6346d43ab40d9fe1ea46f9500102cb2fa36f7c07878f1df2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "10203948-ed29-40f6-821a-6ca03dbe07b6", "node_type": "1", "metadata": {"window": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. ", "original_text": "Moreover, this account has a daily cash withdrawal of up to Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "5d182af8f0f297c9758132d6183fed32025891b662dc12ad2f6d0ab2ff7c9bef", "class_name": "RelatedNodeInfo"}}, "hash": "45adf35baba61e7145458aff9b56e6cca20fcc9a24cb319412cd186c2c597000", "text": "1,000,000 in this account other than remittances from abroad. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "10203948-ed29-40f6-821a-6ca03dbe07b6": {"__data__": {"id_": "10203948-ed29-40f6-821a-6ca03dbe07b6", "embedding": null, "metadata": {"window": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. ", "original_text": "Moreover, this account has a daily cash withdrawal of up to Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5e90c533-8419-49ad-931b-fcb513eaf397", "node_type": "1", "metadata": {"window": ", account with zero balance maintenance requirement. , There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. ", "original_text": "1,000,000 in this account other than remittances from abroad. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "45adf35baba61e7145458aff9b56e6cca20fcc9a24cb319412cd186c2c597000", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9e8d185e-0ca8-47b9-8003-4f30fa88b888", "node_type": "1", "metadata": {"window": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. ", "original_text": "100,000 and daily transfer limit of up to Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "52e8245f8f0628df9edded252f02815f60ae9a77322993226ae54e91e781f689", "class_name": "RelatedNodeInfo"}}, "hash": "5d182af8f0f297c9758132d6183fed32025891b662dc12ad2f6d0ab2ff7c9bef", "text": "Moreover, this account has a daily cash withdrawal of up to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e8d185e-0ca8-47b9-8003-4f30fa88b888": {"__data__": {"id_": "9e8d185e-0ca8-47b9-8003-4f30fa88b888", "embedding": null, "metadata": {"window": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. ", "original_text": "100,000 and daily transfer limit of up to Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "10203948-ed29-40f6-821a-6ca03dbe07b6", "node_type": "1", "metadata": {"window": ", There is no balance maintainence requirement\nBranch Banking Products, Asaan Current Account, What is initial deposit required for Islamic Asaan Current/Saving Account?, initial deposit requirement for Islamic Asaan CASA Account., initial deposit requirement for Islamic Asaan Current/Saving Account., Rs.100 is required as in initial deposit for Islamic Current/ Saving Account \nBranch Banking Products, Asaan Current Account, What is total balance credit limit of Islamic Asaan Current/Saving Account?, Credit Limit of Islamic Asaan CASA account., Credit Limit of Islamic Asaan CASA account., Rs. 1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. ", "original_text": "Moreover, this account has a daily cash withdrawal of up to Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "5d182af8f0f297c9758132d6183fed32025891b662dc12ad2f6d0ab2ff7c9bef", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f6f9497b-06b8-4776-9c86-9818419b778a", "node_type": "1", "metadata": {"window": "1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "original_text": "100,000. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "1473b8c717616284dfd9ba0686f3755e354e0b038b325bf934a25663b7bb69de", "class_name": "RelatedNodeInfo"}}, "hash": "52e8245f8f0628df9edded252f02815f60ae9a77322993226ae54e91e781f689", "text": "100,000 and daily transfer limit of up to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f6f9497b-06b8-4776-9c86-9818419b778a": {"__data__": {"id_": "f6f9497b-06b8-4776-9c86-9818419b778a", "embedding": null, "metadata": {"window": "1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "original_text": "100,000. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9e8d185e-0ca8-47b9-8003-4f30fa88b888", "node_type": "1", "metadata": {"window": "1,000,000 is the credit limit of Islamic Asaan Current/Saving Account\nBranch Banking Products, Asaan Current Account, On What Shariah Principle is Islamic Asaan Current Account based on?, Islamic Current accounts are based on which Shriah Principle., Shariah Principle on Current Account., Islamic Asaan Current Account operates under Qard basis\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Are there any restrictions in deposit and withdrawal in Faysal Islamic Tez Tareen Asaan Remittance Account?, Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Restriction in Faysal Islamic Tez Tareen Asaan Remittance Account., Yes, local credits for examaple: direct cash/ cheque deposit/IBFT are not allowed upto Rs. 1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. ", "original_text": "100,000 and daily transfer limit of up to Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "52e8245f8f0628df9edded252f02815f60ae9a77322993226ae54e91e781f689", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7c3b610d-68da-46f7-9680-67c7cb5f9fe2", "node_type": "1", "metadata": {"window": "Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n", "original_text": "Total account limit is Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "cd79027774b24a5e7242718913524cf03851fff7ffbe054e979cfcde392d5ef7", "class_name": "RelatedNodeInfo"}}, "hash": "1473b8c717616284dfd9ba0686f3755e354e0b038b325bf934a25663b7bb69de", "text": "100,000. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c3b610d-68da-46f7-9680-67c7cb5f9fe2": {"__data__": {"id_": "7c3b610d-68da-46f7-9680-67c7cb5f9fe2", "embedding": null, "metadata": {"window": "Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n", "original_text": "Total account limit is Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f6f9497b-06b8-4776-9c86-9818419b778a", "node_type": "1", "metadata": {"window": "1,000,000 in this account other than remittances from abroad. Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "original_text": "100,000. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "1473b8c717616284dfd9ba0686f3755e354e0b038b325bf934a25663b7bb69de", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "79f9fc25-82b4-445f-9a24-0bce12bdec2d", "node_type": "1", "metadata": {"window": "100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "original_text": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "06738ff2fc8a2a9d41543a1dd7fecb9c76e3556f9517188ef41bf7f9981b7488", "class_name": "RelatedNodeInfo"}}, "hash": "cd79027774b24a5e7242718913524cf03851fff7ffbe054e979cfcde392d5ef7", "text": "Total account limit is Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "79f9fc25-82b4-445f-9a24-0bce12bdec2d": {"__data__": {"id_": "79f9fc25-82b4-445f-9a24-0bce12bdec2d", "embedding": null, "metadata": {"window": "100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "original_text": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7c3b610d-68da-46f7-9680-67c7cb5f9fe2", "node_type": "1", "metadata": {"window": "Moreover, this account has a daily cash withdrawal of up to Rs. 100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n", "original_text": "Total account limit is Rs. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "cd79027774b24a5e7242718913524cf03851fff7ffbe054e979cfcde392d5ef7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e7fed734-eda8-4e9b-8db8-cfeeb93b2714", "node_type": "1", "metadata": {"window": "100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "original_text": "Zakat is applicable on all remunerative accounts as per existing law.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "f6e100e88170fdd2e2e9a56fd78150390b05d3579afcd0645f5fef99ae737198", "class_name": "RelatedNodeInfo"}}, "hash": "06738ff2fc8a2a9d41543a1dd7fecb9c76e3556f9517188ef41bf7f9981b7488", "text": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e7fed734-eda8-4e9b-8db8-cfeeb93b2714": {"__data__": {"id_": "e7fed734-eda8-4e9b-8db8-cfeeb93b2714", "embedding": null, "metadata": {"window": "100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "original_text": "Zakat is applicable on all remunerative accounts as per existing law.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "79f9fc25-82b4-445f-9a24-0bce12bdec2d", "node_type": "1", "metadata": {"window": "100,000 and daily transfer limit of up to Rs. 100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "original_text": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "06738ff2fc8a2a9d41543a1dd7fecb9c76e3556f9517188ef41bf7f9981b7488", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6a5e2b7a-5212-4096-8e86-6736641fbd63", "node_type": "1", "metadata": {"window": "Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n", "original_text": "Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "6c28bd56c7fc5ec2094060cdbf87a398ef9d0215716bd43b74b990e650ff263f", "class_name": "RelatedNodeInfo"}}, "hash": "f6e100e88170fdd2e2e9a56fd78150390b05d3579afcd0645f5fef99ae737198", "text": "Zakat is applicable on all remunerative accounts as per existing law.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6a5e2b7a-5212-4096-8e86-6736641fbd63": {"__data__": {"id_": "6a5e2b7a-5212-4096-8e86-6736641fbd63", "embedding": null, "metadata": {"window": "Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n", "original_text": "Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e7fed734-eda8-4e9b-8db8-cfeeb93b2714", "node_type": "1", "metadata": {"window": "100,000. Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "original_text": "Zakat is applicable on all remunerative accounts as per existing law.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "f6e100e88170fdd2e2e9a56fd78150390b05d3579afcd0645f5fef99ae737198", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2b5c03fc-4aee-45bc-bf30-f748eb040bba", "node_type": "1", "metadata": {"window": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "020635284a2b592369bc1453f45c61461acf2fc756336aafce0203ff22afe838", "class_name": "RelatedNodeInfo"}}, "hash": "6c28bd56c7fc5ec2094060cdbf87a398ef9d0215716bd43b74b990e650ff263f", "text": "Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2b5c03fc-4aee-45bc-bf30-f748eb040bba": {"__data__": {"id_": "2b5c03fc-4aee-45bc-bf30-f748eb040bba", "embedding": null, "metadata": {"window": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6a5e2b7a-5212-4096-8e86-6736641fbd63", "node_type": "1", "metadata": {"window": "Total account limit is Rs. 2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n", "original_text": "Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "6c28bd56c7fc5ec2094060cdbf87a398ef9d0215716bd43b74b990e650ff263f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba", "node_type": "1", "metadata": {"window": "Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Profit will be reinvested into the Manzil Account.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "6289a3934179293fa9eb7b369ca6176cabe917cbbd6969bb28ca19f3e8b170b5", "class_name": "RelatedNodeInfo"}}, "hash": "020635284a2b592369bc1453f45c61461acf2fc756336aafce0203ff22afe838", "text": "Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba": {"__data__": {"id_": "ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba", "embedding": null, "metadata": {"window": "Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Profit will be reinvested into the Manzil Account.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2b5c03fc-4aee-45bc-bf30-f748eb040bba", "node_type": "1", "metadata": {"window": "2,000,000\nBranch Banking Products, Tez Tareen Asaan Remittance Account, Will Zakat be applicable on this account?, Zakat applicable accounts., is zakat applicable in Current account., Yes. Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. ", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "020635284a2b592369bc1453f45c61461acf2fc756336aafce0203ff22afe838", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f994e530-0a41-476b-9f94-279c51e851c3", "node_type": "1", "metadata": {"window": "Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "96680185b9ed05994deb3a7fabe1de9c83edc05057cd9da7c287c6d925c42ff3", "class_name": "RelatedNodeInfo"}}, "hash": "6289a3934179293fa9eb7b369ca6176cabe917cbbd6969bb28ca19f3e8b170b5", "text": "Profit will be reinvested into the Manzil Account.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f994e530-0a41-476b-9f94-279c51e851c3": {"__data__": {"id_": "f994e530-0a41-476b-9f94-279c51e851c3", "embedding": null, "metadata": {"window": "Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842", "node_type": "4", "metadata": {"file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba", "node_type": "1", "metadata": {"window": "Zakat is applicable on all remunerative accounts as per existing law.\n Branch Banking Products, Tez Tareen Asaan Remittance Account, Is this account supervised by any Shariah scholar?, Are Islamic account are supervised by someone., who supervised the account., This account is developed as per the guidelines of Shariah under the direct supervision of eminent\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, Is Joint Account allowed in Faysal Islami Life Plus Saving Account?, Age limit for Joint Faysal Islami Life Plus Saving Account., Age limit for Joint Faysal Islami Life Plus Saving Account., Yes, however the primary account holder should be 55 years and above\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What is the minimum age requirement of the secondary account holder for Faysal Islami Life Plus Saving Account?, Age requirement for Secondary account holder in Faysal Islamic Life Plus Saving Account, minimum age requirement for secondary account holder in Faysal Islami Life Plus Saving Account., No minimum age requirement applied for secondary account holder\nBranch Banking Products, Faysal Islamic Life Plus Saving Account, What takaful privileges are offered in Faysal Islamic Life Plus Saving Account currently?, additonal benefits in Faysal Islamic Life Plus Saving Account, Takaful coverage in Faysal Islamic Life Plus Saving Account, Hospitalization per day Cash Cover and Personal Accidental Death Takaful\nBranch Banking Products, PWD Branches, Do PWD branches have have wheelchair ramps?, nan, nan, All PWD branches have a wheelchair ramp at the entrance\nBranch Banking Products, PWD Branches, How can I use ATM Machine, if I'm deaf?, nan, nan, We have listening headphones are available on all PWD ATMs\nBranch Banking Products, PWD Branches, Where are PWD Branches located?, nan, nan, They are located in all provinces, please refer to website for up to date list of all PWD branch locations\nBranch Banking Products, Evening Banking Branches, NOT PERTAIN TO US, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Evening Banking Branches, nan, nan, nan, nan\nBranch Banking Products, Manzil Zamin Account, Who can open Faysal Islami Manzil Account?, nan, nan, Faysal Islami Manzil Account can be opened by all types of customers except for Partnerships, Corporations/Entities etc\nBranch Banking Products, Manzil Zamin Account, Which types of accounts can my Manzil Account be linked to?, nan, nan, Manzil Account can be linked to all types of regular Current/Savings accounts except for Asaan Accounts, Pensioner\u2019s Accounts, Tez Tareen Accounts and Foreign Currency accounts.\n Branch Banking Products, Manzil Zamin Account, What is the frequency of profit calculation and payment?, nan, nan, Profit will be calculated and paid monthly. Profit will be reinvested into the Manzil Account.\n Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "original_text": "Profit will be reinvested into the Manzil Account.\n", "file_name": "Branch Banking.csv", "doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "hash": "6289a3934179293fa9eb7b369ca6176cabe917cbbd6969bb28ca19f3e8b170b5", "class_name": "RelatedNodeInfo"}}, "hash": "96680185b9ed05994deb3a7fabe1de9c83edc05057cd9da7c287c6d925c42ff3", "text": "Wealth Management, Life Plus Investment Certificate, Can anyone buy this certificate?, nan, nan, It is only available to customers aged 55 years and above\nWealth Management, Life Plus Investment Certificate, When will I receive my profit?, nan, nan, Two profit payment options available, At maturity and monthly\nWealth Management, Life Plus Investment Certificate, What is the penalty on premature withdrawal?, nan, nan, No penalty, however the profit rate will revise as per nearest completed term\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the minimum investment requirement a PKR Faysal Islami Barkat Investment certificate?, nan, nan, Rs 50,000/-\nWealth Management, Faysal Islamic Barkat Investment Certificate, What is the maximum tenor available in PKR - Faysal Islami Barkat Investment certificate?, nan, nan, 5 Years\nWealth Management, Faysal Islamic Barkat Investment Certificate, Does PKR Faysal Islami Barkat Investment certificate have an automatic renewal option?, nan, nan, Yes", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e0806a92-067d-4401-afa9-1e143b8ca059": {"__data__": {"id_": "e0806a92-067d-4401-afa9-1e143b8ca059", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6abeddd5-771d-45ad-985c-b5039f9682eb", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "original_text": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "473d0e31353eff740d583b5b3c07360643f86178cf3465277ebcb1f3d8d3e888", "class_name": "RelatedNodeInfo"}}, "hash": "58c6b43cb50086dd7de2622e113658303e50dbf156cd7140b617c05e23b0b308", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6abeddd5-771d-45ad-985c-b5039f9682eb": {"__data__": {"id_": "6abeddd5-771d-45ad-985c-b5039f9682eb", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "original_text": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e0806a92-067d-4401-afa9-1e143b8ca059", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "58c6b43cb50086dd7de2622e113658303e50dbf156cd7140b617c05e23b0b308", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "original_text": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "edfc0d55ebabcaddc78990b22a4970760e105c1222d474a33b40b21449627a43", "class_name": "RelatedNodeInfo"}}, "hash": "473d0e31353eff740d583b5b3c07360643f86178cf3465277ebcb1f3d8d3e888", "text": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730": {"__data__": {"id_": "e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "original_text": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6abeddd5-771d-45ad-985c-b5039f9682eb", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "original_text": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "473d0e31353eff740d583b5b3c07360643f86178cf3465277ebcb1f3d8d3e888", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "09aba15c-8848-4b1d-80d0-fd51aae4770e", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "original_text": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "04dad85951175eed62efec11da6b91a0626a7b4b2b8127344c51faa15b0b0513", "class_name": "RelatedNodeInfo"}}, "hash": "edfc0d55ebabcaddc78990b22a4970760e105c1222d474a33b40b21449627a43", "text": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "09aba15c-8848-4b1d-80d0-fd51aae4770e": {"__data__": {"id_": "09aba15c-8848-4b1d-80d0-fd51aae4770e", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "original_text": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "original_text": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "edfc0d55ebabcaddc78990b22a4970760e105c1222d474a33b40b21449627a43", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f2731479-2d76-4f37-85d6-4a1261989587", "node_type": "1", "metadata": {"window": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "original_text": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e82e40f497dc394c422ce57f1192f1114b48b320d8136cccf1dc375628ddea73", "class_name": "RelatedNodeInfo"}}, "hash": "04dad85951175eed62efec11da6b91a0626a7b4b2b8127344c51faa15b0b0513", "text": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f2731479-2d76-4f37-85d6-4a1261989587": {"__data__": {"id_": "f2731479-2d76-4f37-85d6-4a1261989587", "embedding": null, "metadata": {"window": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "original_text": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "09aba15c-8848-4b1d-80d0-fd51aae4770e", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Posible Questions, Suggetion, Response\nConsumer Products, nan, Noor Card, What is Faysal Islami Noor Card?, Definition of Noor Card., Islamic Noor Card., Faysal Islami Noor Card is the first fully Shariah \nCompliant alternative to conventional credit cards; it is one of the first Islamic Credit Card based \non the Islamic Principle of Tawarruq.\n nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "original_text": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "04dad85951175eed62efec11da6b91a0626a7b4b2b8127344c51faa15b0b0513", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7f19d8ea-707a-4e49-8493-7c5dcab97c88", "node_type": "1", "metadata": {"window": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "original_text": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f40f5cf6b4419c2b40d7b52c987a1513d0c94a84033fbab05b9e12bb9b4a5e83", "class_name": "RelatedNodeInfo"}}, "hash": "e82e40f497dc394c422ce57f1192f1114b48b320d8136cccf1dc375628ddea73", "text": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7f19d8ea-707a-4e49-8493-7c5dcab97c88": {"__data__": {"id_": "7f19d8ea-707a-4e49-8493-7c5dcab97c88", "embedding": null, "metadata": {"window": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "original_text": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f2731479-2d76-4f37-85d6-4a1261989587", "node_type": "1", "metadata": {"window": "nan, nan, nan, How is Faysal Islami Noor Card Shariah \nCompliant?, is islamic Credit card is shariah complaint, Shariah Complaint Noor Card., Faysal Islami Noor Card is based on the Islamic \nPrinciple of Tawarruq which refers to the process \nof purchasing a commodity for a deferred price \ndetermined through Musawamah or Murabaha, \nand selling it to a third party for a spot price to \nobtain cash. \n nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "original_text": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e82e40f497dc394c422ce57f1192f1114b48b320d8136cccf1dc375628ddea73", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2f9b4a5d-2e04-4c12-bd0e-803a8f375470", "node_type": "1", "metadata": {"window": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "original_text": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d235d7452e6be3824dd2b0b73d1043718cb46a2cda1d61f5813666b4fc0ebda0", "class_name": "RelatedNodeInfo"}}, "hash": "f40f5cf6b4419c2b40d7b52c987a1513d0c94a84033fbab05b9e12bb9b4a5e83", "text": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2f9b4a5d-2e04-4c12-bd0e-803a8f375470": {"__data__": {"id_": "2f9b4a5d-2e04-4c12-bd0e-803a8f375470", "embedding": null, "metadata": {"window": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "original_text": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7f19d8ea-707a-4e49-8493-7c5dcab97c88", "node_type": "1", "metadata": {"window": "nan, nan, nan, How does Faysal Islami Noor Card work?, nan, Noor card working mechanism., The Faysal Islami Noor Card involves a Musawamah Agreement for purchasing Islamic Mutual Funds Units. After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "original_text": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f40f5cf6b4419c2b40d7b52c987a1513d0c94a84033fbab05b9e12bb9b4a5e83", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3b61425-69ba-4332-a437-303643e57eb5", "node_type": "1", "metadata": {"window": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "original_text": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "fba98eb2e305cc68fba469960388a1502e7217b8fba3de27ed5f66c89e8b3b17", "class_name": "RelatedNodeInfo"}}, "hash": "d235d7452e6be3824dd2b0b73d1043718cb46a2cda1d61f5813666b4fc0ebda0", "text": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3b61425-69ba-4332-a437-303643e57eb5": {"__data__": {"id_": "e3b61425-69ba-4332-a437-303643e57eb5", "embedding": null, "metadata": {"window": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "original_text": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2f9b4a5d-2e04-4c12-bd0e-803a8f375470", "node_type": "1", "metadata": {"window": "After ownership, your agent sells the assets to FAML, with proceeds credited to your Mudarbah account. Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "original_text": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d235d7452e6be3824dd2b0b73d1043718cb46a2cda1d61f5813666b4fc0ebda0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1fcfe884-f810-46de-a946-090c3c284ad0", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "original_text": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f5b27082066b785ed8de7bbd1ac52452d3344e826efa9f85897b661427ff8692", "class_name": "RelatedNodeInfo"}}, "hash": "fba98eb2e305cc68fba469960388a1502e7217b8fba3de27ed5f66c89e8b3b17", "text": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1fcfe884-f810-46de-a946-090c3c284ad0": {"__data__": {"id_": "1fcfe884-f810-46de-a946-090c3c284ad0", "embedding": null, "metadata": {"window": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "original_text": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e3b61425-69ba-4332-a437-303643e57eb5", "node_type": "1", "metadata": {"window": "Timely payment is required to maintain the full card limit, with accrued profit for late payments as per the agreement.\n nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "original_text": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "fba98eb2e305cc68fba469960388a1502e7217b8fba3de27ed5f66c89e8b3b17", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f5240473-1e46-4222-905c-b6b7cd4646ba", "node_type": "1", "metadata": {"window": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n", "original_text": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b32fda9aaa6d4bd9eb6393aac14a04485c207ee673661ee249a19662a3d04e4c", "class_name": "RelatedNodeInfo"}}, "hash": "f5b27082066b785ed8de7bbd1ac52452d3344e826efa9f85897b661427ff8692", "text": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f5240473-1e46-4222-905c-b6b7cd4646ba": {"__data__": {"id_": "f5240473-1e46-4222-905c-b6b7cd4646ba", "embedding": null, "metadata": {"window": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n", "original_text": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1fcfe884-f810-46de-a946-090c3c284ad0", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is a Muswamah?, nan, Definition of Musawamah., Musawamah is Shariah compliant mode of sale \nwhereby the Asset is sold on an agreed lump sum \nprice on deferred /spot payment basis\nnan, nan, nan, How is the profit charging mechanism under \nthe Islami Noor Card Shariah Compliant?, How interest is different from profit on Noor card., Profit charging Mechanism on Noor card, Earning profit on sale of asset is permissible in \nShariah and the Bank is selling assets (Islamic \nmutual funds) to customer at agreed sale price as \nper the Musawamah contract\nnan, nan, nan, Is Faysal Islami Noor Card the same as \ncharge card?, nan, Noor Card is same as Credit card., Faysal Islami Noor Card is not the same as \ncharge card. The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "original_text": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f5b27082066b785ed8de7bbd1ac52452d3344e826efa9f85897b661427ff8692", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2c419b82-4f82-496f-b4b4-c76141274585", "node_type": "1", "metadata": {"window": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f86155937ffb6ec91b41c96a9cbdf48a6961953a4e52e11a004f02602c373a1b", "class_name": "RelatedNodeInfo"}}, "hash": "b32fda9aaa6d4bd9eb6393aac14a04485c207ee673661ee249a19662a3d04e4c", "text": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c419b82-4f82-496f-b4b4-c76141274585": {"__data__": {"id_": "2c419b82-4f82-496f-b4b4-c76141274585", "embedding": null, "metadata": {"window": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f5240473-1e46-4222-905c-b6b7cd4646ba", "node_type": "1", "metadata": {"window": "The card allows you to pay a \nminimum monthly amount of the required amount \nor partial amount as opposed to charge card \nwhere full amount is payable on payment required \ndate\nnan, nan, nan, Do I have the option of keeping the Islamic \nmutual funds units and not selling them?, option to keep the islamic mutual funds in Noor card., nan, No, you cannot keep the Islamic mutual funds and \nonce you buy them from the Bank, you are \nrequired to sell them instantaneously to obtained \ncredit amount in your account for limit utilization \npurpose\nnan, nan, nan, What are the benefits and features of Faysal \nBank Islami Noor Card?, benefits of having Noor card.\n Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n", "original_text": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b32fda9aaa6d4bd9eb6393aac14a04485c207ee673661ee249a19662a3d04e4c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9fde07da-cd24-4978-a089-d1c54d402ddc", "node_type": "1", "metadata": {"window": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. ", "original_text": "8,000/- will be applicable once the case is approved. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f55a674a4803566b1d9afa374b151997dac6643569bafecfd5f970d9a85bf8bf", "class_name": "RelatedNodeInfo"}}, "hash": "f86155937ffb6ec91b41c96a9cbdf48a6961953a4e52e11a004f02602c373a1b", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9fde07da-cd24-4978-a089-d1c54d402ddc": {"__data__": {"id_": "9fde07da-cd24-4978-a089-d1c54d402ddc", "embedding": null, "metadata": {"window": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. ", "original_text": "8,000/- will be applicable once the case is approved. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2c419b82-4f82-496f-b4b4-c76141274585", "node_type": "1", "metadata": {"window": "Features of Noor card, Benenfits and Features o Noor card., Noor Card is the Islamic card is a Shariah-compliant alternative to conventional credit cards, offering freedom from interest-based transactions. It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f86155937ffb6ec91b41c96a9cbdf48a6961953a4e52e11a004f02602c373a1b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4", "node_type": "1", "metadata": {"window": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "original_text": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c82f0e6517369544961bbaf84168d9d3cfaa5bbebe4dd26126dba5011879ea19", "class_name": "RelatedNodeInfo"}}, "hash": "f55a674a4803566b1d9afa374b151997dac6643569bafecfd5f970d9a85bf8bf", "text": "8,000/- will be applicable once the case is approved. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4": {"__data__": {"id_": "1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4", "embedding": null, "metadata": {"window": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "original_text": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9fde07da-cd24-4978-a089-d1c54d402ddc", "node_type": "1", "metadata": {"window": "It provides rewards/loyalty points for charitable donations, installment plans with no pre-payment charges, cash advance facilities, discounts at select merchants, and global acceptability. Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. ", "original_text": "8,000/- will be applicable once the case is approved. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f55a674a4803566b1d9afa374b151997dac6643569bafecfd5f970d9a85bf8bf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "original_text": "limit of Car Financing., Maximum financing limit: Rs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "57a45d9c684e26a023084983e18b3ee4a4b70e5fa5a27d2b3b56ee647fd4913f", "class_name": "RelatedNodeInfo"}}, "hash": "c82f0e6517369544961bbaf84168d9d3cfaa5bbebe4dd26126dba5011879ea19", "text": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98": {"__data__": {"id_": "350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "original_text": "limit of Car Financing., Maximum financing limit: Rs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4", "node_type": "1", "metadata": {"window": "Additional features include a profit-free grace period, utility bill payments, supplementary cards, and Takaful coverage.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "original_text": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c82f0e6517369544961bbaf84168d9d3cfaa5bbebe4dd26126dba5011879ea19", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ac1e6e13-f279-4928-a284-0c92b66f09ae", "node_type": "1", "metadata": {"window": "8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "original_text": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ac81843fab49ea73067d0a93d72fe0d106bb0f0550e087b9dc9f9f509b91e8a7", "class_name": "RelatedNodeInfo"}}, "hash": "57a45d9c684e26a023084983e18b3ee4a4b70e5fa5a27d2b3b56ee647fd4913f", "text": "limit of Car Financing., Maximum financing limit: Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ac1e6e13-f279-4928-a284-0c92b66f09ae": {"__data__": {"id_": "ac1e6e13-f279-4928-a284-0c92b66f09ae", "embedding": null, "metadata": {"window": "8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "original_text": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Islami Personal Finance , NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Takmeel, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Islami Solar Solutions, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Personal Loan Conversion to Islamic Personal Finance, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Flexi Credit Conversion to Flexi Noor Card, NOT MENTIONED, nan, nan, nan\nnan, Consumer Products, Faysal Car Finance, What is FBL Islamic Car Finance, what is car finance, Car Finance., FBL Islamic Car Finance is based on Diminishing Musharakah (DM), DM a form of financing based on \njoint ownership in asset(s) or tangible property in which any of the joint owners \nundertakes/promises to buy the ownership share of the other joint owner(s) gradually until the \nownership of the joint asset or property is completely transferred to the purchasing joint owner\nnan, nan, nan, When will the processing fee be applied?, nan, Processing Fee on Car Finance., Processing fee of Rs. 8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "original_text": "limit of Car Financing., Maximum financing limit: Rs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "57a45d9c684e26a023084983e18b3ee4a4b70e5fa5a27d2b3b56ee647fd4913f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6f5f6064-4f8e-4caf-899c-fd78a65e466b", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "original_text": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "cddeeab2c0829edfd654f09e7fba3dc467e469bcd9cfd7b4543212321fa991ea", "class_name": "RelatedNodeInfo"}}, "hash": "ac81843fab49ea73067d0a93d72fe0d106bb0f0550e087b9dc9f9f509b91e8a7", "text": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6f5f6064-4f8e-4caf-899c-fd78a65e466b": {"__data__": {"id_": "6f5f6064-4f8e-4caf-899c-fd78a65e466b", "embedding": null, "metadata": {"window": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "original_text": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ac1e6e13-f279-4928-a284-0c92b66f09ae", "node_type": "1", "metadata": {"window": "8,000/- will be applicable once the case is approved. \n nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "original_text": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ac81843fab49ea73067d0a93d72fe0d106bb0f0550e087b9dc9f9f509b91e8a7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1b82111e-b71b-4b1b-b8cf-a8245da5ccf2", "node_type": "1", "metadata": {"window": "limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "original_text": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "64c41f192039f08605896228f77751f0fba0babc112f7cb268726dde0476acff", "class_name": "RelatedNodeInfo"}}, "hash": "cddeeab2c0829edfd654f09e7fba3dc467e469bcd9cfd7b4543212321fa991ea", "text": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1b82111e-b71b-4b1b-b8cf-a8245da5ccf2": {"__data__": {"id_": "1b82111e-b71b-4b1b-b8cf-a8245da5ccf2", "embedding": null, "metadata": {"window": "limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "original_text": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f5f6064-4f8e-4caf-899c-fd78a65e466b", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is the maximum financing limit of financing?, nan, Max. limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "original_text": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "cddeeab2c0829edfd654f09e7fba3dc467e469bcd9cfd7b4543212321fa991ea", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e8234cac-7fe1-411d-80d9-d1c9990edf1f", "node_type": "1", "metadata": {"window": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "original_text": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1f741a7cf026ecd2f7a1ffdc04ec253d1f7b430aa5ae64d1b10fb10eeab39321", "class_name": "RelatedNodeInfo"}}, "hash": "64c41f192039f08605896228f77751f0fba0babc112f7cb268726dde0476acff", "text": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e8234cac-7fe1-411d-80d9-d1c9990edf1f": {"__data__": {"id_": "e8234cac-7fe1-411d-80d9-d1c9990edf1f", "embedding": null, "metadata": {"window": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "original_text": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1b82111e-b71b-4b1b-b8cf-a8245da5ccf2", "node_type": "1", "metadata": {"window": "limit of Car Financing., Maximum financing limit: Rs. 3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "original_text": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "64c41f192039f08605896228f77751f0fba0babc112f7cb268726dde0476acff", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5bda07e1-5114-4f2f-9950-844cbe4dc5ff", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n", "original_text": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9f01468f0bb85fd0fc4e1cb6df0c197ef29a422595a7472eaaf14a334ab7a44d", "class_name": "RelatedNodeInfo"}}, "hash": "1f741a7cf026ecd2f7a1ffdc04ec253d1f7b430aa5ae64d1b10fb10eeab39321", "text": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5bda07e1-5114-4f2f-9950-844cbe4dc5ff": {"__data__": {"id_": "5bda07e1-5114-4f2f-9950-844cbe4dc5ff", "embedding": null, "metadata": {"window": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n", "original_text": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e8234cac-7fe1-411d-80d9-d1c9990edf1f", "node_type": "1", "metadata": {"window": "3,000,000/-\n\nnan, nan, nan, What is the financing tenure?, What is the car financing tenure?, Car Financing Tenure., 1 \u2013 3 years (vehicle above 1000cc)\n1 \u2013 5 years (vehicle below 1000cc)\n\nnan, nan, nan, How much initial down payment do I have to make?, nan, Initial down payment in car financing., Minimum 30% or higher according to specific make and model. \n nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "original_text": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1f741a7cf026ecd2f7a1ffdc04ec253d1f7b430aa5ae64d1b10fb10eeab39321", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2e331ad1-4c67-4d7e-99f8-90636e796855", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "original_text": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "918631a58e8e48339f32bf707e07ed3f311b75f85c284efba7ca706dfffeff3c", "class_name": "RelatedNodeInfo"}}, "hash": "9f01468f0bb85fd0fc4e1cb6df0c197ef29a422595a7472eaaf14a334ab7a44d", "text": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2e331ad1-4c67-4d7e-99f8-90636e796855": {"__data__": {"id_": "2e331ad1-4c67-4d7e-99f8-90636e796855", "embedding": null, "metadata": {"window": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "original_text": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5bda07e1-5114-4f2f-9950-844cbe4dc5ff", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is the minimum and maximum Age limit at which one can apply for Car Finance \nfacility?, nan, Age limit for Car Finanacing., Salaried: \n\u2022 Min 21 Years \n\u2022 Max 65 Years (at the time maturity)\nSelf Employed Businessmen / Professional:\n\u2022 Min 21 Years \n\u2022 Max 70 Years (at the time maturity)\n\nnan, nan, nan, Whose name will the vehicle be registered in?, nan, to whom the vehicle would be registered., The vehicle will be registered in the name of the Customer with HPA mark in favor of FBL.\n nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n", "original_text": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9f01468f0bb85fd0fc4e1cb6df0c197ef29a422595a7472eaaf14a334ab7a44d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "04a79d62-85c8-4e48-9cfe-055bcb7584ee", "node_type": "1", "metadata": {"window": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "original_text": "nan, nan, nan, Who can apply for Car Financing facility?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bd94761ab1077d000383e7f6ef7d413fda47bf65feb94d5a8a08dade8f7c4b7a", "class_name": "RelatedNodeInfo"}}, "hash": "918631a58e8e48339f32bf707e07ed3f311b75f85c284efba7ca706dfffeff3c", "text": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "04a79d62-85c8-4e48-9cfe-055bcb7584ee": {"__data__": {"id_": "04a79d62-85c8-4e48-9cfe-055bcb7584ee", "embedding": null, "metadata": {"window": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "original_text": "nan, nan, nan, Who can apply for Car Financing facility?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2e331ad1-4c67-4d7e-99f8-90636e796855", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is the maximum Debt Burden Ratio (DBR) criteria?, DBR criteria for Car Finanacing, DBR for Car Fianance., The maximum DBR of the Customer should not exceed 40% of the net income. \n nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "original_text": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "918631a58e8e48339f32bf707e07ed3f311b75f85c284efba7ca706dfffeff3c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2715f5d1-3033-4068-98a5-da3aeaea645c", "node_type": "1", "metadata": {"window": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "original_text": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bd734901733332d09de9e3e8a0fc8b4b3ce49b920049bd21372f6d9be34c67fe", "class_name": "RelatedNodeInfo"}}, "hash": "bd94761ab1077d000383e7f6ef7d413fda47bf65feb94d5a8a08dade8f7c4b7a", "text": "nan, nan, nan, Who can apply for Car Financing facility?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2715f5d1-3033-4068-98a5-da3aeaea645c": {"__data__": {"id_": "2715f5d1-3033-4068-98a5-da3aeaea645c", "embedding": null, "metadata": {"window": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "original_text": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "04a79d62-85c8-4e48-9cfe-055bcb7584ee", "node_type": "1", "metadata": {"window": "nan, nan, nan, What are the rights and liabilities of the Bank and the Customer?, nan, Rights and Liabilities of Bank and Customer in Car Financing., As Bank and the Customer have joint ownership of the vehicle, therefore, both are liable to bear all \nkinds of loss or damage to the vehicle as per their ownership ratio unless the loss occurred due to \nthe negligence of either party\nnan, nan, nan, What is Takaful or Islamic Insurance?, nan, Definition of Takaful & Islamic Insurance., The word Takaful is derived from the Arabic verb 'Kafala', which means to guarantee; to help; to take care of one\u2019s needs. Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "original_text": "nan, nan, nan, Who can apply for Car Financing facility?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bd94761ab1077d000383e7f6ef7d413fda47bf65feb94d5a8a08dade8f7c4b7a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c", "node_type": "1", "metadata": {"window": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n", "original_text": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "aad37c79e00883c1fed8c79517b88897f6fc8011578b64ca76f7f77b8fa29725", "class_name": "RelatedNodeInfo"}}, "hash": "bd734901733332d09de9e3e8a0fc8b4b3ce49b920049bd21372f6d9be34c67fe", "text": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c": {"__data__": {"id_": "5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c", "embedding": null, "metadata": {"window": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n", "original_text": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2715f5d1-3033-4068-98a5-da3aeaea645c", "node_type": "1", "metadata": {"window": "Takaful is a system of Islamic insurance based on the principle of Ta\u2019awun (mutual assistance) and Tabarru (voluntary contribution), where risk is shared collectively by a group of participants, who by paying contributions to a common fund, agree to jointly guarantee themselves against loss or damage to anyone of them as defined in the pact.\n nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "original_text": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bd734901733332d09de9e3e8a0fc8b4b3ce49b920049bd21372f6d9be34c67fe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "345e778e-a465-4e56-b4a4-79ec02fc488b", "node_type": "1", "metadata": {"window": "nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "original_text": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "cddc7cfbdbea9931a3d7f2115cbb82573249065e6e3aca95494549710ef9e7cd", "class_name": "RelatedNodeInfo"}}, "hash": "aad37c79e00883c1fed8c79517b88897f6fc8011578b64ca76f7f77b8fa29725", "text": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "345e778e-a465-4e56-b4a4-79ec02fc488b": {"__data__": {"id_": "345e778e-a465-4e56-b4a4-79ec02fc488b", "embedding": null, "metadata": {"window": "nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "original_text": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c", "node_type": "1", "metadata": {"window": "nan, nan, nan, What type of car can be financed with FBL?, nan, which type of car can be financed., Financing for all locally manufactured new & used vehicles. \n nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n", "original_text": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "aad37c79e00883c1fed8c79517b88897f6fc8011578b64ca76f7f77b8fa29725", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d991d1dd-c851-4eca-9ed5-0ffb73441b06", "node_type": "1", "metadata": {"window": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "original_text": "Charity will have credited to charity account.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "929cd20bbfc0a9f86aea79cdaaf58f9c4552b8d6b03074101668543e7fb8d074", "class_name": "RelatedNodeInfo"}}, "hash": "cddc7cfbdbea9931a3d7f2115cbb82573249065e6e3aca95494549710ef9e7cd", "text": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d991d1dd-c851-4eca-9ed5-0ffb73441b06": {"__data__": {"id_": "d991d1dd-c851-4eca-9ed5-0ffb73441b06", "embedding": null, "metadata": {"window": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "original_text": "Charity will have credited to charity account.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "345e778e-a465-4e56-b4a4-79ec02fc488b", "node_type": "1", "metadata": {"window": "nan, nan, nan, Who can apply for Car Financing facility?\n , nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "original_text": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "cddc7cfbdbea9931a3d7f2115cbb82573249065e6e3aca95494549710ef9e7cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "18e0b32b-51f2-4e6e-95ad-3ce5159c82b7", "node_type": "1", "metadata": {"window": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "original_text": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d5682bcf25834da76872ebdbbf1c47245e2ba4fa4da15d39c1d1be6ed72b9051", "class_name": "RelatedNodeInfo"}}, "hash": "929cd20bbfc0a9f86aea79cdaaf58f9c4552b8d6b03074101668543e7fb8d074", "text": "Charity will have credited to charity account.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "18e0b32b-51f2-4e6e-95ad-3ce5159c82b7": {"__data__": {"id_": "18e0b32b-51f2-4e6e-95ad-3ce5159c82b7", "embedding": null, "metadata": {"window": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "original_text": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d991d1dd-c851-4eca-9ed5-0ffb73441b06", "node_type": "1", "metadata": {"window": ", nan, Who can apply for car Financing., Residents of Pakistan who are salaried or self-employed businessmen or professionals based on \ntheir verifiable income/ business, or deposit-based relationship with FBL.\n\n nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "original_text": "Charity will have credited to charity account.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "929cd20bbfc0a9f86aea79cdaaf58f9c4552b8d6b03074101668543e7fb8d074", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "106db2bc-825f-431d-9559-6e1740e5cd7c", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "861c9d7a35d8f92f6cbd529d7d08270e1e82938f881868c7c420617fb722a6d2", "class_name": "RelatedNodeInfo"}}, "hash": "d5682bcf25834da76872ebdbbf1c47245e2ba4fa4da15d39c1d1be6ed72b9051", "text": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "106db2bc-825f-431d-9559-6e1740e5cd7c": {"__data__": {"id_": "106db2bc-825f-431d-9559-6e1740e5cd7c", "embedding": null, "metadata": {"window": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "18e0b32b-51f2-4e6e-95ad-3ce5159c82b7", "node_type": "1", "metadata": {"window": "nan, nan, nan, At what point will the Customer be obliged to start making the monthly instalments, nan, nan, The monthly installments will commence from the date on which the vehicle is delivered to the \nCustomer.\n nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "original_text": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d5682bcf25834da76872ebdbbf1c47245e2ba4fa4da15d39c1d1be6ed72b9051", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24100721-d6cd-4dfe-b050-30f50e640ba7", "node_type": "1", "metadata": {"window": "Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6626294ea0e9682026721a774f80800405faedaf20486eb28fa38d38641d1c62", "class_name": "RelatedNodeInfo"}}, "hash": "861c9d7a35d8f92f6cbd529d7d08270e1e82938f881868c7c420617fb722a6d2", "text": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "24100721-d6cd-4dfe-b050-30f50e640ba7": {"__data__": {"id_": "24100721-d6cd-4dfe-b050-30f50e640ba7", "embedding": null, "metadata": {"window": "Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "106db2bc-825f-431d-9559-6e1740e5cd7c", "node_type": "1", "metadata": {"window": "nan, nan, nan, What is charity and when it is applicable?, nan, Late payment/charity on car Finance., PKR 50/- per day late payment. Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "861c9d7a35d8f92f6cbd529d7d08270e1e82938f881868c7c420617fb722a6d2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d7017230-d8ce-4c69-8739-0d8ec4f96977", "node_type": "1", "metadata": {"window": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "original_text": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d32a3446320db77a427b62454062bd9722d7aa57ec39f2810221773932e7b5e2", "class_name": "RelatedNodeInfo"}}, "hash": "6626294ea0e9682026721a774f80800405faedaf20486eb28fa38d38641d1c62", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d7017230-d8ce-4c69-8739-0d8ec4f96977": {"__data__": {"id_": "d7017230-d8ce-4c69-8739-0d8ec4f96977", "embedding": null, "metadata": {"window": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "original_text": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "24100721-d6cd-4dfe-b050-30f50e640ba7", "node_type": "1", "metadata": {"window": "Charity will have credited to charity account.\n nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6626294ea0e9682026721a774f80800405faedaf20486eb28fa38d38641d1c62", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5f052ab6-717b-424b-b359-0adeb5aaa264", "node_type": "1", "metadata": {"window": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "class_name": "RelatedNodeInfo"}}, "hash": "d32a3446320db77a427b62454062bd9722d7aa57ec39f2810221773932e7b5e2", "text": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5f052ab6-717b-424b-b359-0adeb5aaa264": {"__data__": {"id_": "5f052ab6-717b-424b-b359-0adeb5aaa264", "embedding": null, "metadata": {"window": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d7017230-d8ce-4c69-8739-0d8ec4f96977", "node_type": "1", "metadata": {"window": "nan, nan, nan, What happens to the ownership of car upon maturity of financing tenure, nan, ownership of car financing., In monthly installment customer purchases units from Bank through monthly installment payment, \nthereby increasing customer share and decreasing Bank share. Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "original_text": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d32a3446320db77a427b62454062bd9722d7aa57ec39f2810221773932e7b5e2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83846ec5-23a4-4df8-a302-57557e7892f0", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0c5117e8df178e7b71c4cf7a44dc0bad5176c1fb6da43bcd1da5e7e19b271991", "class_name": "RelatedNodeInfo"}}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83846ec5-23a4-4df8-a302-57557e7892f0": {"__data__": {"id_": "83846ec5-23a4-4df8-a302-57557e7892f0", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5f052ab6-717b-424b-b359-0adeb5aaa264", "node_type": "1", "metadata": {"window": "Upon maturity the customer becomes\nsolely owner of the vehicle by purchasing all units in monthly installments, the customer(s) will be \nissued a No Objection Certificate (NOC) along with a clearance letter by FBL for removal of HP\nnan, nan, nan, What is repossession?, nan, Repossession of Autos., Repossession of motor vehicle in case of non-payment of the monthly installment(s)\nnan, nan, nan, What is the TAT (Turn Around Time)?, nan, TAT for case approval in Autos., The standard time for case approval is 6 working days from the date of submission of completely \nfilled application form and furnishing all required documents\nnan, nan, nan, What is the process of payment of instalments?, How to pay installemnt for Autos., Payment process for Autos., Through Direct payment authority letter to FBL, cash payment, online payment, through ATM.\n nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "080d0243-4bdc-4328-b9db-6d34dce3f1f8", "node_type": "1", "metadata": {"window": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "original_text": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de74c95b3e74e46b78068b8561ba75bf39404d92f3472ece69e739db8329a600", "class_name": "RelatedNodeInfo"}}, "hash": "0c5117e8df178e7b71c4cf7a44dc0bad5176c1fb6da43bcd1da5e7e19b271991", "text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "080d0243-4bdc-4328-b9db-6d34dce3f1f8": {"__data__": {"id_": "080d0243-4bdc-4328-b9db-6d34dce3f1f8", "embedding": null, "metadata": {"window": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "original_text": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83846ec5-23a4-4df8-a302-57557e7892f0", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, , How can I make a request for my Faysal Islami Master Debit Card?, how can I order my debit card., Master Debit Card issuance., You can request for a Faysal Islami Master Debit Card through the following: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Master Debit Card?, how to activate debit card?\n Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0c5117e8df178e7b71c4cf7a44dc0bad5176c1fb6da43bcd1da5e7e19b271991", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bbf248aa-e49f-4f76-85bc-4c70c513eb71", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n", "original_text": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7eacfeeef5f03f5e11f7d64c45e351dcf6165c0534f218463ed72cd208a24028", "class_name": "RelatedNodeInfo"}}, "hash": "de74c95b3e74e46b78068b8561ba75bf39404d92f3472ece69e739db8329a600", "text": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bbf248aa-e49f-4f76-85bc-4c70c513eb71": {"__data__": {"id_": "bbf248aa-e49f-4f76-85bc-4c70c513eb71", "embedding": null, "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n", "original_text": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "080d0243-4bdc-4328-b9db-6d34dce3f1f8", "node_type": "1", "metadata": {"window": "Debit card activation process., Debit Card Activation., Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "original_text": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de74c95b3e74e46b78068b8561ba75bf39404d92f3472ece69e739db8329a600", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c2f3d877-ab48-4be7-8373-d67d10c89cc6", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "original_text": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "716f59229f801772b2dd84a17f8c930adca8e180b352238bfaf0635f65d68351", "class_name": "RelatedNodeInfo"}}, "hash": "7eacfeeef5f03f5e11f7d64c45e351dcf6165c0534f218463ed72cd208a24028", "text": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c2f3d877-ab48-4be7-8373-d67d10c89cc6": {"__data__": {"id_": "c2f3d877-ab48-4be7-8373-d67d10c89cc6", "embedding": null, "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "original_text": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bbf248aa-e49f-4f76-85bc-4c70c513eb71", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n", "original_text": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7eacfeeef5f03f5e11f7d64c45e351dcf6165c0534f218463ed72cd208a24028", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a2d60074-833a-4715-87ee-0424f4dfb3a4", "node_type": "1", "metadata": {"window": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "original_text": "Daily limit of Debit Card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "82f649c64364c71522786f16fbb4f7c8b61315a07b88ac50caa5a279c8fd1080", "class_name": "RelatedNodeInfo"}}, "hash": "716f59229f801772b2dd84a17f8c930adca8e180b352238bfaf0635f65d68351", "text": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a2d60074-833a-4715-87ee-0424f4dfb3a4": {"__data__": {"id_": "a2d60074-833a-4715-87ee-0424f4dfb3a4", "embedding": null, "metadata": {"window": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "original_text": "Daily limit of Debit Card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c2f3d877-ab48-4be7-8373-d67d10c89cc6", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 5. What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "original_text": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "716f59229f801772b2dd84a17f8c930adca8e180b352238bfaf0635f65d68351", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "579f096b-8450-4b53-b5e0-2bb0cb4a3b8e", "node_type": "1", "metadata": {"window": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ea0702e2d3f7cd6f687f8ffe1a68bc068bb3fda5d267e895da1d6dd9b01ab33c", "class_name": "RelatedNodeInfo"}}, "hash": "82f649c64364c71522786f16fbb4f7c8b61315a07b88ac50caa5a279c8fd1080", "text": "Daily limit of Debit Card.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "579f096b-8450-4b53-b5e0-2bb0cb4a3b8e": {"__data__": {"id_": "579f096b-8450-4b53-b5e0-2bb0cb4a3b8e", "embedding": null, "metadata": {"window": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a2d60074-833a-4715-87ee-0424f4dfb3a4", "node_type": "1", "metadata": {"window": "What will be my Faysal Islami Master Debit Card limit after enhancement?, what will be my maximum limit after enhancement., Debit card limit enhancement., Faysal Islami Master Debit Card offers enhanced limits as follows:\n\nClassic: ATM - PKR 75,000 / POS - PKR 200,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 50,000\n\nGold: ATM - PKR 100,000 / POS - PKR 400,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 200,000\n\nPriority Platinum: ATM - PKR 300,000 / POS - PKR 750,000 / Fund Transfer - PKR 1,000,000 / Ecommerce - PKR 500,000\nnan, nan, nan, 4. How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "original_text": "Daily limit of Debit Card.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "82f649c64364c71522786f16fbb4f7c8b61315a07b88ac50caa5a279c8fd1080", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "18aef834-588b-46cd-b2ee-7bc4c8e8b7bc", "node_type": "1", "metadata": {"window": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c8e5170b4d6d2b93e7029539507c633ea971e4a175833700a065f6c35e1a4368", "class_name": "RelatedNodeInfo"}}, "hash": "ea0702e2d3f7cd6f687f8ffe1a68bc068bb3fda5d267e895da1d6dd9b01ab33c", "text": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "18aef834-588b-46cd-b2ee-7bc4c8e8b7bc": {"__data__": {"id_": "18aef834-588b-46cd-b2ee-7bc4c8e8b7bc", "embedding": null, "metadata": {"window": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "579f096b-8450-4b53-b5e0-2bb0cb4a3b8e", "node_type": "1", "metadata": {"window": "How can I enhance my Faysal Islami Master Debit Card Limit?, nan, Debit Card limit enhancement procedure., Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 3. What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ea0702e2d3f7cd6f687f8ffe1a68bc068bb3fda5d267e895da1d6dd9b01ab33c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bf20e12a-1f22-4924-bbb5-e54f0067adb0", "node_type": "1", "metadata": {"window": "Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "53e9a1c0f3bdaea9f4d35889cb2c2d3899da2aa097ecf2e972bdebb2bd1dd5ab", "class_name": "RelatedNodeInfo"}}, "hash": "c8e5170b4d6d2b93e7029539507c633ea971e4a175833700a065f6c35e1a4368", "text": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bf20e12a-1f22-4924-bbb5-e54f0067adb0": {"__data__": {"id_": "bf20e12a-1f22-4924-bbb5-e54f0067adb0", "embedding": null, "metadata": {"window": "Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "18aef834-588b-46cd-b2ee-7bc4c8e8b7bc", "node_type": "1", "metadata": {"window": "What are my Daily Transaction Limits on my Faysal Islami Master Debit Card?, what are the default limit on Debit card.\n Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c8e5170b4d6d2b93e7029539507c633ea971e4a175833700a065f6c35e1a4368", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2bd1e53a-5f94-474c-a4c9-a5386d802273", "node_type": "1", "metadata": {"window": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a7d3c22775373602ecfd7be1b2c47fcaf6125843a278629207fe9831e3413bb7", "class_name": "RelatedNodeInfo"}}, "hash": "53e9a1c0f3bdaea9f4d35889cb2c2d3899da2aa097ecf2e972bdebb2bd1dd5ab", "text": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2bd1e53a-5f94-474c-a4c9-a5386d802273": {"__data__": {"id_": "2bd1e53a-5f94-474c-a4c9-a5386d802273", "embedding": null, "metadata": {"window": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf20e12a-1f22-4924-bbb5-e54f0067adb0", "node_type": "1", "metadata": {"window": "Daily limit of Debit Card.\n , Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "53e9a1c0f3bdaea9f4d35889cb2c2d3899da2aa097ecf2e972bdebb2bd1dd5ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "47f10038-136b-4508-9c04-982528ca1633", "node_type": "1", "metadata": {"window": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "original_text": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "21d8603f0edf751ea02ce364cec774265cf7bc47480a3e43c9cbe06a813de502", "class_name": "RelatedNodeInfo"}}, "hash": "a7d3c22775373602ecfd7be1b2c47fcaf6125843a278629207fe9831e3413bb7", "text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "47f10038-136b-4508-9c04-982528ca1633": {"__data__": {"id_": "47f10038-136b-4508-9c04-982528ca1633", "embedding": null, "metadata": {"window": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "original_text": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2bd1e53a-5f94-474c-a4c9-a5386d802273", "node_type": "1", "metadata": {"window": ", Debit card default limit., Classic:\n\nATM: PKR 50,000/-\nPOS: PKR 75,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nGold:\n\nATM: PKR 75,000/-\nPOS: PKR 200,000/-\nIBFT: PKR 250,000/-\nIB: PKR 250,000/-\nPriority Platinum:\n\nATM: PKR 200,000/-\nPOS: PKR 500,000/-\nIBFT: PKR 500,000/-\nIB: PKR 500,000/-\nPlease note that these limits are subject to change, and it's always best to check with Faysal Islami or refer to their official documentation for the most up-to-date information.\n nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a7d3c22775373602ecfd7be1b2c47fcaf6125843a278629207fe9831e3413bb7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d651c02d-b2cc-421d-8431-3af058a15ee0", "node_type": "1", "metadata": {"window": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "22bec7cc76b3efd63dca2d6723d44fbdccd5e24a4ac8de962dd21ddaf7119474", "class_name": "RelatedNodeInfo"}}, "hash": "21d8603f0edf751ea02ce364cec774265cf7bc47480a3e43c9cbe06a813de502", "text": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d651c02d-b2cc-421d-8431-3af058a15ee0": {"__data__": {"id_": "d651c02d-b2cc-421d-8431-3af058a15ee0", "embedding": null, "metadata": {"window": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "47f10038-136b-4508-9c04-982528ca1633", "node_type": "1", "metadata": {"window": "nan, nan, nan, How many supplementary Faysal Islami Master Debit Card can be issued?, Supplementary Debit Card., Supplementary Debit Card., You can order up to 3 Supplementary Debit Cards\nnan, nan, nan, How can I change my Faysal Islami Master Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "original_text": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "21d8603f0edf751ea02ce364cec774265cf7bc47480a3e43c9cbe06a813de502", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce817407-6bf2-4805-8293-675ef161ed68", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6b3cad1e3fcec78a9daf982e708404d11169cdfdd5eca1f2d5ef5af1e3719da6", "class_name": "RelatedNodeInfo"}}, "hash": "22bec7cc76b3efd63dca2d6723d44fbdccd5e24a4ac8de962dd21ddaf7119474", "text": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce817407-6bf2-4805-8293-675ef161ed68": {"__data__": {"id_": "ce817407-6bf2-4805-8293-675ef161ed68", "embedding": null, "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d651c02d-b2cc-421d-8431-3af058a15ee0", "node_type": "1", "metadata": {"window": "ATM Pin change., ATM Pin change., Following are the ways you can change your Faysal Islami Master Debit Card PIN: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "22bec7cc76b3efd63dca2d6723d44fbdccd5e24a4ac8de962dd21ddaf7119474", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "253ca4b8-5bef-420a-8a05-9974885ce61a", "node_type": "1", "metadata": {"window": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3eca01382fc2f783a89351faa8833960312db94e210ae0da5661e1fcabda5fca", "class_name": "RelatedNodeInfo"}}, "hash": "6b3cad1e3fcec78a9daf982e708404d11169cdfdd5eca1f2d5ef5af1e3719da6", "text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "253ca4b8-5bef-420a-8a05-9974885ce61a": {"__data__": {"id_": "253ca4b8-5bef-420a-8a05-9974885ce61a", "embedding": null, "metadata": {"window": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce817407-6bf2-4805-8293-675ef161ed68", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami Master Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions:\nHelpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6b3cad1e3fcec78a9daf982e708404d11169cdfdd5eca1f2d5ef5af1e3719da6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0", "node_type": "1", "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "original_text": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "02fdefdab098349a818ab8ebc60483a3806d8613c2e8923b5dd1c09149258762", "class_name": "RelatedNodeInfo"}}, "hash": "3eca01382fc2f783a89351faa8833960312db94e210ae0da5661e1fcabda5fca", "text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0": {"__data__": {"id_": "c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0", "embedding": null, "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "original_text": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "253ca4b8-5bef-420a-8a05-9974885ce61a", "node_type": "1", "metadata": {"window": "Select International Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami Master Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3eca01382fc2f783a89351faa8833960312db94e210ae0da5661e1fcabda5fca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fe88573a-4a61-4bd7-a697-1d9100f205dc", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}}, "hash": "02fdefdab098349a818ab8ebc60483a3806d8613c2e8923b5dd1c09149258762", "text": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe88573a-4a61-4bd7-a697-1d9100f205dc": {"__data__": {"id_": "fe88573a-4a61-4bd7-a697-1d9100f205dc", "embedding": null, "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0", "node_type": "1", "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Master Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "original_text": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "02fdefdab098349a818ab8ebc60483a3806d8613c2e8923b5dd1c09149258762", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b309486c-2d0c-4225-91b1-6aa14b17c1e3", "node_type": "1", "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "132761480610df82b1d73178e210a5807d0cd23248c7133468f81276be68baeb", "class_name": "RelatedNodeInfo"}}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "text": "The cashier / merchant will swipe your card at the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b309486c-2d0c-4225-91b1-6aa14b17c1e3": {"__data__": {"id_": "b309486c-2d0c-4225-91b1-6aa14b17c1e3", "embedding": null, "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fe88573a-4a61-4bd7-a697-1d9100f205dc", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Master Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "56358d3b-53f0-4f3e-a06e-75c9b4cf1fea", "node_type": "1", "metadata": {"window": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "933a01215d5e97d69ea2693d9617a6f7ffae9db27681cc5f2c716ee56bf9e16e", "class_name": "RelatedNodeInfo"}}, "hash": "132761480610df82b1d73178e210a5807d0cd23248c7133468f81276be68baeb", "text": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "56358d3b-53f0-4f3e-a06e-75c9b4cf1fea": {"__data__": {"id_": "56358d3b-53f0-4f3e-a06e-75c9b4cf1fea", "embedding": null, "metadata": {"window": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b309486c-2d0c-4225-91b1-6aa14b17c1e3", "node_type": "1", "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I view the discounts available on my Faysal Islami Master Debit Card?, nan, nan, Please scan the QR: {insert QR}\nnan, nan, nan, How can I use my Faysal Islami Master Debit Card?\n , How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "132761480610df82b1d73178e210a5807d0cd23248c7133468f81276be68baeb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "432d8ff8-91a4-4ef8-9197-69b4ffea9a7e", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ced66d42ba7c3871ff26b4855baa50629ab1c1fefa50ce8688b307a4ecd8c1c1", "class_name": "RelatedNodeInfo"}}, "hash": "933a01215d5e97d69ea2693d9617a6f7ffae9db27681cc5f2c716ee56bf9e16e", "text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "432d8ff8-91a4-4ef8-9197-69b4ffea9a7e": {"__data__": {"id_": "432d8ff8-91a4-4ef8-9197-69b4ffea9a7e", "embedding": null, "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56358d3b-53f0-4f3e-a06e-75c9b4cf1fea", "node_type": "1", "metadata": {"window": ", How can I use my ATM Master Card., Use of Master Debit Card., Faysal Islami Master Debit Card can be used wherever you see the MasterCard logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "933a01215d5e97d69ea2693d9617a6f7ffae9db27681cc5f2c716ee56bf9e16e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "77073c38-3d34-4b87-909c-b16142a610f0", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. ", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}}, "hash": "ced66d42ba7c3871ff26b4855baa50629ab1c1fefa50ce8688b307a4ecd8c1c1", "text": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "77073c38-3d34-4b87-909c-b16142a610f0": {"__data__": {"id_": "77073c38-3d34-4b87-909c-b16142a610f0", "embedding": null, "metadata": {"window": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. ", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "432d8ff8-91a4-4ef8-9197-69b4ffea9a7e", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ced66d42ba7c3871ff26b4855baa50629ab1c1fefa50ce8688b307a4ecd8c1c1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. ", "original_text": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "45ada246d8219958c4c601a3a129d1698e8d667863f65349b971ddabe3985e61", "class_name": "RelatedNodeInfo"}}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "text": "Keep your card in a safe place at all times.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b": {"__data__": {"id_": "ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b", "embedding": null, "metadata": {"window": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. ", "original_text": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "77073c38-3d34-4b87-909c-b16142a610f0", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when prompted by the merchant\nCollect your invoice.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. ", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "71534514-ce51-4219-baa4-3bdc0bf2a7b1", "node_type": "1", "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n", "original_text": "Note: Do not write the PIN on the card or anywhere else. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ccab1f511759b40d47361c63990a8844c015613100fe320103031bd9ffd44108", "class_name": "RelatedNodeInfo"}}, "hash": "45ada246d8219958c4c601a3a129d1698e8d667863f65349b971ddabe3985e61", "text": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "71534514-ce51-4219-baa4-3bdc0bf2a7b1": {"__data__": {"id_": "71534514-ce51-4219-baa4-3bdc0bf2a7b1", "embedding": null, "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n", "original_text": "Note: Do not write the PIN on the card or anywhere else. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Master Debit Card?, Is Master Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. ", "original_text": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "45ada246d8219958c4c601a3a129d1698e8d667863f65349b971ddabe3985e61", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "47308108-c00d-4e76-ac1e-1a751fee7390", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not share your PIN over the phone or email to anyone. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9ae5c6b487d364dc863cc21e45f2e31d839ce698b2af1b00bf0cd6e2d65b2397", "class_name": "RelatedNodeInfo"}}, "hash": "ccab1f511759b40d47361c63990a8844c015613100fe320103031bd9ffd44108", "text": "Note: Do not write the PIN on the card or anywhere else. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "47308108-c00d-4e76-ac1e-1a751fee7390": {"__data__": {"id_": "47308108-c00d-4e76-ac1e-1a751fee7390", "embedding": null, "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not share your PIN over the phone or email to anyone. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "71534514-ce51-4219-baa4-3bdc0bf2a7b1", "node_type": "1", "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n", "original_text": "Note: Do not write the PIN on the card or anywhere else. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ccab1f511759b40d47361c63990a8844c015613100fe320103031bd9ffd44108", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6d85b210-c296-4a51-a994-39ed27d505ff", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "Faysal Islami will never its customers to present such information. \n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4c87e5cfd636c79bcd46247f0d132afbc48812a64a108ac9af7c920195f16a0b", "class_name": "RelatedNodeInfo"}}, "hash": "9ae5c6b487d364dc863cc21e45f2e31d839ce698b2af1b00bf0cd6e2d65b2397", "text": "Do not share your PIN over the phone or email to anyone. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6d85b210-c296-4a51-a994-39ed27d505ff": {"__data__": {"id_": "6d85b210-c296-4a51-a994-39ed27d505ff", "embedding": null, "metadata": {"window": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "Faysal Islami will never its customers to present such information. \n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "47308108-c00d-4e76-ac1e-1a751fee7390", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not share your PIN over the phone or email to anyone. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9ae5c6b487d364dc863cc21e45f2e31d839ce698b2af1b00bf0cd6e2d65b2397", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0", "node_type": "1", "metadata": {"window": "Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d7a1db68fcede76e7727f0bc864df64e38b4bd886124824ed7a7e3f3baac9927", "class_name": "RelatedNodeInfo"}}, "hash": "4c87e5cfd636c79bcd46247f0d132afbc48812a64a108ac9af7c920195f16a0b", "text": "Faysal Islami will never its customers to present such information. \n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0": {"__data__": {"id_": "1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0", "embedding": null, "metadata": {"window": "Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d85b210-c296-4a51-a994-39ed27d505ff", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call our helpline at 111 06 06 06 to generate a new PIN.\n Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "Faysal Islami will never its customers to present such information. \n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4c87e5cfd636c79bcd46247f0d132afbc48812a64a108ac9af7c920195f16a0b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7df7d413ca66037119e469216a68f18e38b345fbab344707604a5daba07e2df1", "class_name": "RelatedNodeInfo"}}, "hash": "d7a1db68fcede76e7727f0bc864df64e38b4bd886124824ed7a7e3f3baac9927", "text": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589": {"__data__": {"id_": "afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589", "embedding": null, "metadata": {"window": "Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0", "node_type": "1", "metadata": {"window": "Note: Do not write the PIN on the card or anywhere else. Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d7a1db68fcede76e7727f0bc864df64e38b4bd886124824ed7a7e3f3baac9927", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "89e19391-1500-4af4-bbac-7611c7416784", "node_type": "1", "metadata": {"window": "Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "class_name": "RelatedNodeInfo"}}, "hash": "7df7d413ca66037119e469216a68f18e38b345fbab344707604a5daba07e2df1", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "89e19391-1500-4af4-bbac-7611c7416784": {"__data__": {"id_": "89e19391-1500-4af4-bbac-7611c7416784", "embedding": null, "metadata": {"window": "Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone. Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7df7d413ca66037119e469216a68f18e38b345fbab344707604a5daba07e2df1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ede91f75-ebe7-4b86-baa4-a6ec6018b538", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "27a492a9486c1bbbb24d304e5dbfde3953778e86258c43152ccbd896df84a9e0", "class_name": "RelatedNodeInfo"}}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ede91f75-ebe7-4b86-baa4-a6ec6018b538": {"__data__": {"id_": "ede91f75-ebe7-4b86-baa4-a6ec6018b538", "embedding": null, "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "89e19391-1500-4af4-bbac-7611c7416784", "node_type": "1", "metadata": {"window": "Faysal Islami will never its customers to present such information. \n\n nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f82d22d1-316f-4b18-807a-924dd2fab1ed", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "697f60008c4a3939e066df99108ab3c5b6df9694d880d715a8f5a846d8a7382b", "class_name": "RelatedNodeInfo"}}, "hash": "27a492a9486c1bbbb24d304e5dbfde3953778e86258c43152ccbd896df84a9e0", "text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f82d22d1-316f-4b18-807a-924dd2fab1ed": {"__data__": {"id_": "f82d22d1-316f-4b18-807a-924dd2fab1ed", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ede91f75-ebe7-4b86-baa4-a6ec6018b538", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami Master Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Debit Master Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "27a492a9486c1bbbb24d304e5dbfde3953778e86258c43152ccbd896df84a9e0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cf0b8afe-a302-4034-a8a2-b14d7a56b635", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f7deab8cb0abbb1b16115b2a38ba0e059f6426a93be587fb7275d7c37e4927b0", "class_name": "RelatedNodeInfo"}}, "hash": "697f60008c4a3939e066df99108ab3c5b6df9694d880d715a8f5a846d8a7382b", "text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cf0b8afe-a302-4034-a8a2-b14d7a56b635": {"__data__": {"id_": "cf0b8afe-a302-4034-a8a2-b14d7a56b635", "embedding": null, "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f82d22d1-316f-4b18-807a-924dd2fab1ed", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Debit Card?, nan, nan, You can request for Faysal Islami Visa Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Visa Debit Card?, nan, nan, Your Debit Card can be activated via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "697f60008c4a3939e066df99108ab3c5b6df9694d880d715a8f5a846d8a7382b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "66097377-c9fb-48a9-8223-b9325ecbaa25", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}}, "hash": "f7deab8cb0abbb1b16115b2a38ba0e059f6426a93be587fb7275d7c37e4927b0", "text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "66097377-c9fb-48a9-8223-b9325ecbaa25": {"__data__": {"id_": "66097377-c9fb-48a9-8223-b9325ecbaa25", "embedding": null, "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf0b8afe-a302-4034-a8a2-b14d7a56b635", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f7deab8cb0abbb1b16115b2a38ba0e059f6426a93be587fb7275d7c37e4927b0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1f738b02-b8e1-4de2-b537-96b2f5f6e24c", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "class_name": "RelatedNodeInfo"}}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "text": "Keep your card in a safe place at all times.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1f738b02-b8e1-4de2-b537-96b2f5f6e24c": {"__data__": {"id_": "1f738b02-b8e1-4de2-b537-96b2f5f6e24c", "embedding": null, "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "66097377-c9fb-48a9-8223-b9325ecbaa25", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Visa Debit Card?, nan, nan, Your Daily transaction limits are the following:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Visa Debit Card limit after enhancement?, nan, nan, Llimits of your Faysal Islami Visa Debit Card can be enhanced to the following:\nScheme Enhanced Limits\nClassic ATM - PKR 60,000 / -\nPOS - PKR 250,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 1,000,000 /-\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Debit Card PIN?, nan, nan, You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bef86ef8-4999-42d5-a507-8d8f37263d9f", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bef86ef8-4999-42d5-a507-8d8f37263d9f": {"__data__": {"id_": "bef86ef8-4999-42d5-a507-8d8f37263d9f", "embedding": null, "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f738b02-b8e1-4de2-b537-96b2f5f6e24c", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3ca4c88a-c14e-4139-80f9-693e3e64abc8", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "class_name": "RelatedNodeInfo"}}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "text": "Do not write the PIN on the card or anywhere else.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3ca4c88a-c14e-4139-80f9-693e3e64abc8": {"__data__": {"id_": "3ca4c88a-c14e-4139-80f9-693e3e64abc8", "embedding": null, "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bef86ef8-4999-42d5-a507-8d8f37263d9f", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Visa Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Visa Debit Card?, nan, nan, Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "42616556-b70f-4166-96d3-b2f2c62e1004", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "db19f4225c2877e5c9f9a09aa00ee198e18bf0a53937cde004d30c4330dbeef9", "class_name": "RelatedNodeInfo"}}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "42616556-b70f-4166-96d3-b2f2c62e1004": {"__data__": {"id_": "42616556-b70f-4166-96d3-b2f2c62e1004", "embedding": null, "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3ca4c88a-c14e-4139-80f9-693e3e64abc8", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8530fe78-89ba-45f6-bd75-acaf32293ca2", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "original_text": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a167a7d09a0d465bc69466630ff95b32d9fe02b7734cd1b23b4b2ce297a14862", "class_name": "RelatedNodeInfo"}}, "hash": "db19f4225c2877e5c9f9a09aa00ee198e18bf0a53937cde004d30c4330dbeef9", "text": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8530fe78-89ba-45f6-bd75-acaf32293ca2": {"__data__": {"id_": "8530fe78-89ba-45f6-bd75-acaf32293ca2", "embedding": null, "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "original_text": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "42616556-b70f-4166-96d3-b2f2c62e1004", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "db19f4225c2877e5c9f9a09aa00ee198e18bf0a53937cde004d30c4330dbeef9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7ac37dcd-cac1-48db-aba7-a6a821234745", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}}, "hash": "a167a7d09a0d465bc69466630ff95b32d9fe02b7734cd1b23b4b2ce297a14862", "text": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7ac37dcd-cac1-48db-aba7-a6a821234745": {"__data__": {"id_": "7ac37dcd-cac1-48db-aba7-a6a821234745", "embedding": null, "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8530fe78-89ba-45f6-bd75-acaf32293ca2", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "original_text": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a167a7d09a0d465bc69466630ff95b32d9fe02b7734cd1b23b4b2ce297a14862", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "82680df8-e08e-4b91-8ddd-6d349e4c5705", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b383fe8a635ba712c3055b6074bb32bcb041a616cebadba4b434ffa564c97b1f", "class_name": "RelatedNodeInfo"}}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "text": "The cashier / merchant will swipe your card at the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "82680df8-e08e-4b91-8ddd-6d349e4c5705": {"__data__": {"id_": "82680df8-e08e-4b91-8ddd-6d349e4c5705", "embedding": null, "metadata": {"window": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7ac37dcd-cac1-48db-aba7-a6a821234745", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9e8028d9-2d6e-4ad8-9652-401ba37f754d", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "cdc2ae0fa8ceb0d112f3bae78fa08dc1d6c00a33f5aa50263d2297935132db3c", "class_name": "RelatedNodeInfo"}}, "hash": "b383fe8a635ba712c3055b6074bb32bcb041a616cebadba4b434ffa564c97b1f", "text": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e8028d9-2d6e-4ad8-9652-401ba37f754d": {"__data__": {"id_": "9e8028d9-2d6e-4ad8-9652-401ba37f754d", "embedding": null, "metadata": {"window": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "82680df8-e08e-4b91-8ddd-6d349e4c5705", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if I lose my Faysal Islami Visa Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b383fe8a635ba712c3055b6074bb32bcb041a616cebadba4b434ffa564c97b1f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "034b01ea-42bf-4c6a-971e-5341e4263b77", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "class_name": "RelatedNodeInfo"}}, "hash": "cdc2ae0fa8ceb0d112f3bae78fa08dc1d6c00a33f5aa50263d2297935132db3c", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "034b01ea-42bf-4c6a-971e-5341e4263b77": {"__data__": {"id_": "034b01ea-42bf-4c6a-971e-5341e4263b77", "embedding": null, "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9e8028d9-2d6e-4ad8-9652-401ba37f754d", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I use my Faysal Islami Visa Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "cdc2ae0fa8ceb0d112f3bae78fa08dc1d6c00a33f5aa50263d2297935132db3c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3de386a0-191f-4355-b5a6-41c5deb75a50", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "32d335d3f36d8424c28765dc349a80e9b94745cd70a5976148eed4fcf9ce62cd", "class_name": "RelatedNodeInfo"}}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3de386a0-191f-4355-b5a6-41c5deb75a50": {"__data__": {"id_": "3de386a0-191f-4355-b5a6-41c5deb75a50", "embedding": null, "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "034b01ea-42bf-4c6a-971e-5341e4263b77", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ed1d808f-3af2-4494-8d50-bfb5b986fd72", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "original_text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a81f2af19712aafa29cfc5390846d0694bc20b03bfde554e40b56b86b8d37724", "class_name": "RelatedNodeInfo"}}, "hash": "32d335d3f36d8424c28765dc349a80e9b94745cd70a5976148eed4fcf9ce62cd", "text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ed1d808f-3af2-4494-8d50-bfb5b986fd72": {"__data__": {"id_": "ed1d808f-3af2-4494-8d50-bfb5b986fd72", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "original_text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3de386a0-191f-4355-b5a6-41c5deb75a50", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your invoice.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "32d335d3f36d8424c28765dc349a80e9b94745cd70a5976148eed4fcf9ce62cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "427083ea-5cd2-4687-884b-e27727bc603b", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4d295df98a8328b3cb6ddc81c40a4e132c417e25f2d1ae4cd7986af3617a6eea", "class_name": "RelatedNodeInfo"}}, "hash": "a81f2af19712aafa29cfc5390846d0694bc20b03bfde554e40b56b86b8d37724", "text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "427083ea-5cd2-4687-884b-e27727bc603b": {"__data__": {"id_": "427083ea-5cd2-4687-884b-e27727bc603b", "embedding": null, "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed1d808f-3af2-4494-8d50-bfb5b986fd72", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic UnionPay Debit Card, How can I make a request for my Faysal Islami Union Pay Debit Card?, How to apply Union Pay Debit Card., How to apply Union Pay Debit Card., You can request for a Faysal Islami Union Pay Debit Card via:\nDial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, How can I activate my Faysal Islami Union Pay Debit Card?, nan, Union Pay Debit card Activation., You can activate your Debit Card via:\nHelpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\nDigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "original_text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a81f2af19712aafa29cfc5390846d0694bc20b03bfde554e40b56b86b8d37724", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d54b86e0-e7ab-4346-800b-d613e9ee8bbc", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7aa7c9835792f0977ff33e31ce7ec44203bc41b73982e9457a86bbf4b892afef", "class_name": "RelatedNodeInfo"}}, "hash": "4d295df98a8328b3cb6ddc81c40a4e132c417e25f2d1ae4cd7986af3617a6eea", "text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d54b86e0-e7ab-4346-800b-d613e9ee8bbc": {"__data__": {"id_": "d54b86e0-e7ab-4346-800b-d613e9ee8bbc", "embedding": null, "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "427083ea-5cd2-4687-884b-e27727bc603b", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\nATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4d295df98a8328b3cb6ddc81c40a4e132c417e25f2d1ae4cd7986af3617a6eea", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c3d09c63-cedd-48e4-abee-e2f4065b24ab", "node_type": "1", "metadata": {"window": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8d8c027bb4712adc935c4ba9fc921e249e68f8880c6e3aa1dd1d7156967c8056", "class_name": "RelatedNodeInfo"}}, "hash": "7aa7c9835792f0977ff33e31ce7ec44203bc41b73982e9457a86bbf4b892afef", "text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c3d09c63-cedd-48e4-abee-e2f4065b24ab": {"__data__": {"id_": "c3d09c63-cedd-48e4-abee-e2f4065b24ab", "embedding": null, "metadata": {"window": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d54b86e0-e7ab-4346-800b-d613e9ee8bbc", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my Faysal Islami Union Pay Debit Card?, nan, Daily Limit of Union Pay Debit Card., Your Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nClassic ATM - 25,000/-\nPOS \u2013 PKR 50,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \nGold ATM - 50,000/-\nPOS \u2013 PKR 200,000/- \nIBFT / Internal Fund Transfer \u2013 PKR 250,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Master Debit Union Pay Debit Card?, nan, nan, You can enhance limits of your Faysal Islami Visa Debit Card by the following ways: Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, What will be my Faysal Islami Master Debit Union Pay Debit Card limit after enhancement?, nan, nan, Your limits can be enhanced to the following:\n\nScheme Enhanced Limits\nClassic ATM - PKR 50,000 / -\nPOS - PKR 200,000 /-\nGold ATM - PKR 100,000 /-\nPOS - PKR 500,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Union Pay Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7aa7c9835792f0977ff33e31ce7ec44203bc41b73982e9457a86bbf4b892afef", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b14fd0da-92e7-4277-b8fa-7b62160fb6e9", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "fdd0f9d06105ec16b01e60561bac36b84db6a76c5b591370837447272e40a003", "class_name": "RelatedNodeInfo"}}, "hash": "8d8c027bb4712adc935c4ba9fc921e249e68f8880c6e3aa1dd1d7156967c8056", "text": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b14fd0da-92e7-4277-b8fa-7b62160fb6e9": {"__data__": {"id_": "b14fd0da-92e7-4277-b8fa-7b62160fb6e9", "embedding": null, "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c3d09c63-cedd-48e4-abee-e2f4065b24ab", "node_type": "1", "metadata": {"window": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8d8c027bb4712adc935c4ba9fc921e249e68f8880c6e3aa1dd1d7156967c8056", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9257befb-5502-49e9-9a18-64a47c3bd267", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e8a696856dfe443952e4e88e28d01d2c3ee965034794f5c7058cbdc0e21f0282", "class_name": "RelatedNodeInfo"}}, "hash": "fdd0f9d06105ec16b01e60561bac36b84db6a76c5b591370837447272e40a003", "text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9257befb-5502-49e9-9a18-64a47c3bd267": {"__data__": {"id_": "9257befb-5502-49e9-9a18-64a47c3bd267", "embedding": null, "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b14fd0da-92e7-4277-b8fa-7b62160fb6e9", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "fdd0f9d06105ec16b01e60561bac36b84db6a76c5b591370837447272e40a003", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "13c267a0-e573-40a6-a7b4-dff10708e83f", "node_type": "1", "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}}, "hash": "e8a696856dfe443952e4e88e28d01d2c3ee965034794f5c7058cbdc0e21f0282", "text": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "13c267a0-e573-40a6-a7b4-dff10708e83f": {"__data__": {"id_": "13c267a0-e573-40a6-a7b4-dff10708e83f", "embedding": null, "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9257befb-5502-49e9-9a18-64a47c3bd267", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e8a696856dfe443952e4e88e28d01d2c3ee965034794f5c7058cbdc0e21f0282", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "48cf3606-fa3d-4300-beff-779408dd78b4", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "class_name": "RelatedNodeInfo"}}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "text": "Keep your card in a safe place at all times.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "48cf3606-fa3d-4300-beff-779408dd78b4": {"__data__": {"id_": "48cf3606-fa3d-4300-beff-779408dd78b4", "embedding": null, "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "13c267a0-e573-40a6-a7b4-dff10708e83f", "node_type": "1", "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., Visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I raise a dispute on my Faysal Islami Union Pay Debit Card?, Debit Card dispute pricess., Debit Card Dispute., Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3", "node_type": "1", "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3": {"__data__": {"id_": "c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3", "embedding": null, "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "48cf3606-fa3d-4300-beff-779408dd78b4", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami Union Pay Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami Union Pay Debit Card?, Is Union pay Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "51055fb7-b0a6-4c54-b5c6-e947bc8662ba", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "class_name": "RelatedNodeInfo"}}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "text": "Do not write the PIN on the card or anywhere else.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "51055fb7-b0a6-4c54-b5c6-e947bc8662ba": {"__data__": {"id_": "51055fb7-b0a6-4c54-b5c6-e947bc8662ba", "embedding": null, "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3", "node_type": "1", "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Union Pay Debit Card., To ensure safety of your Debit card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "610ef6e2-f0b5-4cfc-a801-3c0561364c39", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "41ae066aac516f226b26eeb15b071ba3d634bc9dac94de4b1e834511e11468cf", "class_name": "RelatedNodeInfo"}}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "610ef6e2-f0b5-4cfc-a801-3c0561364c39": {"__data__": {"id_": "610ef6e2-f0b5-4cfc-a801-3c0561364c39", "embedding": null, "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "51055fb7-b0a6-4c54-b5c6-e947bc8662ba", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "77744220-3445-4612-9666-4925739733eb", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "67b002c9d4e32bdd8fb66e9d8a3eca0e3dcce2e031eb5e1aa620e2b415c9f72d", "class_name": "RelatedNodeInfo"}}, "hash": "41ae066aac516f226b26eeb15b071ba3d634bc9dac94de4b1e834511e11468cf", "text": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "77744220-3445-4612-9666-4925739733eb": {"__data__": {"id_": "77744220-3445-4612-9666-4925739733eb", "embedding": null, "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "610ef6e2-f0b5-4cfc-a801-3c0561364c39", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "41ae066aac516f226b26eeb15b071ba3d634bc9dac94de4b1e834511e11468cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2df03af1-4f12-444e-a6fe-2c4713138d17", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}}, "hash": "67b002c9d4e32bdd8fb66e9d8a3eca0e3dcce2e031eb5e1aa620e2b415c9f72d", "text": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2df03af1-4f12-444e-a6fe-2c4713138d17": {"__data__": {"id_": "2df03af1-4f12-444e-a6fe-2c4713138d17", "embedding": null, "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "77744220-3445-4612-9666-4925739733eb", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "67b002c9d4e32bdd8fb66e9d8a3eca0e3dcce2e031eb5e1aa620e2b415c9f72d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "class_name": "RelatedNodeInfo"}}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "text": "The cashier / merchant will swipe your card at the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9": {"__data__": {"id_": "5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9", "embedding": null, "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2df03af1-4f12-444e-a6fe-2c4713138d17", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b424dd93-ebd0-49de-be22-4de534d02f37", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "90f83533b414da201d7a6760c3d672e9454074a06fb375309eceffc9d68911cb", "class_name": "RelatedNodeInfo"}}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b424dd93-ebd0-49de-be22-4de534d02f37": {"__data__": {"id_": "b424dd93-ebd0-49de-be22-4de534d02f37", "embedding": null, "metadata": {"window": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami Union Pay Debit Card is stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Master Debit Card., If your Faysal Islami Union Pay Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc9e04b0-61fb-481c-af29-b5bdb89b0cc6", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "class_name": "RelatedNodeInfo"}}, "hash": "90f83533b414da201d7a6760c3d672e9454074a06fb375309eceffc9d68911cb", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc9e04b0-61fb-481c-af29-b5bdb89b0cc6": {"__data__": {"id_": "fc9e04b0-61fb-481c-af29-b5bdb89b0cc6", "embedding": null, "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b424dd93-ebd0-49de-be22-4de534d02f37", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I use my Faysal Islami Union Pay Debit Card?, How can I use my ATM Union Pay Card., Use of Union Pay Debit Card., Faysal Islami Union Pay Debit Card can be used wherever you see the UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "90f83533b414da201d7a6760c3d672e9454074a06fb375309eceffc9d68911cb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "089da9b0-2701-48dd-954b-346b7e3bdcc3", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f2b73e7c7b3384c654e50387955c0b120ba8838e2eadd4049a61f9d694c60d2a", "class_name": "RelatedNodeInfo"}}, "hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "089da9b0-2701-48dd-954b-346b7e3bdcc3": {"__data__": {"id_": "089da9b0-2701-48dd-954b-346b7e3bdcc3", "embedding": null, "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc9e04b0-61fb-481c-af29-b5bdb89b0cc6", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3b9086fa-00f2-410e-a25d-beea94b84611", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a3b4e38ad5347386ed79f0792c4767659b9e12270f82e885ed6779bf7ee55811", "class_name": "RelatedNodeInfo"}}, "hash": "f2b73e7c7b3384c654e50387955c0b120ba8838e2eadd4049a61f9d694c60d2a", "text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3b9086fa-00f2-410e-a25d-beea94b84611": {"__data__": {"id_": "3b9086fa-00f2-410e-a25d-beea94b84611", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "089da9b0-2701-48dd-954b-346b7e3bdcc3", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f2b73e7c7b3384c654e50387955c0b120ba8838e2eadd4049a61f9d694c60d2a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5f75a35a-64e3-4504-a024-c2f8e0a71acc", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "94d88b8b68c0e63953899a5a24c403f783bb8a4cb4a37089d660cf98e43aad47", "class_name": "RelatedNodeInfo"}}, "hash": "a3b4e38ad5347386ed79f0792c4767659b9e12270f82e885ed6779bf7ee55811", "text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5f75a35a-64e3-4504-a024-c2f8e0a71acc": {"__data__": {"id_": "5f75a35a-64e3-4504-a024-c2f8e0a71acc", "embedding": null, "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3b9086fa-00f2-410e-a25d-beea94b84611", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic PayPak Debit Card, How can I make a request for my Faysal Islami PayPak Debit Card, How to apply Union Pay Debit Card., How to apply Union Pay Pak Debit Card., You can request for a Faysal Islami Union Pay Debit Card via: \nHelpline - Dial 111 06 06 06 from your registered number to place Debit Card request\nWhatsapp - Message on 0310-178-786 to make a request for your Debit Card\nBranch \u2013 visit branch with your original CNIC\n\n\nnan, nan, nan, How can I activate my PayPak Co-badge Debit Card?, nan, Union Pay Pak Debit card Activation., Debit Card can be activated via:\n\uf02d Helpline - Dial 111 06 06 06 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a3b4e38ad5347386ed79f0792c4767659b9e12270f82e885ed6779bf7ee55811", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a4fff09d-9522-4478-9af1-0b504fa4c8ee", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "original_text": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d18fd2c430c7d293ac2d381e70f568590b744f74c26db8d0c931684c34681279", "class_name": "RelatedNodeInfo"}}, "hash": "94d88b8b68c0e63953899a5a24c403f783bb8a4cb4a37089d660cf98e43aad47", "text": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a4fff09d-9522-4478-9af1-0b504fa4c8ee": {"__data__": {"id_": "a4fff09d-9522-4478-9af1-0b504fa4c8ee", "embedding": null, "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "original_text": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5f75a35a-64e3-4504-a024-c2f8e0a71acc", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "original_text": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "94d88b8b68c0e63953899a5a24c403f783bb8a4cb4a37089d660cf98e43aad47", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9cbe439e-17ff-4956-9b1b-60467873986a", "node_type": "1", "metadata": {"window": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e135e35b5445c461e9c62513653c1beb0df20ba76588a29090dc168760701fd4", "class_name": "RelatedNodeInfo"}}, "hash": "d18fd2c430c7d293ac2d381e70f568590b744f74c26db8d0c931684c34681279", "text": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9cbe439e-17ff-4956-9b1b-60467873986a": {"__data__": {"id_": "9cbe439e-17ff-4956-9b1b-60467873986a", "embedding": null, "metadata": {"window": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a4fff09d-9522-4478-9af1-0b504fa4c8ee", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, What are my Daily Transaction Limits on my PayPak Co-badge Debit Card?, nan, Daily Limit of Union Pay Pak Debit Card., Your Daily transaction limits are as follows:\n\nScheme Daily Transaction Limit\nPayPak ATM - 50,000/-\nPOS \u2013 PKR 75,000/- \nIBFT \u2013 PKR 250,000/- \nIB \u2013 PKR 250,000/-\n\nnan, nan, nan, How can I enhance my Faysal Islami PayPak Co-badge Debit Card Limit?, nan, nan, To enahnce your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, \u00a0What will be my Faysal Islami PayPak Co-badge Debit Card Limit after enhancement?, nan, nan, Existing limits of Faysal Islami PayPak Debit Card limit can be enhanced to as follows:\n\nScheme Enhanced Limits\nPayPak ATM - PKR 75,000 / -\nPOS - PKR 200,000 /-\nFund Transfer - PKR 1,000,000 /-\n\n\nnan, nan, nan, How can I make a request for Supplementary Faysal Islami PayPak Co-badge Debit Card?, nan, Pay Pak supplementary Card., To issue a supplementry debit card simply visit Faysal Islami Branch with ypur original CNIC \nnan, nan, nan, How many supplementary Faysal Islami PayPak Co-badge Debit Card can be issued?, nan, Limit of Supplementary Pay Pak Debit Card., You can request upto 3 supplementry Debit Card \nnan, nan, nan, How can I change my Faysal Islami PayPak Co-badge Debit Card PIN?, Debit card PIN change.\n ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "original_text": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d18fd2c430c7d293ac2d381e70f568590b744f74c26db8d0c931684c34681279", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7d66f518-2159-49aa-8012-6d62f52ad994", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0c1d3f432a85f9e20e3fd778c29384af0c9c2bf6401d32c1c71ab5ef49c141cf", "class_name": "RelatedNodeInfo"}}, "hash": "e135e35b5445c461e9c62513653c1beb0df20ba76588a29090dc168760701fd4", "text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7d66f518-2159-49aa-8012-6d62f52ad994": {"__data__": {"id_": "7d66f518-2159-49aa-8012-6d62f52ad994", "embedding": null, "metadata": {"window": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9cbe439e-17ff-4956-9b1b-60467873986a", "node_type": "1", "metadata": {"window": "ATM Pin change., ATM Pin change., You can change your card PIN via: Helpline - Dial 111 06 06 06 from your registered number and request for changing PIN\n DigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e135e35b5445c461e9c62513653c1beb0df20ba76588a29090dc168760701fd4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3ac9c49e-8062-4406-b88b-1d61d2f729a7", "node_type": "1", "metadata": {"window": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6f49aa1eccfcae186afd62c515222b6a6e637a388e1a43750310292fe05c846e", "class_name": "RelatedNodeInfo"}}, "hash": "0c1d3f432a85f9e20e3fd778c29384af0c9c2bf6401d32c1c71ab5ef49c141cf", "text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3ac9c49e-8062-4406-b88b-1d61d2f729a7": {"__data__": {"id_": "3ac9c49e-8062-4406-b88b-1d61d2f729a7", "embedding": null, "metadata": {"window": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7d66f518-2159-49aa-8012-6d62f52ad994", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\n ATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I activate Cross Border Transaction on my Faysal Islami PayPak Co-badge Debit Card?, How to activate Debit Card for International usage., Activation of International Transaction., Following are the ways you can activate Cross Border Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Cross Border Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0c1d3f432a85f9e20e3fd778c29384af0c9c2bf6401d32c1c71ab5ef49c141cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "da757de5-538d-4be4-b223-ec8234460492", "node_type": "1", "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}}, "hash": "6f49aa1eccfcae186afd62c515222b6a6e637a388e1a43750310292fe05c846e", "text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "da757de5-538d-4be4-b223-ec8234460492": {"__data__": {"id_": "da757de5-538d-4be4-b223-ec8234460492", "embedding": null, "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3ac9c49e-8062-4406-b88b-1d61d2f729a7", "node_type": "1", "metadata": {"window": "Select International Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6f49aa1eccfcae186afd62c515222b6a6e637a388e1a43750310292fe05c846e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a9038689-bae1-476d-8d32-1288a1dec308", "node_type": "1", "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "class_name": "RelatedNodeInfo"}}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "text": "The cashier / merchant will swipe your card at the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a9038689-bae1-476d-8d32-1288a1dec308": {"__data__": {"id_": "a9038689-bae1-476d-8d32-1288a1dec308", "embedding": null, "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "da757de5-538d-4be4-b223-ec8234460492", "node_type": "1", "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, How can I activate Ecommerce Transaction on my Faysal Islami PayPak Co-badge Debit Card?, Ho to activate Debit Card For E-Commerce transaction., Debit Card E-Commerce Activation., Following are the ways you can activate Ecommerce Transactions: Helpline - Dial 111 06 06 06 from your registered number and request for Ecommerce Transaction Activation\nDigiBank \u2013 Log on to Digi Bank and select Card Management. Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c25cf3d9-8924-473a-ba31-59872ac40309", "node_type": "1", "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2d44e9a62165e36e20fa76cd41cd83c58779533017c44ee987d155a384bdec99", "class_name": "RelatedNodeInfo"}}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c25cf3d9-8924-473a-ba31-59872ac40309": {"__data__": {"id_": "c25cf3d9-8924-473a-ba31-59872ac40309", "embedding": null, "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a9038689-bae1-476d-8d32-1288a1dec308", "node_type": "1", "metadata": {"window": "Select Cross Border Transactions activations and follow the instructions \n\nnan, nan, nan, What should I do if I have queries / complaints regarding my Faysal Islami PayPak Co-badge Debit Card?, How to initiate a complain.\n How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "afdc513d-db48-4fb2-9c1c-e05ef8fd3547", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4a72644cf4a3405f349ad7f8c121b3945932551c66c2a86cf8ba5f8d89ee8693", "class_name": "RelatedNodeInfo"}}, "hash": "2d44e9a62165e36e20fa76cd41cd83c58779533017c44ee987d155a384bdec99", "text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "afdc513d-db48-4fb2-9c1c-e05ef8fd3547": {"__data__": {"id_": "afdc513d-db48-4fb2-9c1c-e05ef8fd3547", "embedding": null, "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c25cf3d9-8924-473a-ba31-59872ac40309", "node_type": "1", "metadata": {"window": "How to ask a query., initiate a complain or want to ask some query., If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, How can I use my Faysal Islami PayPak Co-badge Debit Card?, How can I use my ATM Pay Pay Card., Use of Pay Pak Debit Card., Faysal Islami PayPak Co-badge Debit Card can be used wherever you see PayPak and UnionPay logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2d44e9a62165e36e20fa76cd41cd83c58779533017c44ee987d155a384bdec99", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "679f356b-9f19-48a3-ab30-24ddcfc23d02", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}}, "hash": "4a72644cf4a3405f349ad7f8c121b3945932551c66c2a86cf8ba5f8d89ee8693", "text": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "679f356b-9f19-48a3-ab30-24ddcfc23d02": {"__data__": {"id_": "679f356b-9f19-48a3-ab30-24ddcfc23d02", "embedding": null, "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "afdc513d-db48-4fb2-9c1c-e05ef8fd3547", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "original_text": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4a72644cf4a3405f349ad7f8c121b3945932551c66c2a86cf8ba5f8d89ee8693", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "464491e3-600f-4781-87f3-7ca2bf35cd8b", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "class_name": "RelatedNodeInfo"}}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "text": "Keep your card in a safe place at all times.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "464491e3-600f-4781-87f3-7ca2bf35cd8b": {"__data__": {"id_": "464491e3-600f-4781-87f3-7ca2bf35cd8b", "embedding": null, "metadata": {"window": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "679f356b-9f19-48a3-ab30-24ddcfc23d02", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "255f4025-fa4a-4a8e-b28f-c7e0f93e2d71", "node_type": "1", "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "255f4025-fa4a-4a8e-b28f-c7e0f93e2d71": {"__data__": {"id_": "255f4025-fa4a-4a8e-b28f-c7e0f93e2d71", "embedding": null, "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "464491e3-600f-4781-87f3-7ca2bf35cd8b", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do to ensure the safety and security of my Faysal Islami PayPak Co-badge Debit Card?, Is pay Pak Card Secure?\n How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "original_text": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "12527123-5dd7-4c29-9d0a-fbf1348acb13", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "class_name": "RelatedNodeInfo"}}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "text": "Do not write the PIN on the card or anywhere else.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "12527123-5dd7-4c29-9d0a-fbf1348acb13": {"__data__": {"id_": "12527123-5dd7-4c29-9d0a-fbf1348acb13", "embedding": null, "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "255f4025-fa4a-4a8e-b28f-c7e0f93e2d71", "node_type": "1", "metadata": {"window": "How I ensure safety & security of my Debit card?, Security of Master Pay PakDebit Card., To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c9ace8c7-095a-4acf-bfd3-31a80840043c", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7902feb8b4db35f30615048a8a6a0f7bcaf69cf5a2bbfb51495136e3ae829a26", "class_name": "RelatedNodeInfo"}}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c9ace8c7-095a-4acf-bfd3-31a80840043c": {"__data__": {"id_": "c9ace8c7-095a-4acf-bfd3-31a80840043c", "embedding": null, "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "12527123-5dd7-4c29-9d0a-fbf1348acb13", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "23ca6a2c-b665-4136-8252-4e3511800cb2", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "32cbe40525ae385befb0672b83d9405815cc44a6fc63e9d418d60b8542a93d6d", "class_name": "RelatedNodeInfo"}}, "hash": "7902feb8b4db35f30615048a8a6a0f7bcaf69cf5a2bbfb51495136e3ae829a26", "text": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23ca6a2c-b665-4136-8252-4e3511800cb2": {"__data__": {"id_": "23ca6a2c-b665-4136-8252-4e3511800cb2", "embedding": null, "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c9ace8c7-095a-4acf-bfd3-31a80840043c", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 06 06 06 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "original_text": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7902feb8b4db35f30615048a8a6a0f7bcaf69cf5a2bbfb51495136e3ae829a26", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c1bebdb1-8466-485e-ba32-c7f1768afb8f", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1a2dc23404d75999350703fa863a80d22aea5dbf016fa7d2eb555ce9dbc323aa", "class_name": "RelatedNodeInfo"}}, "hash": "32cbe40525ae385befb0672b83d9405815cc44a6fc63e9d418d60b8542a93d6d", "text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c1bebdb1-8466-485e-ba32-c7f1768afb8f": {"__data__": {"id_": "c1bebdb1-8466-485e-ba32-c7f1768afb8f", "embedding": null, "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "23ca6a2c-b665-4136-8252-4e3511800cb2", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "original_text": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "32cbe40525ae385befb0672b83d9405815cc44a6fc63e9d418d60b8542a93d6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0f73fd11-2c9c-4e6d-b14c-891759bb906c", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "class_name": "RelatedNodeInfo"}}, "hash": "1a2dc23404d75999350703fa863a80d22aea5dbf016fa7d2eb555ce9dbc323aa", "text": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0f73fd11-2c9c-4e6d-b14c-891759bb906c": {"__data__": {"id_": "0f73fd11-2c9c-4e6d-b14c-891759bb906c", "embedding": null, "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c1bebdb1-8466-485e-ba32-c7f1768afb8f", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n\n nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1a2dc23404d75999350703fa863a80d22aea5dbf016fa7d2eb555ce9dbc323aa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "928e1aee-8009-4b84-a2d4-04ce40ea2924", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7ec11d53b42ced0cbab593f1693736ee7249dc6fa9cacd5919d5a4eb8943f933", "class_name": "RelatedNodeInfo"}}, "hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "928e1aee-8009-4b84-a2d4-04ce40ea2924": {"__data__": {"id_": "928e1aee-8009-4b84-a2d4-04ce40ea2924", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0f73fd11-2c9c-4e6d-b14c-891759bb906c", "node_type": "1", "metadata": {"window": "nan, nan, nan, What should I do if my Faysal Islami PayPak Co-badge Debit Card is lost or stolen?, What I do incase of ATM card Lost/Stolen., Incase of Lost/Stolen Pay Pak Card., If your Faysal Islami PayPak Co-badge Debit Card is stolen immediately report it to minimize risk of unauthorized transactions.\n nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ff509074-e8b6-4882-9f11-c685d7c5e74c", "node_type": "1", "metadata": {"window": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da45923193ae19186009d3e93dbb27b000b0043c32ec701400930afddd88e09d", "class_name": "RelatedNodeInfo"}}, "hash": "7ec11d53b42ced0cbab593f1693736ee7249dc6fa9cacd5919d5a4eb8943f933", "text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff509074-e8b6-4882-9f11-c685d7c5e74c": {"__data__": {"id_": "ff509074-e8b6-4882-9f11-c685d7c5e74c", "embedding": null, "metadata": {"window": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "928e1aee-8009-4b84-a2d4-04ce40ea2924", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, Islamic Platinum Islamic Visa Debit Card, How can I make a request for my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can request for a Faysal Islami Union Pay Debit Card via: \n\uf02d Helpline - Dial 111 11 71 71 from your registered number to place Debit Card request\n\uf02d Whatsapp - Message on 0310-178-786 to make a request for your Debit Card\n\uf02d Branch \u2013 visit branch with your original CNIC\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "original_text": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7ec11d53b42ced0cbab593f1693736ee7249dc6fa9cacd5919d5a4eb8943f933", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "494d5f9c-6173-419a-a5e7-0718065748c6", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "13c533fa7242f0f82dad4a3dab24d4af3e3f2c15293f0d61a1cb5c360f5f6131", "class_name": "RelatedNodeInfo"}}, "hash": "da45923193ae19186009d3e93dbb27b000b0043c32ec701400930afddd88e09d", "text": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "494d5f9c-6173-419a-a5e7-0718065748c6": {"__data__": {"id_": "494d5f9c-6173-419a-a5e7-0718065748c6", "embedding": null, "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ff509074-e8b6-4882-9f11-c685d7c5e74c", "node_type": "1", "metadata": {"window": "How can I activate my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02d Helpline - Dial 111 11 71 71 from your registered number and request Debit Card Activation\n\uf02d DigiBank \u2013 Log on to DigiBank and select tab Service Request. Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da45923193ae19186009d3e93dbb27b000b0043c32ec701400930afddd88e09d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "76b88ceb-e411-49de-b15f-6194498df861", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c5e0d9398b7b441d61b9ad485a5ff4aa8944dc8fe37b19700664dceb27a4634c", "class_name": "RelatedNodeInfo"}}, "hash": "13c533fa7242f0f82dad4a3dab24d4af3e3f2c15293f0d61a1cb5c360f5f6131", "text": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "76b88ceb-e411-49de-b15f-6194498df861": {"__data__": {"id_": "76b88ceb-e411-49de-b15f-6194498df861", "embedding": null, "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "494d5f9c-6173-419a-a5e7-0718065748c6", "node_type": "1", "metadata": {"window": "Find the Debit Card for activation under the Activation Card Request and follow the procedure\n\uf02d ATM - SMS \u201c \u201d on 9181 from registered mobile number & receive OPT. Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "13c533fa7242f0f82dad4a3dab24d4af3e3f2c15293f0d61a1cb5c360f5f6131", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6f7369ec-8025-4ce7-a191-15f01c233655", "node_type": "1", "metadata": {"window": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1e16827003345d5347f7b755d654070e2bdb524408434c12b804604b9c57686f", "class_name": "RelatedNodeInfo"}}, "hash": "c5e0d9398b7b441d61b9ad485a5ff4aa8944dc8fe37b19700664dceb27a4634c", "text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6f7369ec-8025-4ce7-a191-15f01c233655": {"__data__": {"id_": "6f7369ec-8025-4ce7-a191-15f01c233655", "embedding": null, "metadata": {"window": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "76b88ceb-e411-49de-b15f-6194498df861", "node_type": "1", "metadata": {"window": "Visit any FBL ATM along with OTP and card and follow instructions received after inserting Debit Card in the ATM machine\n\nnan, nan, nan, 1.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c5e0d9398b7b441d61b9ad485a5ff4aa8944dc8fe37b19700664dceb27a4634c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c0481400-dd05-4a6a-baac-b40c6e8c1d50", "node_type": "1", "metadata": {"window": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "69fdf7ca530c9ef8ed37d74402c420fc90c4dff93ff69439007f5a1f8587dbdc", "class_name": "RelatedNodeInfo"}}, "hash": "1e16827003345d5347f7b755d654070e2bdb524408434c12b804604b9c57686f", "text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c0481400-dd05-4a6a-baac-b40c6e8c1d50": {"__data__": {"id_": "c0481400-dd05-4a6a-baac-b40c6e8c1d50", "embedding": null, "metadata": {"window": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f7369ec-8025-4ce7-a191-15f01c233655", "node_type": "1", "metadata": {"window": "What are my Daily Transaction Limits on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Debit Card can be activated via:\n\uf02dYour Daily transaction limits are as follows:\nScheme Daily Transaction Limit\nPlatinum ATM - 100,000/-\nPOS \u2013 PKR 500,000/- \n\nnan, nan, nan, How can I enhance my Faysal Islami Visa Platinum Debit Card?, nan, nan, To enhance your Debit Card limits you can do the following: Visit Faysal Islami Branch - Visit Faysal Islami Branch with original CNIC \nHelpline - Dial 111 06 06 06 from your registered number and request for Limit Enhancement\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1e16827003345d5347f7b755d654070e2bdb524408434c12b804604b9c57686f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2411ee9f-d339-4712-b254-e0d58f611514", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c55fb38adb3e6b4d3c57567d0f2e8b401f8ff42e543be43cb05a42322f4234f6", "class_name": "RelatedNodeInfo"}}, "hash": "69fdf7ca530c9ef8ed37d74402c420fc90c4dff93ff69439007f5a1f8587dbdc", "text": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2411ee9f-d339-4712-b254-e0d58f611514": {"__data__": {"id_": "2411ee9f-d339-4712-b254-e0d58f611514", "embedding": null, "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c0481400-dd05-4a6a-baac-b40c6e8c1d50", "node_type": "1", "metadata": {"window": "What will be my Faysal Islami Visa Platinum Debit Card limit after enhancement?, nan, nan, Existing limits can be enhanced to as follows:\n\nScheme Enhanced Limits\nPlatinum POS \u2013 PKR 1,000,000 /-\n\nnan, nan, nan, How can I change my Faysal Islami Visa Platinum Debit Card PIN?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and request for changing PIN\nDigiBank \u2013 Log on to DigiBank and go to Card Management. Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "69fdf7ca530c9ef8ed37d74402c420fc90c4dff93ff69439007f5a1f8587dbdc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "275f8771-784e-42c2-92a3-09853c9cbb94", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9b0ef0a4998dc9ef79b56483815738ec02a59047f9ce2ea41003307aa9c2a37a", "class_name": "RelatedNodeInfo"}}, "hash": "c55fb38adb3e6b4d3c57567d0f2e8b401f8ff42e543be43cb05a42322f4234f6", "text": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "275f8771-784e-42c2-92a3-09853c9cbb94": {"__data__": {"id_": "275f8771-784e-42c2-92a3-09853c9cbb94", "embedding": null, "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2411ee9f-d339-4712-b254-e0d58f611514", "node_type": "1", "metadata": {"window": "Follow the instructions to change your PIN\nATM \u2013 Visit any Faysal Islami ATM and insert the Debit Card in ATM Machine and follow the instructions to change PIN \n\nnan, nan, nan, How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, Helpline - Dial 111 11 71 71 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "original_text": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c55fb38adb3e6b4d3c57567d0f2e8b401f8ff42e543be43cb05a42322f4234f6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5", "node_type": "1", "metadata": {"window": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "original_text": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8bcb453dca97f91de3a4ea7977772af151168ced345c8a3eb96ef9c61ab16824", "class_name": "RelatedNodeInfo"}}, "hash": "9b0ef0a4998dc9ef79b56483815738ec02a59047f9ce2ea41003307aa9c2a37a", "text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5": {"__data__": {"id_": "de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5", "embedding": null, "metadata": {"window": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "original_text": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "275f8771-784e-42c2-92a3-09853c9cbb94", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n", "original_text": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9b0ef0a4998dc9ef79b56483815738ec02a59047f9ce2ea41003307aa9c2a37a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "74783f0c-6572-4511-bd4b-cc169d680860", "node_type": "1", "metadata": {"window": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}}, "hash": "8bcb453dca97f91de3a4ea7977772af151168ced345c8a3eb96ef9c61ab16824", "text": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "74783f0c-6572-4511-bd4b-cc169d680860": {"__data__": {"id_": "74783f0c-6572-4511-bd4b-cc169d680860", "embedding": null, "metadata": {"window": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5", "node_type": "1", "metadata": {"window": "What should I do if I have queries / complaints regarding my Faysal Islami Visa Platinum Debit Card?, nan, nan, If you have any complaints regarding Faysal Islami Master Debit Card then kindly visit any of our branches or call our helpline at 111 06 06 06 \nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "original_text": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8bcb453dca97f91de3a4ea7977772af151168ced345c8a3eb96ef9c61ab16824", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8be9fef9-0ea5-49c1-80dc-d4479f9d6753", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "original_text": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "126fba81d044abcac9229e21373c0e0d4219a1405a90b6cfe20ad3c7cf4eb262", "class_name": "RelatedNodeInfo"}}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "text": "Keep your card in a safe place at all times.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8be9fef9-0ea5-49c1-80dc-d4479f9d6753": {"__data__": {"id_": "8be9fef9-0ea5-49c1-80dc-d4479f9d6753", "embedding": null, "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "original_text": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "74783f0c-6572-4511-bd4b-cc169d680860", "node_type": "1", "metadata": {"window": "How can I raise a dispute on my Faysal Islami Visa Platinum Debit Card?, nan, nan, You can raise a dispute through the following ways: Helpline - Dial 111 06 06 06 from your registered number and raise a dispute\nDigiBank \u2013 Log on to Digi Bank and select Dispute Resolution. Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n", "original_text": "Keep your card in a safe place at all times.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "73b11941-77cb-461f-8f5d-4c402a1e065d", "node_type": "1", "metadata": {"window": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}}, "hash": "126fba81d044abcac9229e21373c0e0d4219a1405a90b6cfe20ad3c7cf4eb262", "text": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "73b11941-77cb-461f-8f5d-4c402a1e065d": {"__data__": {"id_": "73b11941-77cb-461f-8f5d-4c402a1e065d", "embedding": null, "metadata": {"window": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8be9fef9-0ea5-49c1-80dc-d4479f9d6753", "node_type": "1", "metadata": {"window": "Provide the required details and submit\nFaysal Islami Branch - Visit Faysal Islami Branch with Original CNIC and fill out the dispute resolution form and submit it to the relevant branch staff\n\nnan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "original_text": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "126fba81d044abcac9229e21373c0e0d4219a1405a90b6cfe20ad3c7cf4eb262", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d51c2989-6c02-4177-90f8-2621eb18f70e", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "10881c8a0bdbbcc1f3dc7f3ce29b9fef6ab4884bea22228e97e0242af92884cd", "class_name": "RelatedNodeInfo"}}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "text": "Do not write the PIN on the card or anywhere else.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d51c2989-6c02-4177-90f8-2621eb18f70e": {"__data__": {"id_": "d51c2989-6c02-4177-90f8-2621eb18f70e", "embedding": null, "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "73b11941-77cb-461f-8f5d-4c402a1e065d", "node_type": "1", "metadata": {"window": "What should I do to ensure the safety and security of my Faysal Islami Visa Platinum Debit Card?, nan, nan, To ensure safety of your Debit Card, practise the following: Sign the card as soon as you receive it.\n Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Do not write the PIN on the card or anywhere else.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8da1a27-b4cb-45f6-ac61-b08a9efcb2db", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "class_name": "RelatedNodeInfo"}}, "hash": "10881c8a0bdbbcc1f3dc7f3ce29b9fef6ab4884bea22228e97e0242af92884cd", "text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8da1a27-b4cb-45f6-ac61-b08a9efcb2db": {"__data__": {"id_": "c8da1a27-b4cb-45f6-ac61-b08a9efcb2db", "embedding": null, "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d51c2989-6c02-4177-90f8-2621eb18f70e", "node_type": "1", "metadata": {"window": "Keep your card in a safe place at all times.\n If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "original_text": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "10881c8a0bdbbcc1f3dc7f3ce29b9fef6ab4884bea22228e97e0242af92884cd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d5be91d1-922b-4975-977a-e47014b14ab0", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "09abd53c8cf8fb8d8e3d0ca84c2627c335b46d97247d61dc41748bbb7469a8ab", "class_name": "RelatedNodeInfo"}}, "hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d5be91d1-922b-4975-977a-e47014b14ab0": {"__data__": {"id_": "d5be91d1-922b-4975-977a-e47014b14ab0", "embedding": null, "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c8da1a27-b4cb-45f6-ac61-b08a9efcb2db", "node_type": "1", "metadata": {"window": "If you forget or lose your PIN, call helpline at 111 11 71 71 to generate a new PIN.\n Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aff522e6-fc31-44bc-aeaa-eb61b2c22633", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "class_name": "RelatedNodeInfo"}}, "hash": "09abd53c8cf8fb8d8e3d0ca84c2627c335b46d97247d61dc41748bbb7469a8ab", "text": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aff522e6-fc31-44bc-aeaa-eb61b2c22633": {"__data__": {"id_": "aff522e6-fc31-44bc-aeaa-eb61b2c22633", "embedding": null, "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d5be91d1-922b-4975-977a-e47014b14ab0", "node_type": "1", "metadata": {"window": "Do not write the PIN on the card or anywhere else.\n Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "original_text": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "09abd53c8cf8fb8d8e3d0ca84c2627c335b46d97247d61dc41748bbb7469a8ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5f89e89d-2ee3-41db-b518-29eaeda2f6e2", "node_type": "1", "metadata": {"window": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "300f82d68385f028ff5ce43d76c61483763f7012d8babf1838b2becd4f9ca370", "class_name": "RelatedNodeInfo"}}, "hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5f89e89d-2ee3-41db-b518-29eaeda2f6e2": {"__data__": {"id_": "5f89e89d-2ee3-41db-b518-29eaeda2f6e2", "embedding": null, "metadata": {"window": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "aff522e6-fc31-44bc-aeaa-eb61b2c22633", "node_type": "1", "metadata": {"window": "Do not share your PIN over the phone or email to anyone, Faysal islami never asks such information from customers.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n", "original_text": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3af9b6ee-156f-449c-81de-fa4f1496ea29", "node_type": "1", "metadata": {"window": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}}, "hash": "300f82d68385f028ff5ce43d76c61483763f7012d8babf1838b2becd4f9ca370", "text": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3af9b6ee-156f-449c-81de-fa4f1496ea29": {"__data__": {"id_": "3af9b6ee-156f-449c-81de-fa4f1496ea29", "embedding": null, "metadata": {"window": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5f89e89d-2ee3-41db-b518-29eaeda2f6e2", "node_type": "1", "metadata": {"window": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "original_text": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "300f82d68385f028ff5ce43d76c61483763f7012d8babf1838b2becd4f9ca370", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b0ac8be0-ee3c-4bab-9768-1f8544bc9e81", "node_type": "1", "metadata": {"window": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "class_name": "RelatedNodeInfo"}}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "text": "The cashier / merchant will swipe your card at the counter.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b0ac8be0-ee3c-4bab-9768-1f8544bc9e81": {"__data__": {"id_": "b0ac8be0-ee3c-4bab-9768-1f8544bc9e81", "embedding": null, "metadata": {"window": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3af9b6ee-156f-449c-81de-fa4f1496ea29", "node_type": "1", "metadata": {"window": "What should I do if I lose my Faysal Islami Visa Platinum Debit Card?, nan, nan, Report your lost or stolen card immediately to minimize risk of unauthorized transactions.\n nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "original_text": "The cashier / merchant will swipe your card at the counter.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f042385-7543-4e74-a866-258cf19b4985", "node_type": "1", "metadata": {"window": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n", "original_text": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0a349f15f537a9ee3894f3d7e17ec8f251420cfb676fb17ff42506e1d57722bd", "class_name": "RelatedNodeInfo"}}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8f042385-7543-4e74-a866-258cf19b4985": {"__data__": {"id_": "8f042385-7543-4e74-a866-258cf19b4985", "embedding": null, "metadata": {"window": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n", "original_text": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b0ac8be0-ee3c-4bab-9768-1f8544bc9e81", "node_type": "1", "metadata": {"window": "nan, nan, nan, 4.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n", "original_text": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "20cff46b-ef04-4502-b3ed-ecd2d83b19e9", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "original_text": "Browse categories and/or products.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "class_name": "RelatedNodeInfo"}}, "hash": "0a349f15f537a9ee3894f3d7e17ec8f251420cfb676fb17ff42506e1d57722bd", "text": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "20cff46b-ef04-4502-b3ed-ecd2d83b19e9": {"__data__": {"id_": "20cff46b-ef04-4502-b3ed-ecd2d83b19e9", "embedding": null, "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "original_text": "Browse categories and/or products.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8f042385-7543-4e74-a866-258cf19b4985", "node_type": "1", "metadata": {"window": "How can I use my Faysal Islami Visa Platinum Debit Card?, nan, nan, Faysal Islami Faysal Islami Visa Debit Card can be used wherever you see the Visa logo \nChoose the item you would like to buy and take it to the counter.\n The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n", "original_text": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0a349f15f537a9ee3894f3d7e17ec8f251420cfb676fb17ff42506e1d57722bd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b1169cf4-c1f1-43e4-ab90-b3842cccf809", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "original_text": "Check availability and shipping price for your location.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "class_name": "RelatedNodeInfo"}}, "hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "text": "Browse categories and/or products.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b1169cf4-c1f1-43e4-ab90-b3842cccf809": {"__data__": {"id_": "b1169cf4-c1f1-43e4-ab90-b3842cccf809", "embedding": null, "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "original_text": "Check availability and shipping price for your location.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "20cff46b-ef04-4502-b3ed-ecd2d83b19e9", "node_type": "1", "metadata": {"window": "The cashier / merchant will swipe your card at the counter.\n Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "original_text": "Browse categories and/or products.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "06aa1f30-1513-480b-9263-22dec17c64c8", "node_type": "1", "metadata": {"window": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n", "original_text": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4eff09bb83a7763318891c5db8e95d956d838983a619de1bf6244f15b8b2e763", "class_name": "RelatedNodeInfo"}}, "hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "text": "Check availability and shipping price for your location.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06aa1f30-1513-480b-9263-22dec17c64c8": {"__data__": {"id_": "06aa1f30-1513-480b-9263-22dec17c64c8", "embedding": null, "metadata": {"window": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n", "original_text": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b1169cf4-c1f1-43e4-ab90-b3842cccf809", "node_type": "1", "metadata": {"window": "Enter your 4-digit PIN when promted by the merchant\nCollect your copy of the sales slip.\n\n nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "original_text": "Check availability and shipping price for your location.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4c798ae4-f706-434e-b4c7-4f9cae0cea02", "node_type": "1", "metadata": {"window": "Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n", "original_text": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9dd08fa6f291130174aa63d424bd7b409f20046a5d3f181046057ac17f060891", "class_name": "RelatedNodeInfo"}}, "hash": "4eff09bb83a7763318891c5db8e95d956d838983a619de1bf6244f15b8b2e763", "text": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4c798ae4-f706-434e-b4c7-4f9cae0cea02": {"__data__": {"id_": "4c798ae4-f706-434e-b4c7-4f9cae0cea02", "embedding": null, "metadata": {"window": "Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n", "original_text": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "06aa1f30-1513-480b-9263-22dec17c64c8", "node_type": "1", "metadata": {"window": "nan, Consumer Products, Islamic PayPak Debit Card, NOT MENTIONED IN THE DEBIT CARDS DOC, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, How can I make a request for my Faysal Islami Master Debit Card?, nan, nan, Registered User:\n\nChoose the item you want to buy on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n", "original_text": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4eff09bb83a7763318891c5db8e95d956d838983a619de1bf6244f15b8b2e763", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "30a6702a-c993-44e2-88e3-11b88eb70e4f", "node_type": "1", "metadata": {"window": "Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n", "original_text": "Continue shopping or proceed to pay in the cart.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "45ca0a90d25da40d0a0ecc2e2a61085d9c50c5c1843e61415f73684bbb1896a3", "class_name": "RelatedNodeInfo"}}, "hash": "9dd08fa6f291130174aa63d424bd7b409f20046a5d3f181046057ac17f060891", "text": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "30a6702a-c993-44e2-88e3-11b88eb70e4f": {"__data__": {"id_": "30a6702a-c993-44e2-88e3-11b88eb70e4f", "embedding": null, "metadata": {"window": "Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n", "original_text": "Continue shopping or proceed to pay in the cart.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4c798ae4-f706-434e-b4c7-4f9cae0cea02", "node_type": "1", "metadata": {"window": "Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n", "original_text": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9dd08fa6f291130174aa63d424bd7b409f20046a5d3f181046057ac17f060891", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "441b10f3-90f4-4e9f-badd-47f978799cbf", "node_type": "1", "metadata": {"window": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n", "original_text": "Add promo code (if any) on the cart screen and select delivery address.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "048d4d3859f50b9f243b49dbf4d47e236c13e5d262ec613f1f8c6ff9222c7ec1", "class_name": "RelatedNodeInfo"}}, "hash": "45ca0a90d25da40d0a0ecc2e2a61085d9c50c5c1843e61415f73684bbb1896a3", "text": "Continue shopping or proceed to pay in the cart.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "441b10f3-90f4-4e9f-badd-47f978799cbf": {"__data__": {"id_": "441b10f3-90f4-4e9f-badd-47f978799cbf", "embedding": null, "metadata": {"window": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n", "original_text": "Add promo code (if any) on the cart screen and select delivery address.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "30a6702a-c993-44e2-88e3-11b88eb70e4f", "node_type": "1", "metadata": {"window": "Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n", "original_text": "Continue shopping or proceed to pay in the cart.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "45ca0a90d25da40d0a0ecc2e2a61085d9c50c5c1843e61415f73684bbb1896a3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9aa8a627-b1b9-46a5-ae82-401cee0b857b", "node_type": "1", "metadata": {"window": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n", "original_text": "Choose payment method and complete the process.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "fa7984e636d598edde31f2aff3b6a9ce4b3a79e514c94c2b2d14ba843af7113e", "class_name": "RelatedNodeInfo"}}, "hash": "048d4d3859f50b9f243b49dbf4d47e236c13e5d262ec613f1f8c6ff9222c7ec1", "text": "Add promo code (if any) on the cart screen and select delivery address.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9aa8a627-b1b9-46a5-ae82-401cee0b857b": {"__data__": {"id_": "9aa8a627-b1b9-46a5-ae82-401cee0b857b", "embedding": null, "metadata": {"window": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n", "original_text": "Choose payment method and complete the process.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "441b10f3-90f4-4e9f-badd-47f978799cbf", "node_type": "1", "metadata": {"window": "Verify item price, select size/color/quantity, and click FBL Checkout (login if necessary).\n Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n", "original_text": "Add promo code (if any) on the cart screen and select delivery address.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "048d4d3859f50b9f243b49dbf4d47e236c13e5d262ec613f1f8c6ff9222c7ec1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d7467e86-7e7e-4647-b607-4a320c55fbc7", "node_type": "1", "metadata": {"window": "Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n", "original_text": "Order is placed with the seller.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a6b04f78ee5ddcf9def76014c3bcc8c7e4e5a325d53ac3dac40e577021e12289", "class_name": "RelatedNodeInfo"}}, "hash": "fa7984e636d598edde31f2aff3b6a9ce4b3a79e514c94c2b2d14ba843af7113e", "text": "Choose payment method and complete the process.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d7467e86-7e7e-4647-b607-4a320c55fbc7": {"__data__": {"id_": "d7467e86-7e7e-4647-b607-4a320c55fbc7", "embedding": null, "metadata": {"window": "Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n", "original_text": "Order is placed with the seller.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9aa8a627-b1b9-46a5-ae82-401cee0b857b", "node_type": "1", "metadata": {"window": "Enter DigiBank App ID & Password or NetBanking user ID & password.\n Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n", "original_text": "Choose payment method and complete the process.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "fa7984e636d598edde31f2aff3b6a9ce4b3a79e514c94c2b2d14ba843af7113e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3cc85d16-6d47-4c16-9310-4ec7cdd330bb", "node_type": "1", "metadata": {"window": "Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n", "original_text": "Guest User:\n\nSelect item on DigiMall.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4e516336c645322854f5c3c87d80ef03a65dbb4e405c8ec48d226e8e456f2d16", "class_name": "RelatedNodeInfo"}}, "hash": "a6b04f78ee5ddcf9def76014c3bcc8c7e4e5a325d53ac3dac40e577021e12289", "text": "Order is placed with the seller.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3cc85d16-6d47-4c16-9310-4ec7cdd330bb": {"__data__": {"id_": "3cc85d16-6d47-4c16-9310-4ec7cdd330bb", "embedding": null, "metadata": {"window": "Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n", "original_text": "Guest User:\n\nSelect item on DigiMall.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d7467e86-7e7e-4647-b607-4a320c55fbc7", "node_type": "1", "metadata": {"window": "Continue shopping or proceed to pay in the cart.\n Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n", "original_text": "Order is placed with the seller.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a6b04f78ee5ddcf9def76014c3bcc8c7e4e5a325d53ac3dac40e577021e12289", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2f97dad4-f806-4f54-b0c3-521606100285", "node_type": "1", "metadata": {"window": "Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n", "original_text": "Browse categories and/or products.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "class_name": "RelatedNodeInfo"}}, "hash": "4e516336c645322854f5c3c87d80ef03a65dbb4e405c8ec48d226e8e456f2d16", "text": "Guest User:\n\nSelect item on DigiMall.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2f97dad4-f806-4f54-b0c3-521606100285": {"__data__": {"id_": "2f97dad4-f806-4f54-b0c3-521606100285", "embedding": null, "metadata": {"window": "Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n", "original_text": "Browse categories and/or products.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3cc85d16-6d47-4c16-9310-4ec7cdd330bb", "node_type": "1", "metadata": {"window": "Add promo code (if any) on the cart screen and select delivery address.\n Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n", "original_text": "Guest User:\n\nSelect item on DigiMall.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4e516336c645322854f5c3c87d80ef03a65dbb4e405c8ec48d226e8e456f2d16", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920", "node_type": "1", "metadata": {"window": "Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n", "original_text": "Check availability and shipping price for your location.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "class_name": "RelatedNodeInfo"}}, "hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "text": "Browse categories and/or products.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920": {"__data__": {"id_": "06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920", "embedding": null, "metadata": {"window": "Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n", "original_text": "Check availability and shipping price for your location.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2f97dad4-f806-4f54-b0c3-521606100285", "node_type": "1", "metadata": {"window": "Choose payment method and complete the process.\n Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n", "original_text": "Browse categories and/or products.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95438b3d-056a-4a38-a4b4-0f62b9c28706", "node_type": "1", "metadata": {"window": "Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "original_text": "Verify item price, select size/color/quantity, and click Guest Checkout.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "949a3fe4d970e2cc780ab767fbe5e46e71c352cae6598e3d35fdf0a59d5f1713", "class_name": "RelatedNodeInfo"}}, "hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "text": "Check availability and shipping price for your location.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95438b3d-056a-4a38-a4b4-0f62b9c28706": {"__data__": {"id_": "95438b3d-056a-4a38-a4b4-0f62b9c28706", "embedding": null, "metadata": {"window": "Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "original_text": "Verify item price, select size/color/quantity, and click Guest Checkout.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920", "node_type": "1", "metadata": {"window": "Order is placed with the seller.\n Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n", "original_text": "Check availability and shipping price for your location.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c009c3e0-b9e5-456c-8895-e19854954589", "node_type": "1", "metadata": {"window": "Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. ", "original_text": "Fill out form and submit.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "09ab1c7227f34ef6beb0ee6a3ce3ac110ebd9dc8a9e9440c6e587937b6a7bf8f", "class_name": "RelatedNodeInfo"}}, "hash": "949a3fe4d970e2cc780ab767fbe5e46e71c352cae6598e3d35fdf0a59d5f1713", "text": "Verify item price, select size/color/quantity, and click Guest Checkout.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c009c3e0-b9e5-456c-8895-e19854954589": {"__data__": {"id_": "c009c3e0-b9e5-456c-8895-e19854954589", "embedding": null, "metadata": {"window": "Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. ", "original_text": "Fill out form and submit.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95438b3d-056a-4a38-a4b4-0f62b9c28706", "node_type": "1", "metadata": {"window": "Guest User:\n\nSelect item on DigiMall.\n Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "original_text": "Verify item price, select size/color/quantity, and click Guest Checkout.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "949a3fe4d970e2cc780ab767fbe5e46e71c352cae6598e3d35fdf0a59d5f1713", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f286142e-f068-438c-a8f6-3b7cfdcec0d8", "node_type": "1", "metadata": {"window": "Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. ", "original_text": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "edc73bda897aded8a5e7c596a70dc1a14dbcec05c649afcb73c46ce6c034a2f4", "class_name": "RelatedNodeInfo"}}, "hash": "09ab1c7227f34ef6beb0ee6a3ce3ac110ebd9dc8a9e9440c6e587937b6a7bf8f", "text": "Fill out form and submit.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f286142e-f068-438c-a8f6-3b7cfdcec0d8": {"__data__": {"id_": "f286142e-f068-438c-a8f6-3b7cfdcec0d8", "embedding": null, "metadata": {"window": "Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. ", "original_text": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c009c3e0-b9e5-456c-8895-e19854954589", "node_type": "1", "metadata": {"window": "Browse categories and/or products.\n Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. ", "original_text": "Fill out form and submit.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "09ab1c7227f34ef6beb0ee6a3ce3ac110ebd9dc8a9e9440c6e587937b6a7bf8f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b8d0019d-a626-4836-b618-610195f860f1", "node_type": "1", "metadata": {"window": "Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "original_text": "In some rare cases, Merchant(s) may have to cancel orders. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "989910fa0ab14316d9c469daa9cb1d761af67e7f1bcc1718c72ab6dc42e7a667", "class_name": "RelatedNodeInfo"}}, "hash": "edc73bda897aded8a5e7c596a70dc1a14dbcec05c649afcb73c46ce6c034a2f4", "text": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b8d0019d-a626-4836-b618-610195f860f1": {"__data__": {"id_": "b8d0019d-a626-4836-b618-610195f860f1", "embedding": null, "metadata": {"window": "Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "original_text": "In some rare cases, Merchant(s) may have to cancel orders. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f286142e-f068-438c-a8f6-3b7cfdcec0d8", "node_type": "1", "metadata": {"window": "Check availability and shipping price for your location.\n Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. ", "original_text": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "edc73bda897aded8a5e7c596a70dc1a14dbcec05c649afcb73c46ce6c034a2f4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cb652300-398b-4a0b-b978-2a2d5b581b94", "node_type": "1", "metadata": {"window": "Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "original_text": "It usually takes 12-48 hours for Merchant to confirm orders. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "66bc424a63deb6c7e6197653607f96694674f3ce20f8cf88b12c7fca631d8e18", "class_name": "RelatedNodeInfo"}}, "hash": "989910fa0ab14316d9c469daa9cb1d761af67e7f1bcc1718c72ab6dc42e7a667", "text": "In some rare cases, Merchant(s) may have to cancel orders. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cb652300-398b-4a0b-b978-2a2d5b581b94": {"__data__": {"id_": "cb652300-398b-4a0b-b978-2a2d5b581b94", "embedding": null, "metadata": {"window": "Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "original_text": "It usually takes 12-48 hours for Merchant to confirm orders. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b8d0019d-a626-4836-b618-610195f860f1", "node_type": "1", "metadata": {"window": "Verify item price, select size/color/quantity, and click Guest Checkout.\n Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "original_text": "In some rare cases, Merchant(s) may have to cancel orders. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "989910fa0ab14316d9c469daa9cb1d761af67e7f1bcc1718c72ab6dc42e7a667", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4b325598-53f1-4cb8-bed2-43472c8c0654", "node_type": "1", "metadata": {"window": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "original_text": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e26be80cce5b143ea8bf1b8bacd39ed44fc424255b5bdab30a73adff03173367", "class_name": "RelatedNodeInfo"}}, "hash": "66bc424a63deb6c7e6197653607f96694674f3ce20f8cf88b12c7fca631d8e18", "text": "It usually takes 12-48 hours for Merchant to confirm orders. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4b325598-53f1-4cb8-bed2-43472c8c0654": {"__data__": {"id_": "4b325598-53f1-4cb8-bed2-43472c8c0654", "embedding": null, "metadata": {"window": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "original_text": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cb652300-398b-4a0b-b978-2a2d5b581b94", "node_type": "1", "metadata": {"window": "Fill out form and submit.\n nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "original_text": "It usually takes 12-48 hours for Merchant to confirm orders. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "66bc424a63deb6c7e6197653607f96694674f3ce20f8cf88b12c7fca631d8e18", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "daa9362f-78aa-4236-89ff-ef883e982820", "node_type": "1", "metadata": {"window": "In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. ", "original_text": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "efb1731e0866212ef5a3479dd065574a9aeb8540ba3565690289ce8b87194fc3", "class_name": "RelatedNodeInfo"}}, "hash": "e26be80cce5b143ea8bf1b8bacd39ed44fc424255b5bdab30a73adff03173367", "text": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "daa9362f-78aa-4236-89ff-ef883e982820": {"__data__": {"id_": "daa9362f-78aa-4236-89ff-ef883e982820", "embedding": null, "metadata": {"window": "In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. ", "original_text": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4b325598-53f1-4cb8-bed2-43472c8c0654", "node_type": "1", "metadata": {"window": "nan, nan, DigiMall, What do I do if there is a delay in order confirmation?, nan, Delay in Order Confirmation., Merchant (Seller) has to acknowledge orders after a user places them on DigiMall. In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "original_text": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e26be80cce5b143ea8bf1b8bacd39ed44fc424255b5bdab30a73adff03173367", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "732c918a-573a-480e-be35-3b8c19620029", "node_type": "1", "metadata": {"window": "It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "original_text": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3b0add67052c34a58946d6f19bf0e6bd2d92e6bc2df60cd1b1aaec9a4e3ea16d", "class_name": "RelatedNodeInfo"}}, "hash": "efb1731e0866212ef5a3479dd065574a9aeb8540ba3565690289ce8b87194fc3", "text": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "732c918a-573a-480e-be35-3b8c19620029": {"__data__": {"id_": "732c918a-573a-480e-be35-3b8c19620029", "embedding": null, "metadata": {"window": "It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "original_text": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "daa9362f-78aa-4236-89ff-ef883e982820", "node_type": "1", "metadata": {"window": "In some rare cases, Merchant(s) may have to cancel orders. It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. ", "original_text": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "efb1731e0866212ef5a3479dd065574a9aeb8540ba3565690289ce8b87194fc3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7a3ce206-22e5-4ee4-90a7-16c2e039a1e9", "node_type": "1", "metadata": {"window": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "original_text": "nan, nan, nan, My order has been shipped. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0ffb4b74944ecdba581d32dad7a468082caa09fa58a344b46a67b13dd4bccb44", "class_name": "RelatedNodeInfo"}}, "hash": "3b0add67052c34a58946d6f19bf0e6bd2d92e6bc2df60cd1b1aaec9a4e3ea16d", "text": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7a3ce206-22e5-4ee4-90a7-16c2e039a1e9": {"__data__": {"id_": "7a3ce206-22e5-4ee4-90a7-16c2e039a1e9", "embedding": null, "metadata": {"window": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "original_text": "nan, nan, nan, My order has been shipped. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "732c918a-573a-480e-be35-3b8c19620029", "node_type": "1", "metadata": {"window": "It usually takes 12-48 hours for Merchant to confirm orders. If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "original_text": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3b0add67052c34a58946d6f19bf0e6bd2d92e6bc2df60cd1b1aaec9a4e3ea16d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c96879c8-0057-4738-80d7-d2849a61dc74", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "original_text": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ebe77b0d25fa31572628ad3e58b10eb823f9ad3040b23c72267b838ea7b72827", "class_name": "RelatedNodeInfo"}}, "hash": "0ffb4b74944ecdba581d32dad7a468082caa09fa58a344b46a67b13dd4bccb44", "text": "nan, nan, nan, My order has been shipped. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c96879c8-0057-4738-80d7-d2849a61dc74": {"__data__": {"id_": "c96879c8-0057-4738-80d7-d2849a61dc74", "embedding": null, "metadata": {"window": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "original_text": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7a3ce206-22e5-4ee4-90a7-16c2e039a1e9", "node_type": "1", "metadata": {"window": "If there is a delay, you can contact the Call Center at 111 -06-06-06 for more information. \n nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "original_text": "nan, nan, nan, My order has been shipped. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0ffb4b74944ecdba581d32dad7a468082caa09fa58a344b46a67b13dd4bccb44", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "329da4d1-09d4-4ad3-9d5e-516700e48816", "node_type": "1", "metadata": {"window": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "original_text": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ae791a13b987593f519cb9e6c17d1f8f509b598fd4f35b34d49009ea2cfd0fcf", "class_name": "RelatedNodeInfo"}}, "hash": "ebe77b0d25fa31572628ad3e58b10eb823f9ad3040b23c72267b838ea7b72827", "text": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "329da4d1-09d4-4ad3-9d5e-516700e48816": {"__data__": {"id_": "329da4d1-09d4-4ad3-9d5e-516700e48816", "embedding": null, "metadata": {"window": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "original_text": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c96879c8-0057-4738-80d7-d2849a61dc74", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I track my order?, nan, Order Tracking., FBL (DigiMall) will send user the necessary updates about the status of their order via SMS/Email or in-App Notifications. User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "original_text": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ebe77b0d25fa31572628ad3e58b10eb823f9ad3040b23c72267b838ea7b72827", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "474c0550-3a2d-4433-ac74-7e0918b96bd6", "node_type": "1", "metadata": {"window": "nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "original_text": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f0c7c7725d5f8eb6cd6797b8b80f342bbb2727fc771bf747ac174115ec718b93", "class_name": "RelatedNodeInfo"}}, "hash": "ae791a13b987593f519cb9e6c17d1f8f509b598fd4f35b34d49009ea2cfd0fcf", "text": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "474c0550-3a2d-4433-ac74-7e0918b96bd6": {"__data__": {"id_": "474c0550-3a2d-4433-ac74-7e0918b96bd6", "embedding": null, "metadata": {"window": "nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "original_text": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "329da4d1-09d4-4ad3-9d5e-516700e48816", "node_type": "1", "metadata": {"window": "User can also track their order on relevant courier portal with the respective tracking link when available with merchant. \n nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "original_text": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ae791a13b987593f519cb9e6c17d1f8f509b598fd4f35b34d49009ea2cfd0fcf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed", "node_type": "1", "metadata": {"window": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "original_text": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "836e69d791c7849e6238ef035fb9be8e7d81656817da5e5c5fe353a54ee0ad46", "class_name": "RelatedNodeInfo"}}, "hash": "f0c7c7725d5f8eb6cd6797b8b80f342bbb2727fc771bf747ac174115ec718b93", "text": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed": {"__data__": {"id_": "e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed", "embedding": null, "metadata": {"window": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "original_text": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "474c0550-3a2d-4433-ac74-7e0918b96bd6", "node_type": "1", "metadata": {"window": "nan, nan, nan, My order has been shipped. How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "original_text": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f0c7c7725d5f8eb6cd6797b8b80f342bbb2727fc771bf747ac174115ec718b93", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0f278d1f-c471-4e27-a016-523cca2a2011", "node_type": "1", "metadata": {"window": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n", "original_text": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7ac650b44be81d6be78cd26a4978f4c99efbc20ae165ead8297bcc60e2c35c78", "class_name": "RelatedNodeInfo"}}, "hash": "836e69d791c7849e6238ef035fb9be8e7d81656817da5e5c5fe353a54ee0ad46", "text": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0f278d1f-c471-4e27-a016-523cca2a2011": {"__data__": {"id_": "0f278d1f-c471-4e27-a016-523cca2a2011", "embedding": null, "metadata": {"window": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n", "original_text": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed", "node_type": "1", "metadata": {"window": "How quickly will I get my order?, nan, Shipment Status., Products are usually delivered within 5-7 Working Days. In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "original_text": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "836e69d791c7849e6238ef035fb9be8e7d81656817da5e5c5fe353a54ee0ad46", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a81bf711-6bbd-4f1f-8bd4-5d561dd651ea", "node_type": "1", "metadata": {"window": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "original_text": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6525bb0409f2ea0ad6b4de9d8111524ed8a0a7ab27393fca307be8a1de679c06", "class_name": "RelatedNodeInfo"}}, "hash": "7ac650b44be81d6be78cd26a4978f4c99efbc20ae165ead8297bcc60e2c35c78", "text": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a81bf711-6bbd-4f1f-8bd4-5d561dd651ea": {"__data__": {"id_": "a81bf711-6bbd-4f1f-8bd4-5d561dd651ea", "embedding": null, "metadata": {"window": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "original_text": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0f278d1f-c471-4e27-a016-523cca2a2011", "node_type": "1", "metadata": {"window": "In cases where the item delivery takes a longer delivery time it will already be mentioned in the respective product description, however it may noted that delay be caused due the other events outside the control of the team such as force majeure events\nnan, nan, nan, My order has been shipped but is delayed. What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n", "original_text": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7ac650b44be81d6be78cd26a4978f4c99efbc20ae165ead8297bcc60e2c35c78", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a8e510c1-f8db-43ce-8163-191ce9dbe0c2", "node_type": "1", "metadata": {"window": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "original_text": "To register an ID please go to .\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e7aca5e5c33b2eedebda842c8724a1a80b59ad72d4f9c11cbf3e3f2b73956250", "class_name": "RelatedNodeInfo"}}, "hash": "6525bb0409f2ea0ad6b4de9d8111524ed8a0a7ab27393fca307be8a1de679c06", "text": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a8e510c1-f8db-43ce-8163-191ce9dbe0c2": {"__data__": {"id_": "a8e510c1-f8db-43ce-8163-191ce9dbe0c2", "embedding": null, "metadata": {"window": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "original_text": "To register an ID please go to .\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a81bf711-6bbd-4f1f-8bd4-5d561dd651ea", "node_type": "1", "metadata": {"window": "What should I do?, nan, Delay after Shipment., DigiMall regrets any delayed delivery of user order(s). User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "original_text": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6525bb0409f2ea0ad6b4de9d8111524ed8a0a7ab27393fca307be8a1de679c06", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e1f2c72b-5e53-4f1d-a706-f3247aea5665", "node_type": "1", "metadata": {"window": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "original_text": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d41ba80772877544ee8387b0e5c0db761cbe30e98c25601393607d2c567b97dc", "class_name": "RelatedNodeInfo"}}, "hash": "e7aca5e5c33b2eedebda842c8724a1a80b59ad72d4f9c11cbf3e3f2b73956250", "text": "To register an ID please go to .\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e1f2c72b-5e53-4f1d-a706-f3247aea5665": {"__data__": {"id_": "e1f2c72b-5e53-4f1d-a706-f3247aea5665", "embedding": null, "metadata": {"window": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "original_text": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a8e510c1-f8db-43ce-8163-191ce9dbe0c2", "node_type": "1", "metadata": {"window": "User can follow order progress by entering their tracking number on the courier\u2019s tracking portal. If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "original_text": "To register an ID please go to .\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "e7aca5e5c33b2eedebda842c8724a1a80b59ad72d4f9c11cbf3e3f2b73956250", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ecefd84-89cb-494e-8720-1428fd006450", "node_type": "1", "metadata": {"window": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. ", "original_text": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b6d50cc186e35b86516c78c0ca4f11d28bb9529bfb5b783c55b4ae480b02d510", "class_name": "RelatedNodeInfo"}}, "hash": "d41ba80772877544ee8387b0e5c0db761cbe30e98c25601393607d2c567b97dc", "text": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ecefd84-89cb-494e-8720-1428fd006450": {"__data__": {"id_": "8ecefd84-89cb-494e-8720-1428fd006450", "embedding": null, "metadata": {"window": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. ", "original_text": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e1f2c72b-5e53-4f1d-a706-f3247aea5665", "node_type": "1", "metadata": {"window": "If the status has not changed in a while, user is requested to connect with FBL Call Center Team. User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "original_text": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d41ba80772877544ee8387b0e5c0db761cbe30e98c25601393607d2c567b97dc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e8d141bd-554e-4a56-8034-547983674384", "node_type": "1", "metadata": {"window": "To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "original_text": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6250256243ce2a1afdc0556d274cc679139edc21d2a799da4b930534d9a6327a", "class_name": "RelatedNodeInfo"}}, "hash": "b6d50cc186e35b86516c78c0ca4f11d28bb9529bfb5b783c55b4ae480b02d510", "text": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e8d141bd-554e-4a56-8034-547983674384": {"__data__": {"id_": "e8d141bd-554e-4a56-8034-547983674384", "embedding": null, "metadata": {"window": "To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "original_text": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ecefd84-89cb-494e-8720-1428fd006450", "node_type": "1", "metadata": {"window": "User can reach the team 24/7 at 111.06.06.06\u00a0\nnan, nan, nan, Do I need an account to shop on DigiMall?, User ID For Digimall., User ID For Digimall., You will need an \u2018DigiBank\u2019 or \u2018Internet Banking / IB\u2019 account to login to DigiMall. To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. ", "original_text": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b6d50cc186e35b86516c78c0ca4f11d28bb9529bfb5b783c55b4ae480b02d510", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "08d037cd-c538-4814-b23b-abec75956eeb", "node_type": "1", "metadata": {"window": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n", "original_text": "Please check the SPAM folder in your email. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8b810e6475cfce91523b772ecf5cd53e027218326c79f8aeb903ad2c158947eb", "class_name": "RelatedNodeInfo"}}, "hash": "6250256243ce2a1afdc0556d274cc679139edc21d2a799da4b930534d9a6327a", "text": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "08d037cd-c538-4814-b23b-abec75956eeb": {"__data__": {"id_": "08d037cd-c538-4814-b23b-abec75956eeb", "embedding": null, "metadata": {"window": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n", "original_text": "Please check the SPAM folder in your email. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e8d141bd-554e-4a56-8034-547983674384", "node_type": "1", "metadata": {"window": "To register an ID please go to .\n nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "original_text": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6250256243ce2a1afdc0556d274cc679139edc21d2a799da4b930534d9a6327a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5ea5119e-072c-43a4-bf0b-a30d69d61614", "node_type": "1", "metadata": {"window": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "original_text": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d2d8d9f6a2780a181cfaf85f33f26d008b18448c580e995b2b9733768b89c349", "class_name": "RelatedNodeInfo"}}, "hash": "8b810e6475cfce91523b772ecf5cd53e027218326c79f8aeb903ad2c158947eb", "text": "Please check the SPAM folder in your email. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5ea5119e-072c-43a4-bf0b-a30d69d61614": {"__data__": {"id_": "5ea5119e-072c-43a4-bf0b-a30d69d61614", "embedding": null, "metadata": {"window": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "original_text": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "08d037cd-c538-4814-b23b-abec75956eeb", "node_type": "1", "metadata": {"window": "nan, nan, nan, My payment was processed successfully but I didn't get any order confirmation. What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n", "original_text": "Please check the SPAM folder in your email. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8b810e6475cfce91523b772ecf5cd53e027218326c79f8aeb903ad2c158947eb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "276a10c7-9d8e-45e6-9563-696a487df770", "node_type": "1", "metadata": {"window": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n", "original_text": "Locate the order and click the \"Cancel\" button next to the Order ID.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "65c76af08002f9bb6d33407052d08af2e32e5304a3e6548e3ec613f230a97199", "class_name": "RelatedNodeInfo"}}, "hash": "d2d8d9f6a2780a181cfaf85f33f26d008b18448c580e995b2b9733768b89c349", "text": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "276a10c7-9d8e-45e6-9563-696a487df770": {"__data__": {"id_": "276a10c7-9d8e-45e6-9563-696a487df770", "embedding": null, "metadata": {"window": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n", "original_text": "Locate the order and click the \"Cancel\" button next to the Order ID.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5ea5119e-072c-43a4-bf0b-a30d69d61614", "node_type": "1", "metadata": {"window": "What should I do?, nan, Order Confirmation after Payment., User is request to connect with FBL Helpline so we can look into the matter. User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "original_text": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d2d8d9f6a2780a181cfaf85f33f26d008b18448c580e995b2b9733768b89c349", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa", "node_type": "1", "metadata": {"window": "Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "original_text": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6b0ee7719a16a3f1d1950ed226bb16217f037b1a64e285e5961e0fd14b7f7170", "class_name": "RelatedNodeInfo"}}, "hash": "65c76af08002f9bb6d33407052d08af2e32e5304a3e6548e3ec613f230a97199", "text": "Locate the order and click the \"Cancel\" button next to the Order ID.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa": {"__data__": {"id_": "9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa", "embedding": null, "metadata": {"window": "Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "original_text": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "276a10c7-9d8e-45e6-9563-696a487df770", "node_type": "1", "metadata": {"window": "User can reach the Call Center team 24/7 via call at 111.06.06.06. \nnan, nan, nan, I haven't received the invoice for my order., Order Confirmation Invoice., Order Confirmation Invoice., We do not provide physical invoices for orders on DigiMall. Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n", "original_text": "Locate the order and click the \"Cancel\" button next to the Order ID.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "65c76af08002f9bb6d33407052d08af2e32e5304a3e6548e3ec613f230a97199", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "02100ff2-5693-4c7b-9a36-4e90e119626b", "node_type": "1", "metadata": {"window": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "original_text": "Additionally, shipment charges will not be refunded if the product is already in transit.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "70f837b975c5f44ef8b23341470fbe90fa5bce859851b391be18802aff9877f2", "class_name": "RelatedNodeInfo"}}, "hash": "6b0ee7719a16a3f1d1950ed226bb16217f037b1a64e285e5961e0fd14b7f7170", "text": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "02100ff2-5693-4c7b-9a36-4e90e119626b": {"__data__": {"id_": "02100ff2-5693-4c7b-9a36-4e90e119626b", "embedding": null, "metadata": {"window": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "original_text": "Additionally, shipment charges will not be refunded if the product is already in transit.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa", "node_type": "1", "metadata": {"window": "Please check the SPAM folder in your email. If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "original_text": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6b0ee7719a16a3f1d1950ed226bb16217f037b1a64e285e5961e0fd14b7f7170", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9dc3ee47-839d-42ee-b7a5-195d0320473a", "node_type": "1", "metadata": {"window": "Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "original_text": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f9ccd742ef0fbe6f2c67562a3453d71f4a1bcaddd8e4a846f21f02e2c88c2f3b", "class_name": "RelatedNodeInfo"}}, "hash": "70f837b975c5f44ef8b23341470fbe90fa5bce859851b391be18802aff9877f2", "text": "Additionally, shipment charges will not be refunded if the product is already in transit.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9dc3ee47-839d-42ee-b7a5-195d0320473a": {"__data__": {"id_": "9dc3ee47-839d-42ee-b7a5-195d0320473a", "embedding": null, "metadata": {"window": "Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "original_text": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "02100ff2-5693-4c7b-9a36-4e90e119626b", "node_type": "1", "metadata": {"window": "If you need further help please contact call center at 111.06.06.06\nnan, nan, nan, How do I cancel my order?, nan, Order Cancellation., If the user's order is not yet dispatched, they can cancel the order by following these steps:\n\nClick on \"My Account\" and select \"My Orders\" from the drop-down menu.\n Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "original_text": "Additionally, shipment charges will not be refunded if the product is already in transit.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "70f837b975c5f44ef8b23341470fbe90fa5bce859851b391be18802aff9877f2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0072630f-2f8e-4e95-b735-d99ca1e24f93", "node_type": "1", "metadata": {"window": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "original_text": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c26e0611034dc3cdaf823810e0d651987691100bade9a3c3925f048ce799680", "class_name": "RelatedNodeInfo"}}, "hash": "f9ccd742ef0fbe6f2c67562a3453d71f4a1bcaddd8e4a846f21f02e2c88c2f3b", "text": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0072630f-2f8e-4e95-b735-d99ca1e24f93": {"__data__": {"id_": "0072630f-2f8e-4e95-b735-d99ca1e24f93", "embedding": null, "metadata": {"window": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "original_text": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9dc3ee47-839d-42ee-b7a5-195d0320473a", "node_type": "1", "metadata": {"window": "Locate the order and click the \"Cancel\" button next to the Order ID.\n Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "original_text": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f9ccd742ef0fbe6f2c67562a3453d71f4a1bcaddd8e4a846f21f02e2c88c2f3b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "498651a2-d1ea-49d5-ad79-0d8261d02d66", "node_type": "1", "metadata": {"window": "Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "original_text": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "acb85ace1f5d387281cf9d619f678fa186647f6f8250739718cb3c82a88ad3f4", "class_name": "RelatedNodeInfo"}}, "hash": "9c26e0611034dc3cdaf823810e0d651987691100bade9a3c3925f048ce799680", "text": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "498651a2-d1ea-49d5-ad79-0d8261d02d66": {"__data__": {"id_": "498651a2-d1ea-49d5-ad79-0d8261d02d66", "embedding": null, "metadata": {"window": "Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "original_text": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0072630f-2f8e-4e95-b735-d99ca1e24f93", "node_type": "1", "metadata": {"window": "Please note that order cancellation is subject to merchant approval as the order may already be in the process of being delivered. Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "original_text": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9c26e0611034dc3cdaf823810e0d651987691100bade9a3c3925f048ce799680", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "de2bb666-475e-4ac7-8a74-f8190c53e3bd", "node_type": "1", "metadata": {"window": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "original_text": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c295c43eca1c776ce716ec854dacf25f7813a8d84e8ff20b2c1c0783fa311dc7", "class_name": "RelatedNodeInfo"}}, "hash": "acb85ace1f5d387281cf9d619f678fa186647f6f8250739718cb3c82a88ad3f4", "text": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "de2bb666-475e-4ac7-8a74-f8190c53e3bd": {"__data__": {"id_": "de2bb666-475e-4ac7-8a74-f8190c53e3bd", "embedding": null, "metadata": {"window": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "original_text": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "498651a2-d1ea-49d5-ad79-0d8261d02d66", "node_type": "1", "metadata": {"window": "Additionally, shipment charges will not be refunded if the product is already in transit.\n Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "original_text": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "acb85ace1f5d387281cf9d619f678fa186647f6f8250739718cb3c82a88ad3f4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd", "node_type": "1", "metadata": {"window": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "original_text": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "13f27eb9eafe337e152ba6aa184689d75e2d49af402b7d37e442ed5e37cbec26", "class_name": "RelatedNodeInfo"}}, "hash": "c295c43eca1c776ce716ec854dacf25f7813a8d84e8ff20b2c1c0783fa311dc7", "text": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd": {"__data__": {"id_": "ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd", "embedding": null, "metadata": {"window": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "original_text": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "de2bb666-475e-4ac7-8a74-f8190c53e3bd", "node_type": "1", "metadata": {"window": "Alternatively, the user can contact the Call Center at 111.06.06.06 to inquire about their order progress. If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "original_text": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c295c43eca1c776ce716ec854dacf25f7813a8d84e8ff20b2c1c0783fa311dc7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7e0646c7-b68e-422f-b779-676e42230080", "node_type": "1", "metadata": {"window": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "original_text": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4d913ce8c4b17892e9c124f0b11c642b450783563994942e890bb9d3543661d7", "class_name": "RelatedNodeInfo"}}, "hash": "13f27eb9eafe337e152ba6aa184689d75e2d49af402b7d37e442ed5e37cbec26", "text": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e0646c7-b68e-422f-b779-676e42230080": {"__data__": {"id_": "7e0646c7-b68e-422f-b779-676e42230080", "embedding": null, "metadata": {"window": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "original_text": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd", "node_type": "1", "metadata": {"window": "If the order is already on its way or has been received, the user may have the option to return the product if it is simultaneously marked as cancelled.\n nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "original_text": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "13f27eb9eafe337e152ba6aa184689d75e2d49af402b7d37e442ed5e37cbec26", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8a445d02-4ef9-4ed7-9932-c4820fad81d0", "node_type": "1", "metadata": {"window": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "original_text": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "297d490c71ece175a565d71f027ca23e34fe69eba989e0fedc6cb71119b6dd91", "class_name": "RelatedNodeInfo"}}, "hash": "4d913ce8c4b17892e9c124f0b11c642b450783563994942e890bb9d3543661d7", "text": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8a445d02-4ef9-4ed7-9932-c4820fad81d0": {"__data__": {"id_": "8a445d02-4ef9-4ed7-9932-c4820fad81d0", "embedding": null, "metadata": {"window": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "original_text": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7e0646c7-b68e-422f-b779-676e42230080", "node_type": "1", "metadata": {"window": "nan, nan, nan, What are the shipping charges?, nan, Shipping Charges., Shipping rate calculated is based on the weight of the products, the origin from where the item is picked from and the destination to where it is delivered. The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "original_text": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "4d913ce8c4b17892e9c124f0b11c642b450783563994942e890bb9d3543661d7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5a6c28eb-8379-4b37-b9f6-4accc7efa41e", "node_type": "1", "metadata": {"window": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "original_text": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "be7f99feafa4fe8de1661a8797fc566a7d8493782d1e53ee94965f79b162590d", "class_name": "RelatedNodeInfo"}}, "hash": "297d490c71ece175a565d71f027ca23e34fe69eba989e0fedc6cb71119b6dd91", "text": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5a6c28eb-8379-4b37-b9f6-4accc7efa41e": {"__data__": {"id_": "5a6c28eb-8379-4b37-b9f6-4accc7efa41e", "embedding": null, "metadata": {"window": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "original_text": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8a445d02-4ef9-4ed7-9932-c4820fad81d0", "node_type": "1", "metadata": {"window": "The total shipping fee charged will be clearly indicated for each product individually at the main product page and the total shipping fee for the cart will be displayed at the checkout page\nnan, nan, nan, Why are my items shipped separately?, nan, Seprate shipment., Products ordered from different Merchants (Sellers) are often shipped separately as per delivery period mentioned to make sure that there is no delay in fulfillment of your order if one order will take longer than others\nnan, nan, nan, Are all products new and original?, All products are geniune?, Authentic Product., Yes, DigiMall is committed through its Merchant (Seller) to offering its users 100% genuine and original products. DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "original_text": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "297d490c71ece175a565d71f027ca23e34fe69eba989e0fedc6cb71119b6dd91", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "14caea37-ee7b-44a5-b512-9faa84a17d91", "node_type": "1", "metadata": {"window": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "original_text": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7677963cd116c1a048ea2979c20e0606cfca9d21f1e4d7e87af0d10f86205e98", "class_name": "RelatedNodeInfo"}}, "hash": "be7f99feafa4fe8de1661a8797fc566a7d8493782d1e53ee94965f79b162590d", "text": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "14caea37-ee7b-44a5-b512-9faa84a17d91": {"__data__": {"id_": "14caea37-ee7b-44a5-b512-9faa84a17d91", "embedding": null, "metadata": {"window": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "original_text": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5a6c28eb-8379-4b37-b9f6-4accc7efa41e", "node_type": "1", "metadata": {"window": "DigiMall also takes all necessary actions to ensure this: any Merchant (Seller) found to be providing non-genuine product(s) is immediately delisted with the necessary action \u2013 additionally users are requested to rate products, which is essentially meant to value Merchant (Seller) quality of service.\n However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "original_text": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "be7f99feafa4fe8de1661a8797fc566a7d8493782d1e53ee94965f79b162590d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c407a988-4ad3-4b26-b7dd-e833f7bea7b5", "node_type": "1", "metadata": {"window": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "original_text": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3dde15d7281b8fad02f14bc76176f63d0f39492234c2ace2a9218f559c257f1d", "class_name": "RelatedNodeInfo"}}, "hash": "7677963cd116c1a048ea2979c20e0606cfca9d21f1e4d7e87af0d10f86205e98", "text": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c407a988-4ad3-4b26-b7dd-e833f7bea7b5": {"__data__": {"id_": "c407a988-4ad3-4b26-b7dd-e833f7bea7b5", "embedding": null, "metadata": {"window": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "original_text": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "14caea37-ee7b-44a5-b512-9faa84a17d91", "node_type": "1", "metadata": {"window": "However, it does not mean that DigiMall guarantee the product or services of Merchant, or for quality. quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "original_text": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7677963cd116c1a048ea2979c20e0606cfca9d21f1e4d7e87af0d10f86205e98", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8b9cfa6c-826c-48a4-8cea-d672b581651c", "node_type": "1", "metadata": {"window": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "original_text": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "715df66c020561c485240b8c16d9a31b71ebe492a6b2045165d2da6fe4e8286e", "class_name": "RelatedNodeInfo"}}, "hash": "3dde15d7281b8fad02f14bc76176f63d0f39492234c2ace2a9218f559c257f1d", "text": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b9cfa6c-826c-48a4-8cea-d672b581651c": {"__data__": {"id_": "8b9cfa6c-826c-48a4-8cea-d672b581651c", "embedding": null, "metadata": {"window": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "original_text": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c407a988-4ad3-4b26-b7dd-e833f7bea7b5", "node_type": "1", "metadata": {"window": "quantity, specification of the products offers and disclaim any liability, obligations whatsoever in nature in this regard, so customer needed to read guidelines carefully \nUsers can call call center with a complaint if they believe a product listed on the DigiMall platform(s) do not fulfill set standards\n\nnan, nan, nan, Where should I go for my warranty claim?, nan, Claim warranty, Please refer to the manufacturer (or service center) details on the warranty card included with the product (if applicable). If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "original_text": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3dde15d7281b8fad02f14bc76176f63d0f39492234c2ace2a9218f559c257f1d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a13dd20c-4dce-4fe9-a341-9a06671c50d3", "node_type": "1", "metadata": {"window": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "original_text": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "838dd385efc38213930d5534a8d48e248928ded06f6fe04be31c4b5e2d33a60b", "class_name": "RelatedNodeInfo"}}, "hash": "715df66c020561c485240b8c16d9a31b71ebe492a6b2045165d2da6fe4e8286e", "text": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a13dd20c-4dce-4fe9-a341-9a06671c50d3": {"__data__": {"id_": "a13dd20c-4dce-4fe9-a341-9a06671c50d3", "embedding": null, "metadata": {"window": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "original_text": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8b9cfa6c-826c-48a4-8cea-d672b581651c", "node_type": "1", "metadata": {"window": "If there is no warranty card, user is advised to check the user manual, product packaging or call the hotline, whatsapp or email us with a complaint (if needed) i.e. if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "original_text": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "715df66c020561c485240b8c16d9a31b71ebe492a6b2045165d2da6fe4e8286e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d706a21-ad40-4edd-bfb3-b6501a38e7cf", "node_type": "1", "metadata": {"window": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "original_text": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b3b9dfee0736c9fbbdf740bfba95e7ba118b310bb5fc96f5a5d7b300f1265b94", "class_name": "RelatedNodeInfo"}}, "hash": "838dd385efc38213930d5534a8d48e248928ded06f6fe04be31c4b5e2d33a60b", "text": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d706a21-ad40-4edd-bfb3-b6501a38e7cf": {"__data__": {"id_": "4d706a21-ad40-4edd-bfb3-b6501a38e7cf", "embedding": null, "metadata": {"window": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "original_text": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a13dd20c-4dce-4fe9-a341-9a06671c50d3", "node_type": "1", "metadata": {"window": "if the product had warranty but the respective documents were not made available with the product\nnan, nan, nan, I lost my warranty card. How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "original_text": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "838dd385efc38213930d5534a8d48e248928ded06f6fe04be31c4b5e2d33a60b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f886a060-2717-410a-8357-46cb9b373441", "node_type": "1", "metadata": {"window": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "original_text": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "45ea28ec117675fd791dcaae3f35cc246e5367284dbd00fd22de33676a0625e5", "class_name": "RelatedNodeInfo"}}, "hash": "b3b9dfee0736c9fbbdf740bfba95e7ba118b310bb5fc96f5a5d7b300f1265b94", "text": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f886a060-2717-410a-8357-46cb9b373441": {"__data__": {"id_": "f886a060-2717-410a-8357-46cb9b373441", "embedding": null, "metadata": {"window": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "original_text": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d706a21-ad40-4edd-bfb3-b6501a38e7cf", "node_type": "1", "metadata": {"window": "How can I claim warranty?, nan, Warranty claim on DigiMall, Even if the user has lost the warranty card, they can still claim warranty by representing the DigiMall\u2019s Merchant (Seller) purchase invoice to any authorized service center for the respective brand/product\nnan, nan, nan, How do I pay on DigiMall?, nan, payment on DigiMall?, User can pay on DigiMall using their Credit Cards, FBL bank account. Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "original_text": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b3b9dfee0736c9fbbdf740bfba95e7ba118b310bb5fc96f5a5d7b300f1265b94", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9", "node_type": "1", "metadata": {"window": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "original_text": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "748a517ff0e013cf4fa2a4be857545d08a4767ef1e5008f963dbc03e2416ba5b", "class_name": "RelatedNodeInfo"}}, "hash": "45ea28ec117675fd791dcaae3f35cc246e5367284dbd00fd22de33676a0625e5", "text": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9": {"__data__": {"id_": "9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9", "embedding": null, "metadata": {"window": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "original_text": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f886a060-2717-410a-8357-46cb9b373441", "node_type": "1", "metadata": {"window": "Once user is logged in to DigiMall (via Web or App), these options will be made available to user via the Payment Gateway. Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "original_text": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "45ea28ec117675fd791dcaae3f35cc246e5367284dbd00fd22de33676a0625e5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d38f5d4d-1338-480c-9bc3-c46b70aa44ff", "node_type": "1", "metadata": {"window": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "original_text": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "35d1382cc158e1c460ff391c79675a8102513aa9507170f1c31abc2ec48a77a8", "class_name": "RelatedNodeInfo"}}, "hash": "748a517ff0e013cf4fa2a4be857545d08a4767ef1e5008f963dbc03e2416ba5b", "text": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d38f5d4d-1338-480c-9bc3-c46b70aa44ff": {"__data__": {"id_": "d38f5d4d-1338-480c-9bc3-c46b70aa44ff", "embedding": null, "metadata": {"window": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "original_text": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9", "node_type": "1", "metadata": {"window": "Please note that you have to be a registered digiBank Customer to use DigiMall.\u00a0\n nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "original_text": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "748a517ff0e013cf4fa2a4be857545d08a4767ef1e5008f963dbc03e2416ba5b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4496cc5-3ea6-4684-8a1b-7f81111ac418", "node_type": "1", "metadata": {"window": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "original_text": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "71098ed8e904739120af397457d453cfd2175c99fe97a9e63f8cab7acc3ec36f", "class_name": "RelatedNodeInfo"}}, "hash": "35d1382cc158e1c460ff391c79675a8102513aa9507170f1c31abc2ec48a77a8", "text": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c4496cc5-3ea6-4684-8a1b-7f81111ac418": {"__data__": {"id_": "c4496cc5-3ea6-4684-8a1b-7f81111ac418", "embedding": null, "metadata": {"window": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "original_text": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d38f5d4d-1338-480c-9bc3-c46b70aa44ff", "node_type": "1", "metadata": {"window": "nan, nan, nan, Do you offer Cash on Delivery?, nan, Cash on Delivery on Faysal DigiMall , No. DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "original_text": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "35d1382cc158e1c460ff391c79675a8102513aa9507170f1c31abc2ec48a77a8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c95affc4-9657-4cf0-aa11-160836f45bef", "node_type": "1", "metadata": {"window": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "original_text": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d99219db18d0063f53035ce68584b55199585d329ea1936f59c6ac9f77de498f", "class_name": "RelatedNodeInfo"}}, "hash": "71098ed8e904739120af397457d453cfd2175c99fe97a9e63f8cab7acc3ec36f", "text": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c95affc4-9657-4cf0-aa11-160836f45bef": {"__data__": {"id_": "c95affc4-9657-4cf0-aa11-160836f45bef", "embedding": null, "metadata": {"window": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "original_text": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c4496cc5-3ea6-4684-8a1b-7f81111ac418", "node_type": "1", "metadata": {"window": "DigiMall does not offer Cash on Delivery at this point in time\nnan, nan, nan, What is DigiMall's Returns Guideline?, nan, DigiMall Returns Guideline, The following products are not eligible for return, exchange, or refund unless faulty or not as described: products with missing parts or accessories (not reported within 3 days), wrong items ordered by the user, unsealed products (except for inspection), products without original packaging or in poor condition, products containing user personal data or registered by the manufacturer, perishable goods like fresh fruits and vegetables, redeemed computer software vouchers or opened software, personalized products or user-specific measurements (especially clothing), hygiene-sensitive items with opened packaging or removed protective seals (e.g., undergarments, swimwear, nightwear, bedding, mattresses unless specified in a promotion), beauty and cosmetic products, personal care products, damaged or seal-broken items, incompatible items, clearance or last-in-stock products, and gift cards.\n\n With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "original_text": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "71098ed8e904739120af397457d453cfd2175c99fe97a9e63f8cab7acc3ec36f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8791d5f4-87af-470d-a241-7429f1682002", "node_type": "1", "metadata": {"window": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. ", "original_text": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3dbec475840d18a53665f93061248ff23fc10ef938804c7107b14dd47537f071", "class_name": "RelatedNodeInfo"}}, "hash": "d99219db18d0063f53035ce68584b55199585d329ea1936f59c6ac9f77de498f", "text": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8791d5f4-87af-470d-a241-7429f1682002": {"__data__": {"id_": "8791d5f4-87af-470d-a241-7429f1682002", "embedding": null, "metadata": {"window": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. ", "original_text": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c95affc4-9657-4cf0-aa11-160836f45bef", "node_type": "1", "metadata": {"window": "With a valid receipt, DigiMall will refund the original payment method (debit card, wallet, credit card, or account) used for the purchase, subject to the mentioned limitations.\n\n For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "original_text": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d99219db18d0063f53035ce68584b55199585d329ea1936f59c6ac9f77de498f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3ee8490-d895-44c6-a02d-ec4076b07423", "node_type": "1", "metadata": {"window": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. ", "original_text": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "29fb1ea279985151eed4dd69ed058f7333895bb212a4f2ed0d5a9029650b8adc", "class_name": "RelatedNodeInfo"}}, "hash": "3dbec475840d18a53665f93061248ff23fc10ef938804c7107b14dd47537f071", "text": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3ee8490-d895-44c6-a02d-ec4076b07423": {"__data__": {"id_": "e3ee8490-d895-44c6-a02d-ec4076b07423", "embedding": null, "metadata": {"window": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. ", "original_text": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8791d5f4-87af-470d-a241-7429f1682002", "node_type": "1", "metadata": {"window": "For the return of non-perishable items, there is a 24-hour checking and replacement warranty for accessories or electronic items (excluding damaged items). If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. ", "original_text": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3dbec475840d18a53665f93061248ff23fc10ef938804c7107b14dd47537f071", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4a19c04f-6222-4a70-aa78-0a41b117a98a", "node_type": "1", "metadata": {"window": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "original_text": "Regarding perishable items, users should check the quality and quantity upon delivery. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "04b4dd067baf22596fd7d2de8a68781e4355c710f1a9ed73a5867e8d3ecee55c", "class_name": "RelatedNodeInfo"}}, "hash": "29fb1ea279985151eed4dd69ed058f7333895bb212a4f2ed0d5a9029650b8adc", "text": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4a19c04f-6222-4a70-aa78-0a41b117a98a": {"__data__": {"id_": "4a19c04f-6222-4a70-aa78-0a41b117a98a", "embedding": null, "metadata": {"window": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "original_text": "Regarding perishable items, users should check the quality and quantity upon delivery. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e3ee8490-d895-44c6-a02d-ec4076b07423", "node_type": "1", "metadata": {"window": "If a product develops a fault within 24 hours of receiving it, the user must provide proof and return it for exchange or refund with the support of DigiMall and the merchant. After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. ", "original_text": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "29fb1ea279985151eed4dd69ed058f7333895bb212a4f2ed0d5a9029650b8adc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1540b900-eb6d-4c64-9b79-3ebdb6382881", "node_type": "1", "metadata": {"window": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n", "original_text": "Unopened products can be returned if broken, damaged, or expired within 3 days. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6f5d7a48c77f3d458e3b8be4777516255004bd8bedd1ae9431979c9c3b961b02", "class_name": "RelatedNodeInfo"}}, "hash": "04b4dd067baf22596fd7d2de8a68781e4355c710f1a9ed73a5867e8d3ecee55c", "text": "Regarding perishable items, users should check the quality and quantity upon delivery. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1540b900-eb6d-4c64-9b79-3ebdb6382881": {"__data__": {"id_": "1540b900-eb6d-4c64-9b79-3ebdb6382881", "embedding": null, "metadata": {"window": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n", "original_text": "Unopened products can be returned if broken, damaged, or expired within 3 days. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a19c04f-6222-4a70-aa78-0a41b117a98a", "node_type": "1", "metadata": {"window": "After 24 hours, if the product falls under the official warranty, it should be taken to the manufacturer's or merchant's service/warranty center.\n\n DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "original_text": "Regarding perishable items, users should check the quality and quantity upon delivery. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "04b4dd067baf22596fd7d2de8a68781e4355c710f1a9ed73a5867e8d3ecee55c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cc928f43-ed37-42ce-ad06-9dc52be29b89", "node_type": "1", "metadata": {"window": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "original_text": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0acc19db95f4ea42c66fc9557dfb48f1c0bfe91f7c57af038f86407f43487c32", "class_name": "RelatedNodeInfo"}}, "hash": "6f5d7a48c77f3d458e3b8be4777516255004bd8bedd1ae9431979c9c3b961b02", "text": "Unopened products can be returned if broken, damaged, or expired within 3 days. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cc928f43-ed37-42ce-ad06-9dc52be29b89": {"__data__": {"id_": "cc928f43-ed37-42ce-ad06-9dc52be29b89", "embedding": null, "metadata": {"window": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "original_text": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1540b900-eb6d-4c64-9b79-3ebdb6382881", "node_type": "1", "metadata": {"window": "DigiMall's replacement guidelines apply to situations involving the delivery of the wrong or defective product. However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n", "original_text": "Unopened products can be returned if broken, damaged, or expired within 3 days. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6f5d7a48c77f3d458e3b8be4777516255004bd8bedd1ae9431979c9c3b961b02", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6fafa2e5-6da6-467a-aea2-453aeafa8bd2", "node_type": "1", "metadata": {"window": "Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "original_text": "Please consult DigiMall's Returns Guidelines for detailed information.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2f4e26c70cc08a2873ab24a1adbe9baed7b7e05dbb176de599804ef9d45841bf", "class_name": "RelatedNodeInfo"}}, "hash": "0acc19db95f4ea42c66fc9557dfb48f1c0bfe91f7c57af038f86407f43487c32", "text": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6fafa2e5-6da6-467a-aea2-453aeafa8bd2": {"__data__": {"id_": "6fafa2e5-6da6-467a-aea2-453aeafa8bd2", "embedding": null, "metadata": {"window": "Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "original_text": "Please consult DigiMall's Returns Guidelines for detailed information.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cc928f43-ed37-42ce-ad06-9dc52be29b89", "node_type": "1", "metadata": {"window": "However, certain exclusions exist, and DigiMall disclaims any liability or obligations for repair costs caused by external factors, water damage, image ghosting or screen burn, pixel spots, digital television picture issues, consumables, battery-operated toys, commercial/business use of the product (except computers), data loss, cosmetic damage, loss beyond the original item's price, servicing or cleaning contrary to manufacturer instructions, deliberate damage or neglect, tampered or missing serial/UPC numbers, damage/defects not covered by the manufacturer's warranty, and returns without original packaging and accessories.\n\n Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "original_text": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0acc19db95f4ea42c66fc9557dfb48f1c0bfe91f7c57af038f86407f43487c32", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "02e510d2-4417-444e-96d1-708394524711", "node_type": "1", "metadata": {"window": "Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "original_text": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f3db11716289bd2bd185df95ae65b6602bfaefb4f02a9bd7e93ee2cbc87ba6be", "class_name": "RelatedNodeInfo"}}, "hash": "2f4e26c70cc08a2873ab24a1adbe9baed7b7e05dbb176de599804ef9d45841bf", "text": "Please consult DigiMall's Returns Guidelines for detailed information.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "02e510d2-4417-444e-96d1-708394524711": {"__data__": {"id_": "02e510d2-4417-444e-96d1-708394524711", "embedding": null, "metadata": {"window": "Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "original_text": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6fafa2e5-6da6-467a-aea2-453aeafa8bd2", "node_type": "1", "metadata": {"window": "Regarding perishable items, users should check the quality and quantity upon delivery. Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "original_text": "Please consult DigiMall's Returns Guidelines for detailed information.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2f4e26c70cc08a2873ab24a1adbe9baed7b7e05dbb176de599804ef9d45841bf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1305a9a6-2840-4aff-ab75-7c780061df85", "node_type": "1", "metadata": {"window": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "original_text": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "5c268fce743f8ec68478e05e65324778a38952c7df1d707b8bad0878fdd4e9b2", "class_name": "RelatedNodeInfo"}}, "hash": "f3db11716289bd2bd185df95ae65b6602bfaefb4f02a9bd7e93ee2cbc87ba6be", "text": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1305a9a6-2840-4aff-ab75-7c780061df85": {"__data__": {"id_": "1305a9a6-2840-4aff-ab75-7c780061df85", "embedding": null, "metadata": {"window": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "original_text": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "02e510d2-4417-444e-96d1-708394524711", "node_type": "1", "metadata": {"window": "Unopened products can be returned if broken, damaged, or expired within 3 days. However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "original_text": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f3db11716289bd2bd185df95ae65b6602bfaefb4f02a9bd7e93ee2cbc87ba6be", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "639ee74a-9c31-422b-8ba8-d3d1fb751011", "node_type": "1", "metadata": {"window": "Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "original_text": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "56f9273e470dae2050a92148b6f497b6f63dd6f36e3da0dcc058059840b08754", "class_name": "RelatedNodeInfo"}}, "hash": "5c268fce743f8ec68478e05e65324778a38952c7df1d707b8bad0878fdd4e9b2", "text": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "639ee74a-9c31-422b-8ba8-d3d1fb751011": {"__data__": {"id_": "639ee74a-9c31-422b-8ba8-d3d1fb751011", "embedding": null, "metadata": {"window": "Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "original_text": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1305a9a6-2840-4aff-ab75-7c780061df85", "node_type": "1", "metadata": {"window": "However, fresh products like fruits and vegetables cannot be returned once delivered.\n\n Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "original_text": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "5c268fce743f8ec68478e05e65324778a38952c7df1d707b8bad0878fdd4e9b2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "69def097-1a2d-4a1d-815a-f6b361d41a1d", "node_type": "1", "metadata": {"window": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. ", "original_text": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ded75ed29b7396485b3d635742f082f1461f07a973f61de8d250757089dff4e7", "class_name": "RelatedNodeInfo"}}, "hash": "56f9273e470dae2050a92148b6f497b6f63dd6f36e3da0dcc058059840b08754", "text": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "69def097-1a2d-4a1d-815a-f6b361d41a1d": {"__data__": {"id_": "69def097-1a2d-4a1d-815a-f6b361d41a1d", "embedding": null, "metadata": {"window": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. ", "original_text": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "639ee74a-9c31-422b-8ba8-d3d1fb751011", "node_type": "1", "metadata": {"window": "Please consult DigiMall's Returns Guidelines for detailed information.\n nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "original_text": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "56f9273e470dae2050a92148b6f497b6f63dd6f36e3da0dcc058059840b08754", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e4152376-509c-43e0-983f-26c4704c661b", "node_type": "1", "metadata": {"window": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "original_text": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c9d0a5237691d297a464a838ff64fb03e685de53fac3e1a9fc7dabcc65fd8da5", "class_name": "RelatedNodeInfo"}}, "hash": "ded75ed29b7396485b3d635742f082f1461f07a973f61de8d250757089dff4e7", "text": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e4152376-509c-43e0-983f-26c4704c661b": {"__data__": {"id_": "e4152376-509c-43e0-983f-26c4704c661b", "embedding": null, "metadata": {"window": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "original_text": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "69def097-1a2d-4a1d-815a-f6b361d41a1d", "node_type": "1", "metadata": {"window": "nan, nan, nan, What are the steps to return a product?, nan, Returning products, User is to log in to their account (DigiBank/IB). Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. ", "original_text": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "ded75ed29b7396485b3d635742f082f1461f07a973f61de8d250757089dff4e7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f75e1eb4-8a1d-46bf-90bb-d69a417a7c25", "node_type": "1", "metadata": {"window": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "original_text": "nan, nan, nan, My parcel has been reported missing. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c17b3933e9656470acfb4711b9469bd4b230985c5a172f7276b834be6f8160b7", "class_name": "RelatedNodeInfo"}}, "hash": "c9d0a5237691d297a464a838ff64fb03e685de53fac3e1a9fc7dabcc65fd8da5", "text": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f75e1eb4-8a1d-46bf-90bb-d69a417a7c25": {"__data__": {"id_": "f75e1eb4-8a1d-46bf-90bb-d69a417a7c25", "embedding": null, "metadata": {"window": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "original_text": "nan, nan, nan, My parcel has been reported missing. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e4152376-509c-43e0-983f-26c4704c661b", "node_type": "1", "metadata": {"window": "Select the order they wish to return and click on \u201cManage Order \u201cbutton\nClick on \u201cReturn Items\u201d and fill out the respective form. Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "original_text": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c9d0a5237691d297a464a838ff64fb03e685de53fac3e1a9fc7dabcc65fd8da5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ba2982cb-95f8-415e-9455-83cd9acd75fe", "node_type": "1", "metadata": {"window": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "original_text": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "339d4c1d4441389833a02acf1a91c51fd85706960e4be7e494590a6ac9d1c4b9", "class_name": "RelatedNodeInfo"}}, "hash": "c17b3933e9656470acfb4711b9469bd4b230985c5a172f7276b834be6f8160b7", "text": "nan, nan, nan, My parcel has been reported missing. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ba2982cb-95f8-415e-9455-83cd9acd75fe": {"__data__": {"id_": "ba2982cb-95f8-415e-9455-83cd9acd75fe", "embedding": null, "metadata": {"window": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "original_text": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f75e1eb4-8a1d-46bf-90bb-d69a417a7c25", "node_type": "1", "metadata": {"window": "Wait for the DigiMall Merchant (Seller) or courier partner to pick up the order. DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "original_text": "nan, nan, nan, My parcel has been reported missing. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c17b3933e9656470acfb4711b9469bd4b230985c5a172f7276b834be6f8160b7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e4410aaf-abb2-4a8d-bfea-f187562f2bd0", "node_type": "1", "metadata": {"window": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "original_text": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9cb6eabc0a3121f9ad91ba2d68bce76d74c25158a546d6357352dbeda03db44e", "class_name": "RelatedNodeInfo"}}, "hash": "339d4c1d4441389833a02acf1a91c51fd85706960e4be7e494590a6ac9d1c4b9", "text": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e4410aaf-abb2-4a8d-bfea-f187562f2bd0": {"__data__": {"id_": "e4410aaf-abb2-4a8d-bfea-f187562f2bd0", "embedding": null, "metadata": {"window": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "original_text": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba2982cb-95f8-415e-9455-83cd9acd75fe", "node_type": "1", "metadata": {"window": "DigiMall will verify user claim and replace the product for user in the required timeline\nUser can also request a return by calling the Call Center at 111.06.06.06 to post a query/complaint\n\nnan, nan, nan, I found the package open and the product seal broken on delivery. What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "original_text": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "339d4c1d4441389833a02acf1a91c51fd85706960e4be7e494590a6ac9d1c4b9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5aa1408b-b07a-4aa1-8eea-bf887f5b89a3", "node_type": "1", "metadata": {"window": "nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "original_text": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7617f44ff5852c60f0278f01321b11d1712c89336ff83243e00463b4a1be6da6", "class_name": "RelatedNodeInfo"}}, "hash": "9cb6eabc0a3121f9ad91ba2d68bce76d74c25158a546d6357352dbeda03db44e", "text": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5aa1408b-b07a-4aa1-8eea-bf887f5b89a3": {"__data__": {"id_": "5aa1408b-b07a-4aa1-8eea-bf887f5b89a3", "embedding": null, "metadata": {"window": "nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "original_text": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e4410aaf-abb2-4a8d-bfea-f187562f2bd0", "node_type": "1", "metadata": {"window": "What should I do?, nan, Broken and open package seals, User is requested in case of delivery concerns to get in touch with the 24/7 Call Centre at 111.06.06.06 or email a complaint.\n nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "original_text": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "9cb6eabc0a3121f9ad91ba2d68bce76d74c25158a546d6357352dbeda03db44e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87ed0d05-1512-412f-94e4-bfef37c5b2ba", "node_type": "1", "metadata": {"window": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "original_text": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "550d843e3c210013c2231c8b48bf15970ed9e03ae94464eab0aae788a6cdc3ab", "class_name": "RelatedNodeInfo"}}, "hash": "7617f44ff5852c60f0278f01321b11d1712c89336ff83243e00463b4a1be6da6", "text": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87ed0d05-1512-412f-94e4-bfef37c5b2ba": {"__data__": {"id_": "87ed0d05-1512-412f-94e4-bfef37c5b2ba", "embedding": null, "metadata": {"window": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "original_text": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5aa1408b-b07a-4aa1-8eea-bf887f5b89a3", "node_type": "1", "metadata": {"window": "nan, nan, nan, My parcel has been reported missing. What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "original_text": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7617f44ff5852c60f0278f01321b11d1712c89336ff83243e00463b4a1be6da6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc32e430-36a5-4c79-9322-161ad16c6a38", "node_type": "1", "metadata": {"window": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. ", "original_text": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d201c0a25184e5af4f4ab8684370a8deb0f1302506321382afedceb768fa4cbf", "class_name": "RelatedNodeInfo"}}, "hash": "550d843e3c210013c2231c8b48bf15970ed9e03ae94464eab0aae788a6cdc3ab", "text": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc32e430-36a5-4c79-9322-161ad16c6a38": {"__data__": {"id_": "fc32e430-36a5-4c79-9322-161ad16c6a38", "embedding": null, "metadata": {"window": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. ", "original_text": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "87ed0d05-1512-412f-94e4-bfef37c5b2ba", "node_type": "1", "metadata": {"window": "What now?, nan, Missing parcel , User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email\nnan, nan, nan, My parcel has been received damaged. What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "original_text": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "550d843e3c210013c2231c8b48bf15970ed9e03ae94464eab0aae788a6cdc3ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "56c16b6f-844b-4677-bc92-382812d4a5fd", "node_type": "1", "metadata": {"window": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". ", "original_text": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "671b1eaffb4a670a44cb02302d024284efc1b30a089b5c2601cf483b8300f01e", "class_name": "RelatedNodeInfo"}}, "hash": "d201c0a25184e5af4f4ab8684370a8deb0f1302506321382afedceb768fa4cbf", "text": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "56c16b6f-844b-4677-bc92-382812d4a5fd": {"__data__": {"id_": "56c16b6f-844b-4677-bc92-382812d4a5fd", "embedding": null, "metadata": {"window": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". ", "original_text": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc32e430-36a5-4c79-9322-161ad16c6a38", "node_type": "1", "metadata": {"window": "What do I do now?, nan, Damaged parcel delivery, User is requested to get in touch with the 24/7 Call Center at 111.06.06.06 or log a complaint via email.\n nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. ", "original_text": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "d201c0a25184e5af4f4ab8684370a8deb0f1302506321382afedceb768fa4cbf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5ccd8ee4-69c0-4922-b4a7-d8b2b147be81", "node_type": "1", "metadata": {"window": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "original_text": "Now click on \u201cManage My Account\u201d in the drop down. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "db6d08aa53c82ac115b34ba26d1ec11bd72495c1ef1b2a0fc9662c44792b541a", "class_name": "RelatedNodeInfo"}}, "hash": "671b1eaffb4a670a44cb02302d024284efc1b30a089b5c2601cf483b8300f01e", "text": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5ccd8ee4-69c0-4922-b4a7-d8b2b147be81": {"__data__": {"id_": "5ccd8ee4-69c0-4922-b4a7-d8b2b147be81", "embedding": null, "metadata": {"window": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "original_text": "Now click on \u201cManage My Account\u201d in the drop down. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56c16b6f-844b-4677-bc92-382812d4a5fd", "node_type": "1", "metadata": {"window": "nan, nan, nan, Does DigiBank Mall deliver all over Pakistan?, nan, DigiMall delivery, Yes we deliver all over Pakistan (this is subject to product description \u2013 if it is defined as restricted delivery)\nnan, nan, nan, How can I sign-up as a customer on DigiMall?, nan, ?, User needs to be registered on \u2018DIGIBANK\u2019 or as an \u2018Internet Banking (IB)\u2019 customer. For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". ", "original_text": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "671b1eaffb4a670a44cb02302d024284efc1b30a089b5c2601cf483b8300f01e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6d861597-3dea-4599-8722-522a85f851bc", "node_type": "1", "metadata": {"window": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. ", "original_text": "User will be directed to their account where they will find \"Address Book\". ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0c97bd793de09348ee4e78180378751d12ded2fc5efd496183fcc69b1e668472", "class_name": "RelatedNodeInfo"}}, "hash": "db6d08aa53c82ac115b34ba26d1ec11bd72495c1ef1b2a0fc9662c44792b541a", "text": "Now click on \u201cManage My Account\u201d in the drop down. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6d861597-3dea-4599-8722-522a85f851bc": {"__data__": {"id_": "6d861597-3dea-4599-8722-522a85f851bc", "embedding": null, "metadata": {"window": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. ", "original_text": "User will be directed to their account where they will find \"Address Book\". ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5ccd8ee4-69c0-4922-b4a7-d8b2b147be81", "node_type": "1", "metadata": {"window": "For more information on \u2018DigiBank\u2019 and how to register, visit \nnan, nan, nan, How can I change the password of my DigiMall account?, nan, Changing password for DigiMall account, The User Name & Password for DigiMall are the same as your DigiBank App/ IB credentials. To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "original_text": "Now click on \u201cManage My Account\u201d in the drop down. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "db6d08aa53c82ac115b34ba26d1ec11bd72495c1ef1b2a0fc9662c44792b541a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8b76c49d-0855-4757-a225-fb12104684c0", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "original_text": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3307bf3821db7c47f033fa89e689e245ebc98731f8e9bf86760b77b5f407ccb2", "class_name": "RelatedNodeInfo"}}, "hash": "0c97bd793de09348ee4e78180378751d12ded2fc5efd496183fcc69b1e668472", "text": "User will be directed to their account where they will find \"Address Book\". ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b76c49d-0855-4757-a225-fb12104684c0": {"__data__": {"id_": "8b76c49d-0855-4757-a225-fb12104684c0", "embedding": null, "metadata": {"window": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "original_text": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d861597-3dea-4599-8722-522a85f851bc", "node_type": "1", "metadata": {"window": "To change the password, please follow the \u2018Change Password\u2019 process of \u2018DigiBank/IB\u2019.\n nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. ", "original_text": "User will be directed to their account where they will find \"Address Book\". ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0c97bd793de09348ee4e78180378751d12ded2fc5efd496183fcc69b1e668472", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276", "node_type": "1", "metadata": {"window": "Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "original_text": "User can also add another address during the \u2018Check Out\u2019 process. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1042c6099db7c205fb6b7bc4905e66ff80816475e758b2736cd2aaffcf68a7c9", "class_name": "RelatedNodeInfo"}}, "hash": "3307bf3821db7c47f033fa89e689e245ebc98731f8e9bf86760b77b5f407ccb2", "text": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276": {"__data__": {"id_": "ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276", "embedding": null, "metadata": {"window": "Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "original_text": "User can also add another address during the \u2018Check Out\u2019 process. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8b76c49d-0855-4757-a225-fb12104684c0", "node_type": "1", "metadata": {"window": "nan, nan, nan, How can I add a new delivery address to my account?, nan, Adding a new delivery address on Faysal DigiMall account, Log in to the User Account and click on \u201cYour Account\u201d Icon. Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "original_text": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3307bf3821db7c47f033fa89e689e245ebc98731f8e9bf86760b77b5f407ccb2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8", "node_type": "1", "metadata": {"window": "User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "original_text": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2efb2b505ec393e18776b95eab389f4e9c25df255925a699c878ff61a1fe418c", "class_name": "RelatedNodeInfo"}}, "hash": "1042c6099db7c205fb6b7bc4905e66ff80816475e758b2736cd2aaffcf68a7c9", "text": "User can also add another address during the \u2018Check Out\u2019 process. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8": {"__data__": {"id_": "0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8", "embedding": null, "metadata": {"window": "User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "original_text": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276", "node_type": "1", "metadata": {"window": "Now click on \u201cManage My Account\u201d in the drop down. User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "original_text": "User can also add another address during the \u2018Check Out\u2019 process. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1042c6099db7c205fb6b7bc4905e66ff80816475e758b2736cd2aaffcf68a7c9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05409e7b-3828-4a90-8ac6-5f1a971675e7", "node_type": "1", "metadata": {"window": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "original_text": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6329f2bf94a78f0d84b547aecaa6ec8cd833453da29c433b18edb252bcb00a9e", "class_name": "RelatedNodeInfo"}}, "hash": "2efb2b505ec393e18776b95eab389f4e9c25df255925a699c878ff61a1fe418c", "text": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05409e7b-3828-4a90-8ac6-5f1a971675e7": {"__data__": {"id_": "05409e7b-3828-4a90-8ac6-5f1a971675e7", "embedding": null, "metadata": {"window": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "original_text": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8", "node_type": "1", "metadata": {"window": "User will be directed to their account where they will find \"Address Book\". Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "original_text": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2efb2b505ec393e18776b95eab389f4e9c25df255925a699c878ff61a1fe418c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "eefa4bc9-4088-4277-a7a6-d02eb7aefa9e", "node_type": "1", "metadata": {"window": "User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "original_text": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "5917e0169420ff30f9586ff4ce91c85210cb11217c9059e6f59f161bfe647c1e", "class_name": "RelatedNodeInfo"}}, "hash": "6329f2bf94a78f0d84b547aecaa6ec8cd833453da29c433b18edb252bcb00a9e", "text": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "eefa4bc9-4088-4277-a7a6-d02eb7aefa9e": {"__data__": {"id_": "eefa4bc9-4088-4277-a7a6-d02eb7aefa9e", "embedding": null, "metadata": {"window": "User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "original_text": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05409e7b-3828-4a90-8ac6-5f1a971675e7", "node_type": "1", "metadata": {"window": "Click on the \u201cAdd a New Address\u201d button, enter the details of the new address and click on \u201cSave this Address\u201d. User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "original_text": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6329f2bf94a78f0d84b547aecaa6ec8cd833453da29c433b18edb252bcb00a9e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d4f1aac-9127-46c4-830b-0a632b765c55", "node_type": "1", "metadata": {"window": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "original_text": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3c2ae7a39d52e8b3e02f3fad163378543db94ddd564e55b2ee12aff9103cf52d", "class_name": "RelatedNodeInfo"}}, "hash": "5917e0169420ff30f9586ff4ce91c85210cb11217c9059e6f59f161bfe647c1e", "text": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d4f1aac-9127-46c4-830b-0a632b765c55": {"__data__": {"id_": "4d4f1aac-9127-46c4-830b-0a632b765c55", "embedding": null, "metadata": {"window": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "original_text": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "eefa4bc9-4088-4277-a7a6-d02eb7aefa9e", "node_type": "1", "metadata": {"window": "User can also add another address during the \u2018Check Out\u2019 process. Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "original_text": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "5917e0169420ff30f9586ff4ce91c85210cb11217c9059e6f59f161bfe647c1e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13", "node_type": "1", "metadata": {"window": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. ", "original_text": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2797fef426ebfa2772fb46c486592963cd7b5114a81f81139844e7eef18a5d2d", "class_name": "RelatedNodeInfo"}}, "hash": "3c2ae7a39d52e8b3e02f3fad163378543db94ddd564e55b2ee12aff9103cf52d", "text": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13": {"__data__": {"id_": "a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13", "embedding": null, "metadata": {"window": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. ", "original_text": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d4f1aac-9127-46c4-830b-0a632b765c55", "node_type": "1", "metadata": {"window": "Press the \u2018Add New Address\u2019 button on the \u2018Delivery\u2019 screen to add an address.\n nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "original_text": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3c2ae7a39d52e8b3e02f3fad163378543db94ddd564e55b2ee12aff9103cf52d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "90a20c13-3a5a-4ed8-9534-5f03f7b08c31", "node_type": "1", "metadata": {"window": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "original_text": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1c02960f8ce3796a9aafbb71c54f3ba811b7a4194f00894efc3532b862a8472f", "class_name": "RelatedNodeInfo"}}, "hash": "2797fef426ebfa2772fb46c486592963cd7b5114a81f81139844e7eef18a5d2d", "text": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "90a20c13-3a5a-4ed8-9534-5f03f7b08c31": {"__data__": {"id_": "90a20c13-3a5a-4ed8-9534-5f03f7b08c31", "embedding": null, "metadata": {"window": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "original_text": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13", "node_type": "1", "metadata": {"window": "nan, nan, nan, Can I add multiple email addresses to login to my account?, nan, Adding multiple email addresses on account, To make sure that your account is always secure, multiple email addresses cannot be added.\n nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. ", "original_text": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "2797fef426ebfa2772fb46c486592963cd7b5114a81f81139844e7eef18a5d2d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "375f3d44-baf3-4e91-aa24-d8bea56ec25a", "node_type": "1", "metadata": {"window": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "original_text": "This applies when the product is sold to the DigiMall user/customer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "41c1a2ea0bc4ed7171b8e8da67446b977348a313cbaaf80d12a43a8cbbe46dbe", "class_name": "RelatedNodeInfo"}}, "hash": "1c02960f8ce3796a9aafbb71c54f3ba811b7a4194f00894efc3532b862a8472f", "text": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "375f3d44-baf3-4e91-aa24-d8bea56ec25a": {"__data__": {"id_": "375f3d44-baf3-4e91-aa24-d8bea56ec25a", "embedding": null, "metadata": {"window": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "original_text": "This applies when the product is sold to the DigiMall user/customer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "90a20c13-3a5a-4ed8-9534-5f03f7b08c31", "node_type": "1", "metadata": {"window": "nan, nan, nan, Why do I need to provide my email address to sign up?, nan, why do I need email address to sign up on Faysal DigiMall , Your email address helps us provide timely information to you about your order\nnan, nan, nan, How do I register myself as a Merchant (Seller) on DigiMall?, nan, Merchant registration for Faysal DigiMall , If a Merchant sells new and genuine products, they can register immediately by visiting this page and filling out a brief form. Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "original_text": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "1c02960f8ce3796a9aafbb71c54f3ba811b7a4194f00894efc3532b862a8472f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "706a5c3f-650a-48b0-8f97-31957f713ed4", "node_type": "1", "metadata": {"window": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "original_text": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c73bd8df0769fe14068af830d90b7833f1f42be61362bc2bdb5d66e388ac17cf", "class_name": "RelatedNodeInfo"}}, "hash": "41c1a2ea0bc4ed7171b8e8da67446b977348a313cbaaf80d12a43a8cbbe46dbe", "text": "This applies when the product is sold to the DigiMall user/customer. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "706a5c3f-650a-48b0-8f97-31957f713ed4": {"__data__": {"id_": "706a5c3f-650a-48b0-8f97-31957f713ed4", "embedding": null, "metadata": {"window": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "original_text": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "375f3d44-baf3-4e91-aa24-d8bea56ec25a", "node_type": "1", "metadata": {"window": "Within 3 business days, a point of contact from the DigiMall team will get in touch with the Merchant (Seller) to guide them through the rest of the process\nnan, nan, nan, Who can sell on DigiMall?, nan, Selling on DigiMall, Any business/company big or small can become a Merchant (Seller) on DigiMall, as long they are authorized as a primary or as a reseller of that Product, or purchased or otherwise legally acquired that Product from an authorized reseller of that Product, or otherwise have a legal right to sell that Product\nIf the Merchant (Seller) is not a business but an individual, than DigiMall will need more information. Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "original_text": "This applies when the product is sold to the DigiMall user/customer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "41c1a2ea0bc4ed7171b8e8da67446b977348a313cbaaf80d12a43a8cbbe46dbe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "999bc920-1006-4ea9-b1a0-7682ac468906", "node_type": "1", "metadata": {"window": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "original_text": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b7cb23eb240d5c2024878165ac1286aaf450f29d3631252efa49bcc255e81b3f", "class_name": "RelatedNodeInfo"}}, "hash": "c73bd8df0769fe14068af830d90b7833f1f42be61362bc2bdb5d66e388ac17cf", "text": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "999bc920-1006-4ea9-b1a0-7682ac468906": {"__data__": {"id_": "999bc920-1006-4ea9-b1a0-7682ac468906", "embedding": null, "metadata": {"window": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "original_text": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "706a5c3f-650a-48b0-8f97-31957f713ed4", "node_type": "1", "metadata": {"window": "Please contact us via the form to register your request\n\nnan, nan, nan, What are the charges of Selling on DigiMall?, nan, nan, DigiMall does not charge Merchant (Seller) anything for listing their products online. A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "original_text": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "c73bd8df0769fe14068af830d90b7833f1f42be61362bc2bdb5d66e388ac17cf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65d92c4a-5a94-452b-9d27-48ace8068769", "node_type": "1", "metadata": {"window": "This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n", "original_text": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a8c9fa1c037fab2429bc2acd288abade05e38ecd182f3497d09907d7edcfe994", "class_name": "RelatedNodeInfo"}}, "hash": "b7cb23eb240d5c2024878165ac1286aaf450f29d3631252efa49bcc255e81b3f", "text": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65d92c4a-5a94-452b-9d27-48ace8068769": {"__data__": {"id_": "65d92c4a-5a94-452b-9d27-48ace8068769", "embedding": null, "metadata": {"window": "This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n", "original_text": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "999bc920-1006-4ea9-b1a0-7682ac468906", "node_type": "1", "metadata": {"window": "A Merchant (Seller) however must oblige DigiMall by paying a Platform Fee on a per transaction basis. This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "original_text": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "b7cb23eb240d5c2024878165ac1286aaf450f29d3631252efa49bcc255e81b3f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a1b858d8-7454-4d72-937a-89d8b0cd3514", "node_type": "1", "metadata": {"window": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "original_text": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6f62484643af43d2de4b43933982f6e2f5ee9c8b53477c75c136abccc4080f84", "class_name": "RelatedNodeInfo"}}, "hash": "a8c9fa1c037fab2429bc2acd288abade05e38ecd182f3497d09907d7edcfe994", "text": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a1b858d8-7454-4d72-937a-89d8b0cd3514": {"__data__": {"id_": "a1b858d8-7454-4d72-937a-89d8b0cd3514", "embedding": null, "metadata": {"window": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "original_text": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65d92c4a-5a94-452b-9d27-48ace8068769", "node_type": "1", "metadata": {"window": "This applies when the product is sold to the DigiMall user/customer. Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n", "original_text": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a8c9fa1c037fab2429bc2acd288abade05e38ecd182f3497d09907d7edcfe994", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "286565bb-97e6-44ca-bffc-9d76a1504336", "node_type": "1", "metadata": {"window": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "original_text": "Time can thus vary case to case.\u00a0\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "09fc9d1954e3270231d687a6ea44e539b81c632efb16cadd8c5530bcff290772", "class_name": "RelatedNodeInfo"}}, "hash": "6f62484643af43d2de4b43933982f6e2f5ee9c8b53477c75c136abccc4080f84", "text": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "286565bb-97e6-44ca-bffc-9d76a1504336": {"__data__": {"id_": "286565bb-97e6-44ca-bffc-9d76a1504336", "embedding": null, "metadata": {"window": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "original_text": "Time can thus vary case to case.\u00a0\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a1b858d8-7454-4d72-937a-89d8b0cd3514", "node_type": "1", "metadata": {"window": "Merchant can share a query to the DigiMall team via the Call Center 111.06.06.06 or send an email or fill out the form for more information\nnan, nan, nan, I as a Merchant do not have a website (ecommerce) to take payments, as I am a small merchant or retailer. Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "original_text": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "6f62484643af43d2de4b43933982f6e2f5ee9c8b53477c75c136abccc4080f84", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05f08375-ea6d-4f8b-b937-e2c629034c8f", "node_type": "1", "metadata": {"window": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "original_text": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "83a46932e9134b776e4c9ba2f638dcbccaccd4e04ff935b5ad457a1142898ef5", "class_name": "RelatedNodeInfo"}}, "hash": "09fc9d1954e3270231d687a6ea44e539b81c632efb16cadd8c5530bcff290772", "text": "Time can thus vary case to case.\u00a0\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05f08375-ea6d-4f8b-b937-e2c629034c8f": {"__data__": {"id_": "05f08375-ea6d-4f8b-b937-e2c629034c8f", "embedding": null, "metadata": {"window": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "original_text": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "286565bb-97e6-44ca-bffc-9d76a1504336", "node_type": "1", "metadata": {"window": "Which solution would be best for us?, nan, Website for taking merchant payments, DigiMall is a complete platform for taking orders for Merchants. It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "original_text": "Time can thus vary case to case.\u00a0\n", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "09fc9d1954e3270231d687a6ea44e539b81c632efb16cadd8c5530bcff290772", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "82e0f725-a5e1-4358-8da3-f78e7eeea1c7", "node_type": "1", "metadata": {"window": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "original_text": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7255579715628b6446c1421a8e4a526909673394500b0e3bc8537e939b2db3e4", "class_name": "RelatedNodeInfo"}}, "hash": "83a46932e9134b776e4c9ba2f638dcbccaccd4e04ff935b5ad457a1142898ef5", "text": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "82e0f725-a5e1-4358-8da3-f78e7eeea1c7": {"__data__": {"id_": "82e0f725-a5e1-4358-8da3-f78e7eeea1c7", "embedding": null, "metadata": {"window": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "original_text": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05f08375-ea6d-4f8b-b937-e2c629034c8f", "node_type": "1", "metadata": {"window": "It is a complete platform which can handle listings, purchases, payments, refunds and reports. It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "original_text": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "83a46932e9134b776e4c9ba2f638dcbccaccd4e04ff935b5ad457a1142898ef5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8b65e748-db71-49e1-ae0d-0d4f5a5532f9", "node_type": "1", "metadata": {"window": "Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "original_text": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "79a7f8cfed5f2066a1c6e0e7b754b5a4d75324792cf1b13ae0c9a82febcc68e7", "class_name": "RelatedNodeInfo"}}, "hash": "7255579715628b6446c1421a8e4a526909673394500b0e3bc8537e939b2db3e4", "text": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b65e748-db71-49e1-ae0d-0d4f5a5532f9": {"__data__": {"id_": "8b65e748-db71-49e1-ae0d-0d4f5a5532f9", "embedding": null, "metadata": {"window": "Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "original_text": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "82e0f725-a5e1-4358-8da3-f78e7eeea1c7", "node_type": "1", "metadata": {"window": "It does not necessarily require a website to be integrated with the platform, there are alternative methods for Merchant to update their products and become a Merchant\nnan, nan, nan, How long will it take to get DigiMall account for Merchant(s)?, nan, account opening time for merchant on Faysal DigiMall, After filling out the DigiMall signup form, DigiMall will need to gather some additional information before opening a Merchant account. Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "original_text": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "7255579715628b6446c1421a8e4a526909673394500b0e3bc8537e939b2db3e4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24def6eb-8e69-4d9b-be39-bcfb7fadd1ad", "node_type": "1", "metadata": {"window": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "original_text": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f831e3f3237c98e4fa7cf319e4e9778e8c34023177484dfed5049e90a1fb9c13", "class_name": "RelatedNodeInfo"}}, "hash": "79a7f8cfed5f2066a1c6e0e7b754b5a4d75324792cf1b13ae0c9a82febcc68e7", "text": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "24def6eb-8e69-4d9b-be39-bcfb7fadd1ad": {"__data__": {"id_": "24def6eb-8e69-4d9b-be39-bcfb7fadd1ad", "embedding": null, "metadata": {"window": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "original_text": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8b65e748-db71-49e1-ae0d-0d4f5a5532f9", "node_type": "1", "metadata": {"window": "Time can thus vary case to case.\u00a0\n nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "original_text": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "79a7f8cfed5f2066a1c6e0e7b754b5a4d75324792cf1b13ae0c9a82febcc68e7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3bce3dfa-7f5a-4656-b345-80227c0034b7", "node_type": "1", "metadata": {"window": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "original_text": "Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0a06fdc71ece61084d13806885bdb94fb4bad8df925fc112190e45963297cc08", "class_name": "RelatedNodeInfo"}}, "hash": "f831e3f3237c98e4fa7cf319e4e9778e8c34023177484dfed5049e90a1fb9c13", "text": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3bce3dfa-7f5a-4656-b345-80227c0034b7": {"__data__": {"id_": "3bce3dfa-7f5a-4656-b345-80227c0034b7", "embedding": null, "metadata": {"window": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "original_text": "Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "24def6eb-8e69-4d9b-be39-bcfb7fadd1ad", "node_type": "1", "metadata": {"window": "nan, nan, nan, How soon will I get my money after the transaction is processed?, nan, payment or money arrival after customer transaction, Transactions are usually deposited into your bank account in agreed term of business days after confirmed delivery of the order. This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "original_text": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "f831e3f3237c98e4fa7cf319e4e9778e8c34023177484dfed5049e90a1fb9c13", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f2da6d62-8c19-450c-a515-996c4d4d47d8", "node_type": "1", "metadata": {"window": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8f8c4aacb0661c6686dcb958c6cd3101785e8658ee4fa9c42c367d1ae5eaa1e4", "class_name": "RelatedNodeInfo"}}, "hash": "0a06fdc71ece61084d13806885bdb94fb4bad8df925fc112190e45963297cc08", "text": "Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f2da6d62-8c19-450c-a515-996c4d4d47d8": {"__data__": {"id_": "f2da6d62-8c19-450c-a515-996c4d4d47d8", "embedding": null, "metadata": {"window": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3bce3dfa-7f5a-4656-b345-80227c0034b7", "node_type": "1", "metadata": {"window": "This is set on the rule T+(n) where T = Order Transaction Completion of delivery and (n) = the number of days agreed with Merchant for disbursing payment\nnan, nan, nan, Can I create coupons or promotional discounts on the platform?, nan, creating coupons and discounts for Faysal DigiMall, Yes, the Merchant (Seller) has the flexibility to create coupons or discounts that work for your business through DigiMall Seller Center. Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "original_text": "Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "0a06fdc71ece61084d13806885bdb94fb4bad8df925fc112190e45963297cc08", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6462c9de-5859-49b2-99eb-6a15229ab991", "node_type": "1", "metadata": {"window": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3de92337673fe489a9736f56124edf2863f4544ad183696e627d3c16f8e27927", "class_name": "RelatedNodeInfo"}}, "hash": "8f8c4aacb0661c6686dcb958c6cd3101785e8658ee4fa9c42c367d1ae5eaa1e4", "text": "Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6462c9de-5859-49b2-99eb-6a15229ab991": {"__data__": {"id_": "6462c9de-5859-49b2-99eb-6a15229ab991", "embedding": null, "metadata": {"window": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f2da6d62-8c19-450c-a515-996c4d4d47d8", "node_type": "1", "metadata": {"window": "Merchant can customize coupons and promos by days, products, categories, time, locations or even types of customers. However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "8f8c4aacb0661c6686dcb958c6cd3101785e8658ee4fa9c42c367d1ae5eaa1e4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d", "node_type": "1", "metadata": {"window": "Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "37dfaa6c7ad26d50e8c54aabec342197b5dfa0bd13f393d2d285d1859b3ba15a", "class_name": "RelatedNodeInfo"}}, "hash": "3de92337673fe489a9736f56124edf2863f4544ad183696e627d3c16f8e27927", "text": "Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d": {"__data__": {"id_": "2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d", "embedding": null, "metadata": {"window": "Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9", "node_type": "4", "metadata": {"file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6462c9de-5859-49b2-99eb-6a15229ab991", "node_type": "1", "metadata": {"window": "However this requires pre-approval from DigiMall\nnan, nan, nan, What if I need to cancel my Merchant agreement?, nan, cancelling merchant agreement, Merchant (Seller) can terminate the use of DigiMall platform at any time with a 60-90 day notice period\nnan, nan, nan, My reports says I have done 850 transactions, however when I see my disbursements, it only shows 800. Why is there a difference?, nan, transactions, disbursements, and difference on faysal digimall, Transactions are stored in DigiMall databases at a set time, so DigiMall invoices are generated in that time. Payments are also for \u2018Completed\u2019 transactions only as in products which have been \u2018Delivered\u2019. Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "original_text": "Transactions will also differ based on chargebacks received, refunds, reversals, failed transactions or other reasons. ", "file_name": "Consumer Banking.csv", "doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "hash": "3de92337673fe489a9736f56124edf2863f4544ad183696e627d3c16f8e27927", "class_name": "RelatedNodeInfo"}}, "hash": "37dfaa6c7ad26d50e8c54aabec342197b5dfa0bd13f393d2d285d1859b3ba15a", "text": "Check the disbursement reports in the Seller Center for more details \nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan\nnan, Consumer Products, nan, nan, nan, nan, nan\nnan, Consumer Products, Faysal Tabeer, nan, nan, nan, nan", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e1293de6-79f5-4f45-95a9-d5a2127a2f48": {"__data__": {"id_": "e1293de6-79f5-4f45-95a9-d5a2127a2f48", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. ", "original_text": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "99add419-66f8-4b9a-857e-cdeb93a95324", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}}, "hash": "1ce6c4ab6e5439563610a7f7990360f1864f0196ff5b1638f73f3ae1b71e02cc", "text": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "99add419-66f8-4b9a-857e-cdeb93a95324": {"__data__": {"id_": "99add419-66f8-4b9a-857e-cdeb93a95324", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e1293de6-79f5-4f45-95a9-d5a2127a2f48", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. ", "original_text": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1ce6c4ab6e5439563610a7f7990360f1864f0196ff5b1638f73f3ae1b71e02cc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8fe72806-0403-44e5-b6f0-72437e6f4297", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "23f69685755b4c2f30c9ea65585bebbcf521a6ddf6a7a708bc352feb29a81f05", "class_name": "RelatedNodeInfo"}}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "text": "1 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8fe72806-0403-44e5-b6f0-72437e6f4297": {"__data__": {"id_": "8fe72806-0403-44e5-b6f0-72437e6f4297", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "99add419-66f8-4b9a-857e-cdeb93a95324", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "beeb7bf2-8f14-4d7d-9176-c905856f6ce6", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}}, "hash": "23f69685755b4c2f30c9ea65585bebbcf521a6ddf6a7a708bc352feb29a81f05", "text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "beeb7bf2-8f14-4d7d-9176-c905856f6ce6": {"__data__": {"id_": "beeb7bf2-8f14-4d7d-9176-c905856f6ce6", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8fe72806-0403-44e5-b6f0-72437e6f4297", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "23f69685755b4c2f30c9ea65585bebbcf521a6ddf6a7a708bc352feb29a81f05", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8d489c1f-8825-44d5-a921-ce683df31c64", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f59978e9ffa3d9f2d70b4f0d1b0f3c33f8cdcbec040372aac23428b39310e2f7", "class_name": "RelatedNodeInfo"}}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "text": "1 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8d489c1f-8825-44d5-a921-ce683df31c64": {"__data__": {"id_": "8d489c1f-8825-44d5-a921-ce683df31c64", "embedding": null, "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "beeb7bf2-8f14-4d7d-9176-c905856f6ce6", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to another bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Can I transfer funds to Faysal Bank account by using WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer service is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Fund Transfer functionality is available on WhatsApp Banking?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my utility bill payment through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my utility bill through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering utility bill payments , nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my mobile balance through Faysal Islami WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my postpaid bill through Faysal Islami WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Jazz bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Ufone bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Zong bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay my Telenor bill through WhatsApp Banking, Currently, postpaid bill payments are not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Jazz number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Zong number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Ufone number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to recharge my Telenor number through WhatsApp Banking, Currently, Faysal Islami WhatsApp Banking is not offering mobile bill top-ups, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open my new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open RDA account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, May I open Roshan Digital Account account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I open RDA new account with Faysal Bank?, Faysal Islami WhatsApp Banking offers the opening of Roshan Digital Account, select option 7, nan\nnan, Digital Banking Products, WhatsApp Banking, What kind of services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, Which services Faysal Bank is offering through WhatsApp Banking?, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the difference between Credit Card and Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card or Noor Card?, Faysal Bank Credit Card namely as \"Noor Card\" and this is the flagship product of Faysal Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, Which products I can covert into Islamic portfolio by using WhatsApp Banking?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, What is Conversion to Islamic Product in WhatsApp Banking, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Conversion to Islamic Product?, Faysal Bank is offering conversion of Credit Card into Noor Card, Personal Installment Loan and Faysal Flexi Noor Card, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I activate my debit card through WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Activation of debit card is available on WhatsApp Banking?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Debit Card Activation?, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, Card Activation, Yes, Fayal Islami WhatsApp Banking allows you to activate your card., nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is free for the customer?, Yes, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Do you charge for WhatsApp Banking?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, Is it free or charge?, Fayal Islami WhatsApp Banking is completely free for our valued customer, nan\nnan, Digital Banking Products, WhatsApp Banking, I am not happy with Faysal Bank services, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Worst experience I have ever seen, Dear customer, we regret inconvenience caused to you, please wait, we will connect to you shortly, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my account statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I generate my credit card statement through WhatsApp Banking, Yes, Fayal Islami WhatsApp Banking allows you to generate account statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Credit Card statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, Account Statement?, Yes, Fayal Islami WhatsApp Banking allows you to generate statement, selection option 4, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN, Dear customer, our bank UAN is 021-111-06-06-06, nan\nnan, Digital Banking Products, WhatsApp Banking, What is the number of Bank UAN for credit card customer?, Dear customer, our bank UAN is 021-111-11-71-71 for Noor Card customer , nan\nnan, Digital Banking Products, WhatsApp Banking, Why should I start using your WhatsApp Banking, Dear customer, We are offering Balance Inquiry, Account and Noor Card Statement, Donation Payments, Talk to Us, Debit and Noor Card Management, Complaints Management on Free of Cost basis, nan\nnan, Digital Banking Products, WhatsApp Banking, How much I can transfer the amount for donation, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "97ad3b2a-bdb8-44ca-a429-cf323cc18abf", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}}, "hash": "f59978e9ffa3d9f2d70b4f0d1b0f3c33f8cdcbec040372aac23428b39310e2f7", "text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "97ad3b2a-bdb8-44ca-a429-cf323cc18abf": {"__data__": {"id_": "97ad3b2a-bdb8-44ca-a429-cf323cc18abf", "embedding": null, "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8d489c1f-8825-44d5-a921-ce683df31c64", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f59978e9ffa3d9f2d70b4f0d1b0f3c33f8cdcbec040372aac23428b39310e2f7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b385e2c-697d-4cbf-8c3f-ee5184205330", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "81f59bc1c356b1a4b39508730a1517639497df50fd93fab161cf2d8b4358870a", "class_name": "RelatedNodeInfo"}}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "text": "1 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b385e2c-697d-4cbf-8c3f-ee5184205330": {"__data__": {"id_": "5b385e2c-697d-4cbf-8c3f-ee5184205330", "embedding": null, "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "97ad3b2a-bdb8-44ca-a429-cf323cc18abf", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4713258-16c1-4a8c-9668-dbc45ec1e83e", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9f3a9939a763c1ad6827e8157c733b1281b09489ef92a301e054e96694eab0a9", "class_name": "RelatedNodeInfo"}}, "hash": "81f59bc1c356b1a4b39508730a1517639497df50fd93fab161cf2d8b4358870a", "text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4713258-16c1-4a8c-9668-dbc45ec1e83e": {"__data__": {"id_": "b4713258-16c1-4a8c-9668-dbc45ec1e83e", "embedding": null, "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5b385e2c-697d-4cbf-8c3f-ee5184205330", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "81f59bc1c356b1a4b39508730a1517639497df50fd93fab161cf2d8b4358870a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3d906c4b-09ed-40d3-bc68-c1d0fd769e1a", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4e78e06f1b4d00f80391cd212cecb1fbd0ae3ef36deb1ae792d6d4588d3345b1", "class_name": "RelatedNodeInfo"}}, "hash": "9f3a9939a763c1ad6827e8157c733b1281b09489ef92a301e054e96694eab0a9", "text": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3d906c4b-09ed-40d3-bc68-c1d0fd769e1a": {"__data__": {"id_": "3d906c4b-09ed-40d3-bc68-c1d0fd769e1a", "embedding": null, "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4713258-16c1-4a8c-9668-dbc45ec1e83e", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for Fund Transfer?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for IBFT?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Maximum amount for fund transfer to other bank account?, Currently, Faysal Islami WhatsApp Banking is only available for Donation payments., nan\nnan, Digital Banking Products, WhatsApp Banking, Minimum amount for donation?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9f3a9939a763c1ad6827e8157c733b1281b09489ef92a301e054e96694eab0a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "75c34d7d-f772-4ab5-950d-6f5cc0ab5900", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a961b839c7fbab737e5b1c8594e4237bcc20cf4e0aa3481a26075914c18d2086", "class_name": "RelatedNodeInfo"}}, "hash": "4e78e06f1b4d00f80391cd212cecb1fbd0ae3ef36deb1ae792d6d4588d3345b1", "text": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "75c34d7d-f772-4ab5-950d-6f5cc0ab5900": {"__data__": {"id_": "75c34d7d-f772-4ab5-950d-6f5cc0ab5900", "embedding": null, "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3d906c4b-09ed-40d3-bc68-c1d0fd769e1a", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4e78e06f1b4d00f80391cd212cecb1fbd0ae3ef36deb1ae792d6d4588d3345b1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "70de6503-16bd-4c16-88d2-c2121d55b79b", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7c6ab1d3ea5cdc2644af7ce58fbd70512d82194745722c2e63fc103759c297db", "class_name": "RelatedNodeInfo"}}, "hash": "a961b839c7fbab737e5b1c8594e4237bcc20cf4e0aa3481a26075914c18d2086", "text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70de6503-16bd-4c16-88d2-c2121d55b79b": {"__data__": {"id_": "70de6503-16bd-4c16-88d2-c2121d55b79b", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "75c34d7d-f772-4ab5-950d-6f5cc0ab5900", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, WhatsApp Banking, WhatsApp Banking is islamic channel for transactions?, Dear customer, Faysal Islami WhatsApp Banking carries a pride of having a channel of Faysal Islamic Bank, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay zakat through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your zakat to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, I want to pay donation through WhatsApp Banking, may I?, Dear Customer, Please select option 5 and you can easily pay your donation to the desired firm, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my credit card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, Can I pay my Noor card bill through WhatsApp Banking?, Dear Customer, currently Noor card bill payment service is not available on Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my debit card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I block my Noor card?, Dear Customer, pleaes select option 3 for the blocking and unblocking of card, nan\nnan, Digital Banking Products, WhatsApp Banking, Supplementary card, Dear Customer, pleaes select option 3 to process the request for supplementary card, nan\nnan, Digital Banking Products, WhatsApp Banking, How can I get my new debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, new noor card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, New debit card, Dear Customer, pleaes select option 3 to process the request , nan\nnan, Digital Banking Products, WhatsApp Banking, What is F/OTP, Dear Customer, F/OPT service is for Financial Transaction PIN, you can get your last generated PIN for any digital banking channel by using Faysal Islami WhatsApp Banking, nan\nnan, Digital Banking Products, ATM, In which cities and areas Faysal Bank ATMs are avaiable?, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a961b839c7fbab737e5b1c8594e4237bcc20cf4e0aa3481a26075914c18d2086", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ef0a9736cea77a3d1c19a10f9fbec665f99a000221cb317579560163d996e7b8", "class_name": "RelatedNodeInfo"}}, "hash": "7c6ab1d3ea5cdc2644af7ce58fbd70512d82194745722c2e63fc103759c297db", "text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a": {"__data__": {"id_": "f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "70de6503-16bd-4c16-88d2-c2121d55b79b", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7c6ab1d3ea5cdc2644af7ce58fbd70512d82194745722c2e63fc103759c297db", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f980eded-6546-4da7-a746-951dcee06c3d", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "original_text": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "dd6f5e99fa609c212d609e50ed48ccf6d539f91df1d1349727f3c95320b7cb73", "class_name": "RelatedNodeInfo"}}, "hash": "ef0a9736cea77a3d1c19a10f9fbec665f99a000221cb317579560163d996e7b8", "text": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f980eded-6546-4da7-a746-951dcee06c3d": {"__data__": {"id_": "f980eded-6546-4da7-a746-951dcee06c3d", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "original_text": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ef0a9736cea77a3d1c19a10f9fbec665f99a000221cb317579560163d996e7b8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "80c9a161b6cf84d30a3a22603ded9cfb8cc7716e1eda1cb4fba9d3703409c055", "class_name": "RelatedNodeInfo"}}, "hash": "dd6f5e99fa609c212d609e50ed48ccf6d539f91df1d1349727f3c95320b7cb73", "text": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee": {"__data__": {"id_": "fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f980eded-6546-4da7-a746-951dcee06c3d", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest Branch ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "original_text": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "dd6f5e99fa609c212d609e50ed48ccf6d539f91df1d1349727f3c95320b7cb73", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "00165cdc-765b-4ce5-906f-011f68d87357", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "original_text": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "b43dbdb37f7da40296433552a183bd1b1c41253e7755ceb936b81e5f8433c6b3", "class_name": "RelatedNodeInfo"}}, "hash": "80c9a161b6cf84d30a3a22603ded9cfb8cc7716e1eda1cb4fba9d3703409c055", "text": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "00165cdc-765b-4ce5-906f-011f68d87357": {"__data__": {"id_": "00165cdc-765b-4ce5-906f-011f68d87357", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "original_text": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Nearest Offsite ATM, Dear Customer, you can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "80c9a161b6cf84d30a3a22603ded9cfb8cc7716e1eda1cb4fba9d3703409c055", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "116da362-b306-4a01-8b63-9ca90ed88538", "node_type": "1", "metadata": {"window": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}}, "hash": "b43dbdb37f7da40296433552a183bd1b1c41253e7755ceb936b81e5f8433c6b3", "text": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "116da362-b306-4a01-8b63-9ca90ed88538": {"__data__": {"id_": "116da362-b306-4a01-8b63-9ca90ed88538", "embedding": null, "metadata": {"window": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "00165cdc-765b-4ce5-906f-011f68d87357", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, What are the services available on ATMs?, Dear Customer, being an Faysal Bank account holder, you can use cash withdrawal, balance inquiry, mini-statement, fund trasfers, PIN change, donation payments. However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "original_text": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "b43dbdb37f7da40296433552a183bd1b1c41253e7755ceb936b81e5f8433c6b3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f6720996-0050-41b2-978e-cd5d5b1c7351", "node_type": "1", "metadata": {"window": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "857731b0a7246cff2750e961fd7da4a8b007db25302d8c403fef422bfac24033", "class_name": "RelatedNodeInfo"}}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "text": "1 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f6720996-0050-41b2-978e-cd5d5b1c7351": {"__data__": {"id_": "f6720996-0050-41b2-978e-cd5d5b1c7351", "embedding": null, "metadata": {"window": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "116da362-b306-4a01-8b63-9ca90ed88538", "node_type": "1", "metadata": {"window": "However, if you are not a Faysal Bank account holder, you can use cash withdrawal and balance inquiry services only , nan\nnan, Digital Banking Products, ATM, How much amount can I take from ATM?, Dear Customer, daily cash withdrawal limit is linked with your debit card limit, nan\nnan, Digital Banking Products, ATM, I want to take 5,000 cash from ATM, Dear Customer, you can take 5,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 cash from ATM, Dear Customer, you can take 500 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 cash from ATM, Dear Customer, you can take 1,000 cash from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 cash from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 currency from ATM, Dear Customer, you can take 5,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 currency from ATM, Dear Customer, you can take 500 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 currency from ATM, Dear Customer, you can take 1,000 currency from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 currency from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 currency notes to the customer , nan\nnan, Digital Banking Products, ATM, I want to take 5,000 notes from ATM, Dear Customer, you can take 5,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 500 notes from ATM, Dear Customer, you can take 500 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 1,000 notes from ATM, Dear Customer, you can take 1,000 notes from Faysal Bank ATMs subject to the availability as per the need of entire vicinity, nan\nnan, Digital Banking Products, ATM, I want to take 100 notes from ATM, Dear Customer, Faysal Bank ATMs does not dispense Rs.100 notes to the customer , nan\nnan, Digital Banking Products, ATM, I am non Faysal customer, can I use your ATM?, Dear Customer, you can use cash withdrawal and balance inquiry services through our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deposit cash thorugh your ATM?, Dear Customer, Faysal Bank ATMs are not available for cash disbursement services. However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f9f42492-39d1-40bb-8a3e-6d96b10cbda2", "node_type": "1", "metadata": {"window": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}}, "hash": "857731b0a7246cff2750e961fd7da4a8b007db25302d8c403fef422bfac24033", "text": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f9f42492-39d1-40bb-8a3e-6d96b10cbda2": {"__data__": {"id_": "f9f42492-39d1-40bb-8a3e-6d96b10cbda2", "embedding": null, "metadata": {"window": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f6720996-0050-41b2-978e-cd5d5b1c7351", "node_type": "1", "metadata": {"window": "However, if you want to use cash deposit serivces, please visit our cash deposit machine available at designated Faysal Bank branches, please select option. 1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "original_text": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "857731b0a7246cff2750e961fd7da4a8b007db25302d8c403fef422bfac24033", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "63e6a09a-cce4-4aab-9e46-cae05495b3f3", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "bc16b8156a1298f2e49a0d2b86f55e9ba6c8caf8989d0b3b09363305841951f9", "class_name": "RelatedNodeInfo"}}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "text": "1 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "63e6a09a-cce4-4aab-9e46-cae05495b3f3": {"__data__": {"id_": "63e6a09a-cce4-4aab-9e46-cae05495b3f3", "embedding": null, "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f9f42492-39d1-40bb-8a3e-6d96b10cbda2", "node_type": "1", "metadata": {"window": "1 for locator services, nan\nnan, Digital Banking Products, ATM, How much amount can I transfer through ATM?, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8fcefcc-dfa7-41fc-b950-a2a1e67344b6", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}}, "hash": "bc16b8156a1298f2e49a0d2b86f55e9ba6c8caf8989d0b3b09363305841951f9", "text": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8fcefcc-dfa7-41fc-b950-a2a1e67344b6": {"__data__": {"id_": "c8fcefcc-dfa7-41fc-b950-a2a1e67344b6", "embedding": null, "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "63e6a09a-cce4-4aab-9e46-cae05495b3f3", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "bc16b8156a1298f2e49a0d2b86f55e9ba6c8caf8989d0b3b09363305841951f9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "29a716cc-b333-43a9-bd9d-3e739a6a6f38", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7d1cfd90ce75070a5535baa045ca1ee5265f076116f247c994e2ec18223b9282", "class_name": "RelatedNodeInfo"}}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "text": "1 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "29a716cc-b333-43a9-bd9d-3e739a6a6f38": {"__data__": {"id_": "29a716cc-b333-43a9-bd9d-3e739a6a6f38", "embedding": null, "metadata": {"window": "1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c8fcefcc-dfa7-41fc-b950-a2a1e67344b6", "node_type": "1", "metadata": {"window": "250,000 at higher side, nan\nnan, Digital Banking Products, ATM, How to transfer funds to other bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "1 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "785d28c3-cf93-4a75-a189-36ba85697e2a", "node_type": "1", "metadata": {"window": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "78def80c1cc3ac12a1ea1aa0ad85f48fe2e1f1809d31d8defa3fd1180bbda3e1", "class_name": "RelatedNodeInfo"}}, "hash": "7d1cfd90ce75070a5535baa045ca1ee5265f076116f247c994e2ec18223b9282", "text": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "785d28c3-cf93-4a75-a189-36ba85697e2a": {"__data__": {"id_": "785d28c3-cf93-4a75-a189-36ba85697e2a", "embedding": null, "metadata": {"window": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "29a716cc-b333-43a9-bd9d-3e739a6a6f38", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "original_text": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7d1cfd90ce75070a5535baa045ca1ee5265f076116f247c994e2ec18223b9282", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bac11d45-c3c0-4ec7-8acf-1688137cf753", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3d221e9fb1ad221a4db65b15f11a242ef2aac1fda361fd665cec8927212adc73", "class_name": "RelatedNodeInfo"}}, "hash": "78def80c1cc3ac12a1ea1aa0ad85f48fe2e1f1809d31d8defa3fd1180bbda3e1", "text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bac11d45-c3c0-4ec7-8acf-1688137cf753": {"__data__": {"id_": "bac11d45-c3c0-4ec7-8acf-1688137cf753", "embedding": null, "metadata": {"window": "1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "785d28c3-cf93-4a75-a189-36ba85697e2a", "node_type": "1", "metadata": {"window": "250,000 at higher side, please visit nearby ATM and select Inter Bank Fund transfer option, nan\nnan, Digital Banking Products, ATM, How to transfer funds to Faysal Bank via ATM, Dear customer, you can transfer Rs. 1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "78def80c1cc3ac12a1ea1aa0ad85f48fe2e1f1809d31d8defa3fd1180bbda3e1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "94a125e4-583b-4d09-998c-6f7b4fec2aca", "node_type": "1", "metadata": {"window": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "db5536eb0ec384094b3ed108eeb54cbfd09a1dd76e15230aba93df885874bf6d", "class_name": "RelatedNodeInfo"}}, "hash": "3d221e9fb1ad221a4db65b15f11a242ef2aac1fda361fd665cec8927212adc73", "text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "94a125e4-583b-4d09-998c-6f7b4fec2aca": {"__data__": {"id_": "94a125e4-583b-4d09-998c-6f7b4fec2aca", "embedding": null, "metadata": {"window": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bac11d45-c3c0-4ec7-8acf-1688137cf753", "node_type": "1", "metadata": {"window": "1 to Rs. 250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3d221e9fb1ad221a4db65b15f11a242ef2aac1fda361fd665cec8927212adc73", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d8e9d331-3eac-4338-8457-5347bb9d967e", "node_type": "1", "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "original_text": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f70ba154d350f5c4d8ae205f9fc9631325e5a0533977e24b1053753dc63fa651", "class_name": "RelatedNodeInfo"}}, "hash": "db5536eb0ec384094b3ed108eeb54cbfd09a1dd76e15230aba93df885874bf6d", "text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d8e9d331-3eac-4338-8457-5347bb9d967e": {"__data__": {"id_": "d8e9d331-3eac-4338-8457-5347bb9d967e", "embedding": null, "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "original_text": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "94a125e4-583b-4d09-998c-6f7b4fec2aca", "node_type": "1", "metadata": {"window": "250,000 at higher side, please visit nearby ATM and select Fund transfer option, nan\nnan, Digital Banking Products, ATM, Can I pay school fee payment through ATM, Dear customer, by using Faysal Bank ATM, you can pay school fee on 24/7, nan\nnan, Digital Banking Products, ATM, I want to pay zakat through ATM, may I?, Dear Customer, you can pay zakat through Faysal Bank ATM by entering account number of respective account, nan\nnan, Digital Banking Products, ATM, ATM receipt charges?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. ", "original_text": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "db5536eb0ec384094b3ed108eeb54cbfd09a1dd76e15230aba93df885874bf6d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7a66b2b0-429f-417a-9644-101f2360e5d3", "node_type": "1", "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "original_text": "15 for FBL Customers and Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "6ae5176a3e2cae29eeac34a12375fae007ea680c298c02d107c985e2a5791575", "class_name": "RelatedNodeInfo"}}, "hash": "f70ba154d350f5c4d8ae205f9fc9631325e5a0533977e24b1053753dc63fa651", "text": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7a66b2b0-429f-417a-9644-101f2360e5d3": {"__data__": {"id_": "7a66b2b0-429f-417a-9644-101f2360e5d3", "embedding": null, "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "original_text": "15 for FBL Customers and Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d8e9d331-3eac-4338-8457-5347bb9d967e", "node_type": "1", "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "original_text": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f70ba154d350f5c4d8ae205f9fc9631325e5a0533977e24b1053753dc63fa651", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1365ed79-7541-45ac-885e-f0a8ade8bfa0", "node_type": "1", "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "original_text": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "718b82d97b22361743b7b9874f6151c44f5131f4631404e03aff72d344a7ca97", "class_name": "RelatedNodeInfo"}}, "hash": "6ae5176a3e2cae29eeac34a12375fae007ea680c298c02d107c985e2a5791575", "text": "15 for FBL Customers and Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1365ed79-7541-45ac-885e-f0a8ade8bfa0": {"__data__": {"id_": "1365ed79-7541-45ac-885e-f0a8ade8bfa0", "embedding": null, "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "original_text": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7a66b2b0-429f-417a-9644-101f2360e5d3", "node_type": "1", "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM without receipt?, No charges are due on the customer, nan\nnan, Digital Banking Products, ATM, Faysal Bank card holder transaction on Faysal Bank ATM with receipt?, Dear Customer, ATM receipt charges are Rs. 2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "original_text": "15 for FBL Customers and Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "6ae5176a3e2cae29eeac34a12375fae007ea680c298c02d107c985e2a5791575", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "29d68e17-7d77-4fc5-92d5-f86cd162066f", "node_type": "1", "metadata": {"window": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "original_text": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "c504254dda95bdc4fb5dde8e86cc593d7ce6740bcee2cd032ce03b2ac0be8a8f", "class_name": "RelatedNodeInfo"}}, "hash": "718b82d97b22361743b7b9874f6151c44f5131f4631404e03aff72d344a7ca97", "text": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "29d68e17-7d77-4fc5-92d5-f86cd162066f": {"__data__": {"id_": "29d68e17-7d77-4fc5-92d5-f86cd162066f", "embedding": null, "metadata": {"window": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "original_text": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1365ed79-7541-45ac-885e-f0a8ade8bfa0", "node_type": "1", "metadata": {"window": "2.5 per transaction per receipt, nan\nnan, Digital Banking Products, ATM, What are the charges for other card holder transaction on Faysal Bank ATM?, Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What abount Cash Withdrawal charges on Other ATMs (Within Pakistan), Rs.23.44 are charged per transaction , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for cash withdrawal (Outside Pakistan), 4.25% or Rs. 350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "original_text": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "718b82d97b22361743b7b9874f6151c44f5131f4631404e03aff72d344a7ca97", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5d1daf16-012e-48ea-bb39-132e8a0e5cef", "node_type": "1", "metadata": {"window": "15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "37e510ffa1c26cd00874621d7456b70e428d017929e254030569622c4c320d10", "class_name": "RelatedNodeInfo"}}, "hash": "c504254dda95bdc4fb5dde8e86cc593d7ce6740bcee2cd032ce03b2ac0be8a8f", "text": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5d1daf16-012e-48ea-bb39-132e8a0e5cef": {"__data__": {"id_": "5d1daf16-012e-48ea-bb39-132e8a0e5cef", "embedding": null, "metadata": {"window": "15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "29d68e17-7d77-4fc5-92d5-f86cd162066f", "node_type": "1", "metadata": {"window": "350/-, whichever is higher with maximum charges of Rs.3,000/-, nan\nnan, Digital Banking Products, ATM, Can I perform cardless / biometric transaction through ATM?, Dear Customer, Faysal Bank ATMs allows you to perform cardless transaction by using biometric functionality , nan\nnan, Digital Banking Products, ATM, What are the charges for cardless / biometric transaction through ATM?, Rs. 15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "original_text": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "c504254dda95bdc4fb5dde8e86cc593d7ce6740bcee2cd032ce03b2ac0be8a8f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "58e345da-8dfc-478c-b6bc-857949b978fd", "node_type": "1", "metadata": {"window": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "2b08bd9a869774f884e9067a2a1e450fa901db9eb7c060c4f6c869e5636326c3", "class_name": "RelatedNodeInfo"}}, "hash": "37e510ffa1c26cd00874621d7456b70e428d017929e254030569622c4c320d10", "text": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "58e345da-8dfc-478c-b6bc-857949b978fd": {"__data__": {"id_": "58e345da-8dfc-478c-b6bc-857949b978fd", "embedding": null, "metadata": {"window": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5d1daf16-012e-48ea-bb39-132e8a0e5cef", "node_type": "1", "metadata": {"window": "15 for FBL Customers and Rs. 30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "37e510ffa1c26cd00874621d7456b70e428d017929e254030569622c4c320d10", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d8bf818d-de82-42d4-a0fa-42c52c6c0311", "node_type": "1", "metadata": {"window": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3e7cb14e2af97446f3a1510100180ed2fed95a0c024aab013e69c9fb81525381", "class_name": "RelatedNodeInfo"}}, "hash": "2b08bd9a869774f884e9067a2a1e450fa901db9eb7c060c4f6c869e5636326c3", "text": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d8bf818d-de82-42d4-a0fa-42c52c6c0311": {"__data__": {"id_": "d8bf818d-de82-42d4-a0fa-42c52c6c0311", "embedding": null, "metadata": {"window": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "58e345da-8dfc-478c-b6bc-857949b978fd", "node_type": "1", "metadata": {"window": "30 for Non FBL Customers, nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (Without Receipt), Rs. 6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "2b08bd9a869774f884e9067a2a1e450fa901db9eb7c060c4f6c869e5636326c3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "17effb81-f60e-4b4c-83d5-8c34d5a20596", "node_type": "1", "metadata": {"window": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}}, "hash": "3e7cb14e2af97446f3a1510100180ed2fed95a0c024aab013e69c9fb81525381", "text": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "17effb81-f60e-4b4c-83d5-8c34d5a20596": {"__data__": {"id_": "17effb81-f60e-4b4c-83d5-8c34d5a20596", "embedding": null, "metadata": {"window": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d8bf818d-de82-42d4-a0fa-42c52c6c0311", "node_type": "1", "metadata": {"window": "6 will be deducted for making a balance inquiry on other bank ATMs, and without a recipt , nan\nnan, Digital Banking Products, ATM, What are the charges if I perform Balance Inquiry by using faysal bank card on Other Bank ATM (With Receipt), Rs. 9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3e7cb14e2af97446f3a1510100180ed2fed95a0c024aab013e69c9fb81525381", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c2372b8c-bdaf-4b84-b8bd-0b445d627758", "node_type": "1", "metadata": {"window": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "306ceb306f8f674fccd4aa92209768675b76493c008cd7874769ee09babc78e5", "class_name": "RelatedNodeInfo"}}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c2372b8c-bdaf-4b84-b8bd-0b445d627758": {"__data__": {"id_": "c2372b8c-bdaf-4b84-b8bd-0b445d627758", "embedding": null, "metadata": {"window": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "17effb81-f60e-4b4c-83d5-8c34d5a20596", "node_type": "1", "metadata": {"window": "9 will be deducted for making a balance inquiry on other bank ATMs, and with a recipt , nan\nnan, Digital Banking Products, ATM, What if I use ATM card for balance inquiry (Outside Pakistan), Rs. 250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7a0e1fab-2aa9-452d-92d0-aaabf2b064af", "node_type": "1", "metadata": {"window": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}}, "hash": "306ceb306f8f674fccd4aa92209768675b76493c008cd7874769ee09babc78e5", "text": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7a0e1fab-2aa9-452d-92d0-aaabf2b064af": {"__data__": {"id_": "7a0e1fab-2aa9-452d-92d0-aaabf2b064af", "embedding": null, "metadata": {"window": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c2372b8c-bdaf-4b84-b8bd-0b445d627758", "node_type": "1", "metadata": {"window": "250 will be deducted, nan\nnan, Digital Banking Products, ATM, Any charges for utility bill payment through ATMs?, Dear Customer, this service is on free of cost basis, nan\nnan, Digital Banking Products, ATM, What if I transfer the funds to another bank account through ATM?, 0.1% of the transaction amount or Rs. 200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "306ceb306f8f674fccd4aa92209768675b76493c008cd7874769ee09babc78e5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f3133d5d-c651-4597-a0a7-22d8789e4670", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a0965bf98f2267cc4ec8166a7f3756f89b6d5fda9efc66e91df5dce362a72d77", "class_name": "RelatedNodeInfo"}}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f3133d5d-c651-4597-a0a7-22d8789e4670": {"__data__": {"id_": "f3133d5d-c651-4597-a0a7-22d8789e4670", "embedding": null, "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7a0e1fab-2aa9-452d-92d0-aaabf2b064af", "node_type": "1", "metadata": {"window": "200 whichever is lower, nan\nnan, Digital Banking Products, ATM, Can I generate my new PIN by using ATM, Dear Customer, yes you can generate a new debit card PIN by using Faysal Islami ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my debit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I deactivate my debit card through ATM, Dear Customer, card deactivation is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Can I reactivate my credit card through ATM, Dear Customer, In line with SBP directives, this service is not available on our ATMs, nan\nnan, Digital Banking Products, ATM, Faysal Bank ATMs are available for special persons?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "57891ce2-32a1-44f0-8d7f-24b4f6b2806c", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}}, "hash": "a0965bf98f2267cc4ec8166a7f3756f89b6d5fda9efc66e91df5dce362a72d77", "text": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "57891ce2-32a1-44f0-8d7f-24b4f6b2806c": {"__data__": {"id_": "57891ce2-32a1-44f0-8d7f-24b4f6b2806c", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f3133d5d-c651-4597-a0a7-22d8789e4670", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a0965bf98f2267cc4ec8166a7f3756f89b6d5fda9efc66e91df5dce362a72d77", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bf8cab73-f2c8-4398-bdfc-dac7494e9c7e", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "91588dcc6da8441ba404695d94331d14e20e58f400a67096701f52a2b06ca535", "class_name": "RelatedNodeInfo"}}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bf8cab73-f2c8-4398-bdfc-dac7494e9c7e": {"__data__": {"id_": "bf8cab73-f2c8-4398-bdfc-dac7494e9c7e", "embedding": null, "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "57891ce2-32a1-44f0-8d7f-24b4f6b2806c", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Where are talking ATMs avaiable?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}}, "hash": "91588dcc6da8441ba404695d94331d14e20e58f400a67096701f52a2b06ca535", "text": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250": {"__data__": {"id_": "8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf8cab73-f2c8-4398-bdfc-dac7494e9c7e", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "original_text": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "91588dcc6da8441ba404695d94331d14e20e58f400a67096701f52a2b06ca535", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1f33685d-5e46-4065-bdda-c5d1cf3c836e", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. ", "original_text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "eae91ef8d7094d636d620fd4ec68a8d20ae3ad04bbbdc53a1aa79a3cd2a9ed29", "class_name": "RelatedNodeInfo"}}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1f33685d-5e46-4065-bdda-c5d1cf3c836e": {"__data__": {"id_": "1f33685d-5e46-4065-bdda-c5d1cf3c836e", "embedding": null, "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. ", "original_text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, Talking ATMs?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "original_text": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43b9c0f1-8423-4a24-a2fe-4434daf2d75a", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "original_text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "0ed503882c1efad03e6ff2ce3a9e23b806ce46832f6d8ce76443936d0a79881d", "class_name": "RelatedNodeInfo"}}, "hash": "eae91ef8d7094d636d620fd4ec68a8d20ae3ad04bbbdc53a1aa79a3cd2a9ed29", "text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "43b9c0f1-8423-4a24-a2fe-4434daf2d75a": {"__data__": {"id_": "43b9c0f1-8423-4a24-a2fe-4434daf2d75a", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "original_text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f33685d-5e46-4065-bdda-c5d1cf3c836e", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. ", "original_text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "eae91ef8d7094d636d620fd4ec68a8d20ae3ad04bbbdc53a1aa79a3cd2a9ed29", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ecc3483f-afda-484e-a108-f46b8a58a386", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "original_text": "10 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "45e7f0f838fff49030d3bb639681125c296543d8ee3a72e912b494652505c4ac", "class_name": "RelatedNodeInfo"}}, "hash": "0ed503882c1efad03e6ff2ce3a9e23b806ce46832f6d8ce76443936d0a79881d", "text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ecc3483f-afda-484e-a108-f46b8a58a386": {"__data__": {"id_": "ecc3483f-afda-484e-a108-f46b8a58a386", "embedding": null, "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "original_text": "10 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "43b9c0f1-8423-4a24-a2fe-4434daf2d75a", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, ATM, PWD ATM?, Dear Customer, functionality for PWD customers is available at SBP mandated locations. You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "original_text": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "0ed503882c1efad03e6ff2ce3a9e23b806ce46832f6d8ce76443936d0a79881d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "085023e5-874a-4200-a199-df73a601a34d", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "original_text": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1287e449705fd2fefed55678e9ee6e438bdfe3535cecfdbc4bd02ecaa0e3d427", "class_name": "RelatedNodeInfo"}}, "hash": "45e7f0f838fff49030d3bb639681125c296543d8ee3a72e912b494652505c4ac", "text": "10 to Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "085023e5-874a-4200-a199-df73a601a34d": {"__data__": {"id_": "085023e5-874a-4200-a199-df73a601a34d", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "original_text": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ecc3483f-afda-484e-a108-f46b8a58a386", "node_type": "1", "metadata": {"window": "You can use our nearest ATM Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "original_text": "10 to Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "45e7f0f838fff49030d3bb639681125c296543d8ee3a72e912b494652505c4ac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f0ecf047-f69c-49d7-9482-44369e5d23f5", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "original_text": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "63f2b4dc1db14f7e39f8bd84b9de01b807b219e17df9acd738254cb3c42694c1", "class_name": "RelatedNodeInfo"}}, "hash": "1287e449705fd2fefed55678e9ee6e438bdfe3535cecfdbc4bd02ecaa0e3d427", "text": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f0ecf047-f69c-49d7-9482-44369e5d23f5": {"__data__": {"id_": "f0ecf047-f69c-49d7-9482-44369e5d23f5", "embedding": null, "metadata": {"window": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "original_text": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "085023e5-874a-4200-a199-df73a601a34d", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, Digital Kiosk , What is Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Digital Kiosk?, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Services of Cash Deposit Machine is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Services of Digital Kiosk is 24/7?, Dear Customer, currently Faysal Bank Digital Kiosks are available during banking hours only , nan\nnan, Digital Banking Products, Digital Kiosk , Where are Cash Deposit machines available?, Dear Customer, you can use our nearest Digital Kiosk Locator services avaialable in WhatsApp Banking, please select option. 1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "original_text": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1287e449705fd2fefed55678e9ee6e438bdfe3535cecfdbc4bd02ecaa0e3d427", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "63ce688e-1569-449a-accd-6a4f92779bfb", "node_type": "1", "metadata": {"window": "10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "original_text": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "6ba55021ab47be5c3e578bced436479eb26324e9409be8c0ac9d14d9ee7d6833", "class_name": "RelatedNodeInfo"}}, "hash": "63f2b4dc1db14f7e39f8bd84b9de01b807b219e17df9acd738254cb3c42694c1", "text": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "63ce688e-1569-449a-accd-6a4f92779bfb": {"__data__": {"id_": "63ce688e-1569-449a-accd-6a4f92779bfb", "embedding": null, "metadata": {"window": "10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "original_text": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f0ecf047-f69c-49d7-9482-44369e5d23f5", "node_type": "1", "metadata": {"window": "1., nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine, Dear Customer, Digital Kiosk is Faysal Bank's Cash Deposit Machine which allows our valued customers to perform cash deposit transactions, digitally., nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay school fee payment through Digital Kiosk, Dear Customer, if school's account is with Faysal Bank then yes, school fee payment can be made by using Faysal Bank Digital Kiosk , nan\nnan, Digital Banking Products, Digital Kiosk , Can I transfer funds through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot transfer funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay bills funds via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I pay my postpaid bill through cash deposit machines / Digital Kiosk?, Dear Customer, currently you cannot pay postpaif bills via our Digital Kiosks, nan\nnan, Digital Banking Products, Digital Kiosk , Can I deposit every kind of currency into digital kiosk?, Dear Customer, Faysal Islami Digital Kiosk are enabled to accept pakistan's currency notes from Rs. 10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "original_text": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "63f2b4dc1db14f7e39f8bd84b9de01b807b219e17df9acd738254cb3c42694c1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9eee609a-8e10-4a48-86f1-0e87740ab06a", "node_type": "1", "metadata": {"window": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "original_text": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "45d31a3051f8cc21b1f84c65369e6284cef65de0fee20f1db7951739c1af802a", "class_name": "RelatedNodeInfo"}}, "hash": "6ba55021ab47be5c3e578bced436479eb26324e9409be8c0ac9d14d9ee7d6833", "text": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9eee609a-8e10-4a48-86f1-0e87740ab06a": {"__data__": {"id_": "9eee609a-8e10-4a48-86f1-0e87740ab06a", "embedding": null, "metadata": {"window": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "original_text": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "63ce688e-1569-449a-accd-6a4f92779bfb", "node_type": "1", "metadata": {"window": "10 to Rs. 5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "original_text": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "6ba55021ab47be5c3e578bced436479eb26324e9409be8c0ac9d14d9ee7d6833", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f8ca29ac-60fc-47c2-a9ec-8e93bcda0598", "node_type": "1", "metadata": {"window": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "original_text": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a23268fad4032e0445e3f54563de5dbffaa091fff423a3682828acffc3fd5319", "class_name": "RelatedNodeInfo"}}, "hash": "45d31a3051f8cc21b1f84c65369e6284cef65de0fee20f1db7951739c1af802a", "text": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f8ca29ac-60fc-47c2-a9ec-8e93bcda0598": {"__data__": {"id_": "f8ca29ac-60fc-47c2-a9ec-8e93bcda0598", "embedding": null, "metadata": {"window": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "original_text": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9eee609a-8e10-4a48-86f1-0e87740ab06a", "node_type": "1", "metadata": {"window": "5,000 in a single as well as in a bulk manner, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine is also a part of ATM?, Dear Customer, we are offering both ATM and Digital Kiosks as a separate / standalone solutions, nan\nnan, Digital Banking Products, Digital Kiosk , Cash Deposit Machine / Digital Kiosk is for PWD Customers as well?, Dear Customer, Currently functionality is available for PWD customers, nan\nnan, Digital Banking Products, Digital Kiosk , Can Cash Deposit Machines / Digital Kiosk accept soiled currency notes?, Dear Customer, Digital Kiosk operates in a similar way like branch counter, nan\nnan, Digital Banking Products, Digital Kiosk , What time Deposit machine takes for cash deposit transactions?, Dear Customer, Digital Kiosk can perform transactions under 30 seconds , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit Machine accepts check / cheque as well, Dear Customer, Digital Kiosk service is only for cash deposit transaction , nan\nnan, Digital Banking Products, Digital Kiosk , Deposit process is complex or lenghty?, Dear Customer, our Digital Kiosk can perform transactions under 30 seconds with 5 simple steps, nan\nnan, Digital Banking Products, Digital Kiosk , Can any one use Digital Kiosk / Cash Deposit Machine for deposit transaction?, Dear Customer, this service is available for all type of depositors however deposit will need to enter his/her CNIC and beneficiary account number, nan\nnan, Digital Banking Products, Digital Kiosk , Which type of customers can not use Digital Kiosk / Cash Deposit Machine?, Those customers who are marked in bank's AML list, FATF, NACTA, UNSC and UNFC are not allowed to use Digital Kiosk services , nan\nnan, Digital Banking Products, SMS Alerts, What is the monthly fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "original_text": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "45d31a3051f8cc21b1f84c65369e6284cef65de0fee20f1db7951739c1af802a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bf305abc-a0fe-4e71-bcd9-7e4f50c89247", "node_type": "1", "metadata": {"window": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "original_text": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "8b3a5ca930521658b48016e4e8724fd33ff7e407d7c99994c03fd8d47fd617d1", "class_name": "RelatedNodeInfo"}}, "hash": "a23268fad4032e0445e3f54563de5dbffaa091fff423a3682828acffc3fd5319", "text": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bf305abc-a0fe-4e71-bcd9-7e4f50c89247": {"__data__": {"id_": "bf305abc-a0fe-4e71-bcd9-7e4f50c89247", "embedding": null, "metadata": {"window": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "original_text": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f8ca29ac-60fc-47c2-a9ec-8e93bcda0598", "node_type": "1", "metadata": {"window": "120 per month, nan\nnan, Digital Banking Products, SMS Alerts, What is the annual fee for SMS alert subscription?, Dear Customer, you can opt Faysal Islami monthly subscription services at the Rs. 1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "original_text": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a23268fad4032e0445e3f54563de5dbffaa091fff423a3682828acffc3fd5319", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c4765729-02a5-4597-bfcd-57f62dbd8701", "node_type": "1", "metadata": {"window": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "original_text": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "18ae8efaa39326a93017671eb81bb34cbfd3fce4e9a46609798ccf861cc4103f", "class_name": "RelatedNodeInfo"}}, "hash": "8b3a5ca930521658b48016e4e8724fd33ff7e407d7c99994c03fd8d47fd617d1", "text": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c4765729-02a5-4597-bfcd-57f62dbd8701": {"__data__": {"id_": "c4765729-02a5-4597-bfcd-57f62dbd8701", "embedding": null, "metadata": {"window": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "original_text": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf305abc-a0fe-4e71-bcd9-7e4f50c89247", "node_type": "1", "metadata": {"window": "1,200 per month, nan\nnan, Digital Banking Products, SMS Alerts, What are the SMS subscription packages?, Dear Customer, Faysal Bank is offering two types of SMS subscription packages, Monthly Package: Rs. 120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "original_text": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "8b3a5ca930521658b48016e4e8724fd33ff7e407d7c99994c03fd8d47fd617d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc230ea6-588e-4927-b6b3-4d3ccda9c6ef", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7e115520be884a6878d482effd9e0157ea19de7bca52e48028b2215850358755", "class_name": "RelatedNodeInfo"}}, "hash": "18ae8efaa39326a93017671eb81bb34cbfd3fce4e9a46609798ccf861cc4103f", "text": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc230ea6-588e-4927-b6b3-4d3ccda9c6ef": {"__data__": {"id_": "bc230ea6-588e-4927-b6b3-4d3ccda9c6ef", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c4765729-02a5-4597-bfcd-57f62dbd8701", "node_type": "1", "metadata": {"window": "120 and Annual Package: 1,200, nan\nnan, Digital Banking Products, E-Statement, Can I get my account statement via email, Dear Customer, yes you can get your free of cost account statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, Can I get my credit card / noor card statement via email, Dear Customer, yes you can get your free of cost Noor Card statement on your registered email address, nan\nnan, Digital Banking Products, E-Statement, I do not want to receive physical account statement at my address, Dear Customer, yes you request has been noted at our end and from now onwards, you will continue to receive electronic statement at your registered email address, nan\nnan, Digital Banking Products, DigiBank Mobile App, nan, nan, nan\nnan, Digital Banking Products, Internet Banking, Are there any charges for the registration on Internet Banking, The registration for Internet Banking is completely free of cost.\n , nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "original_text": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "18ae8efaa39326a93017671eb81bb34cbfd3fce4e9a46609798ccf861cc4103f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "54645dec-d5cf-4406-8519-2caf793a8d55", "node_type": "1", "metadata": {"window": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n", "original_text": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7b9479b3611e1287dd898c5e7501553cc37676c653b812311d65505fa924a9fe", "class_name": "RelatedNodeInfo"}}, "hash": "7e115520be884a6878d482effd9e0157ea19de7bca52e48028b2215850358755", "text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "54645dec-d5cf-4406-8519-2caf793a8d55": {"__data__": {"id_": "54645dec-d5cf-4406-8519-2caf793a8d55", "embedding": null, "metadata": {"window": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n", "original_text": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc230ea6-588e-4927-b6b3-4d3ccda9c6ef", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What should I do if my contact details such as Mobile Number and E-mail Address are incorrect or not\nupdated in bank\u2019s record?, Missing, nan\nnan, nan, nan, What is the limit of fund transfers?, You can call our 24/7 Call Center at 111 06 06 06 or visit your nearest branch to get your contact details updated., nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can transfer funds up to PKR 250,000 per day., nan\nnan, nan, nan, What types of Utility Bills can be paid through Internet Banking?\n , Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7e115520be884a6878d482effd9e0157ea19de7bca52e48028b2215850358755", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2b7191fc-77a4-43e3-b69e-0120173a1ddf", "node_type": "1", "metadata": {"window": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "e076fc2b1fc8b4f094cfab04db00b1a8858b64b75213bfe998c0eb6b9ced594c", "class_name": "RelatedNodeInfo"}}, "hash": "7b9479b3611e1287dd898c5e7501553cc37676c653b812311d65505fa924a9fe", "text": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2b7191fc-77a4-43e3-b69e-0120173a1ddf": {"__data__": {"id_": "2b7191fc-77a4-43e3-b69e-0120173a1ddf", "embedding": null, "metadata": {"window": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "54645dec-d5cf-4406-8519-2caf793a8d55", "node_type": "1", "metadata": {"window": ", Faysal Digibank\nBiller Biller\nDHA Housing, nan\nnan, nan, nan, Can I cancel Internet Banking account?, You can de-activate Internet Banking account any time by calling our 24/7 Call Center at 111 06 06 06 or via\nInternet Banking by following the process below:\nLogin to Faysal Digibank Internet Banking\nClick on Settings > My Profile > Deactivate Account, nan\nnan, nan, nan, Can I change my username?, No, you cannot change your username once created. Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n", "original_text": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7b9479b3611e1287dd898c5e7501553cc37676c653b812311d65505fa924a9fe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b67e39a3-2f5e-4ef1-b716-07d219692b03", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "original_text": "Faysal Islami offers ten account types within our Current and Savings categories.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "80493aef1a33fca673ff73ca101b6a709e9e143dd05524fd3c14329f58cdabc6", "class_name": "RelatedNodeInfo"}}, "hash": "e076fc2b1fc8b4f094cfab04db00b1a8858b64b75213bfe998c0eb6b9ced594c", "text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b67e39a3-2f5e-4ef1-b716-07d219692b03": {"__data__": {"id_": "b67e39a3-2f5e-4ef1-b716-07d219692b03", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "original_text": "Faysal Islami offers ten account types within our Current and Savings categories.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2b7191fc-77a4-43e3-b69e-0120173a1ddf", "node_type": "1", "metadata": {"window": "Username can however be retrieved by calling helpline., nan\nnan, nan, nan, Can I change my login password?, Yes, you can change the password any time by going into Settings>My Profile>Change Password., nan\nnan, nan, nan, How can I get username and login password?, You will be required to make username and password of your choice at the time of registration.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "e076fc2b1fc8b4f094cfab04db00b1a8858b64b75213bfe998c0eb6b9ced594c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "203718f9-f181-48af-843d-32d463f4a412", "node_type": "1", "metadata": {"window": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. ", "original_text": "1. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "55e620853d9ebddd114fbdccf3c9c91e4ca68837bd6feafc8f5067c9613a9e52", "class_name": "RelatedNodeInfo"}}, "hash": "80493aef1a33fca673ff73ca101b6a709e9e143dd05524fd3c14329f58cdabc6", "text": "Faysal Islami offers ten account types within our Current and Savings categories.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "203718f9-f181-48af-843d-32d463f4a412": {"__data__": {"id_": "203718f9-f181-48af-843d-32d463f4a412", "embedding": null, "metadata": {"window": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. ", "original_text": "1. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b67e39a3-2f5e-4ef1-b716-07d219692b03", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, What if I forget my password?, You can click on \u201cForgot Password\u201d and follow the process mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Forget Password > Provide Login ID & Mobile Number\nEnter Captcha > Create new Password\nLogin to Faysal Digibank., nan\nnan, nan, nan, How do I reactivate my account after deactivating?\n , You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "original_text": "Faysal Islami offers ten account types within our Current and Savings categories.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "80493aef1a33fca673ff73ca101b6a709e9e143dd05524fd3c14329f58cdabc6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9241ed6d-bc04-4f24-a195-3b27ac75f5e7", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "original_text": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "e6ad5789c25923bf0c58844b796315805d716ef1fd7be1a081af60efb070439f", "class_name": "RelatedNodeInfo"}}, "hash": "55e620853d9ebddd114fbdccf3c9c91e4ca68837bd6feafc8f5067c9613a9e52", "text": "1. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9241ed6d-bc04-4f24-a195-3b27ac75f5e7": {"__data__": {"id_": "9241ed6d-bc04-4f24-a195-3b27ac75f5e7", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "original_text": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "203718f9-f181-48af-843d-32d463f4a412", "node_type": "1", "metadata": {"window": ", You can click on \u201cReactivate Account\u201d and proceed with the process as mentioned below:\nOpen Faysal Digibank via Internet Banking portal/Mobile Banking App\nClick on Reactivate Account > Provide Login Id & Email Address\nProvide CNIC & Generate/Validate OTP\nSubmit details > Account Reactivated\nOr you can call our 24/7 Call Center at 111 06 06 06 to re-activate the account.\n , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. ", "original_text": "1. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "55e620853d9ebddd114fbdccf3c9c91e4ca68837bd6feafc8f5067c9613a9e52", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "08c2f405-2ef7-4881-9909-b74222a3fbcc", "node_type": "1", "metadata": {"window": "Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. ", "original_text": "Faysal Islami Savings Account USD (US Dollar)\n3. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "17dd19b2a607941b1c9c841996c9c57d5b6363c9849afa03022cb8558a3d1fd2", "class_name": "RelatedNodeInfo"}}, "hash": "e6ad5789c25923bf0c58844b796315805d716ef1fd7be1a081af60efb070439f", "text": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "08c2f405-2ef7-4881-9909-b74222a3fbcc": {"__data__": {"id_": "08c2f405-2ef7-4881-9909-b74222a3fbcc", "embedding": null, "metadata": {"window": "Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. ", "original_text": "Faysal Islami Savings Account USD (US Dollar)\n3. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9241ed6d-bc04-4f24-a195-3b27ac75f5e7", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Roshan Digital Account, How can I open Roshan Digital Account?, Customers can open their Roshan Digital Account by signing into https://digionboard.faysalbank.com, nan\nnan, nan, nan, Which Accounts can I open?, Customers can choose an account based on their financial needs and product features. Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "original_text": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "e6ad5789c25923bf0c58844b796315805d716ef1fd7be1a081af60efb070439f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "648c429b-f7fe-4458-93cf-66c8c125639f", "node_type": "1", "metadata": {"window": "1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "original_text": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3aa4188dc40982f03b8ee4696d126d14089f58e71b31ae62f23e2b6ecd229723", "class_name": "RelatedNodeInfo"}}, "hash": "17dd19b2a607941b1c9c841996c9c57d5b6363c9849afa03022cb8558a3d1fd2", "text": "Faysal Islami Savings Account USD (US Dollar)\n3. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "648c429b-f7fe-4458-93cf-66c8c125639f": {"__data__": {"id_": "648c429b-f7fe-4458-93cf-66c8c125639f", "embedding": null, "metadata": {"window": "1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "original_text": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "08c2f405-2ef7-4881-9909-b74222a3fbcc", "node_type": "1", "metadata": {"window": "Faysal Islami offers ten account types within our Current and Savings categories.\n 1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. ", "original_text": "Faysal Islami Savings Account USD (US Dollar)\n3. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "17dd19b2a607941b1c9c841996c9c57d5b6363c9849afa03022cb8558a3d1fd2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0b65d9b4-7d7d-4f18-87fb-15c4543c81d9", "node_type": "1", "metadata": {"window": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. ", "original_text": "Faysal Islami Current Account USD (US Dollar)\n5. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4583b7877cc5c0605e65e514e766bdc120943e4261d7630e26360bee7a73f76a", "class_name": "RelatedNodeInfo"}}, "hash": "3aa4188dc40982f03b8ee4696d126d14089f58e71b31ae62f23e2b6ecd229723", "text": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0b65d9b4-7d7d-4f18-87fb-15c4543c81d9": {"__data__": {"id_": "0b65d9b4-7d7d-4f18-87fb-15c4543c81d9", "embedding": null, "metadata": {"window": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. ", "original_text": "Faysal Islami Current Account USD (US Dollar)\n5. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "648c429b-f7fe-4458-93cf-66c8c125639f", "node_type": "1", "metadata": {"window": "1. Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "original_text": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3aa4188dc40982f03b8ee4696d126d14089f58e71b31ae62f23e2b6ecd229723", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a60b23ce-e7cc-4336-bb9c-debac1700529", "node_type": "1", "metadata": {"window": "Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "original_text": "Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d53cfd6cf0ada2715d2a81b56b4ca574603261eecbd4653f049f69bf65d9b71f", "class_name": "RelatedNodeInfo"}}, "hash": "4583b7877cc5c0605e65e514e766bdc120943e4261d7630e26360bee7a73f76a", "text": "Faysal Islami Current Account USD (US Dollar)\n5. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a60b23ce-e7cc-4336-bb9c-debac1700529": {"__data__": {"id_": "a60b23ce-e7cc-4336-bb9c-debac1700529", "embedding": null, "metadata": {"window": "Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "original_text": "Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0b65d9b4-7d7d-4f18-87fb-15c4543c81d9", "node_type": "1", "metadata": {"window": "Faysal Islami Savings Account PKR (Pakistani Rupees)\n2. Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. ", "original_text": "Faysal Islami Current Account USD (US Dollar)\n5. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4583b7877cc5c0605e65e514e766bdc120943e4261d7630e26360bee7a73f76a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fd20aac4-0a33-43a5-bdd1-16c3a6cc535c", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. ", "original_text": "Faysal Islami Current Account EUR (Euro)\n7. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ef426d0ec2d78eedb62b7e93d5abe4ec3c4d5df88748ce69e2eb96a90f24afd1", "class_name": "RelatedNodeInfo"}}, "hash": "d53cfd6cf0ada2715d2a81b56b4ca574603261eecbd4653f049f69bf65d9b71f", "text": "Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fd20aac4-0a33-43a5-bdd1-16c3a6cc535c": {"__data__": {"id_": "fd20aac4-0a33-43a5-bdd1-16c3a6cc535c", "embedding": null, "metadata": {"window": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. ", "original_text": "Faysal Islami Current Account EUR (Euro)\n7. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a60b23ce-e7cc-4336-bb9c-debac1700529", "node_type": "1", "metadata": {"window": "Faysal Islami Savings Account USD (US Dollar)\n3. Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "original_text": "Faysal Islami Current Account GBP (Pound Sterling)\n6. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d53cfd6cf0ada2715d2a81b56b4ca574603261eecbd4653f049f69bf65d9b71f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d46c3f2a-a1b9-4d87-94df-504d42d8f00e", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "original_text": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1d8ae28c650dda6bdda6cac3e513ba2df98b5f8bc6de71439e35d75d05ca7eb6", "class_name": "RelatedNodeInfo"}}, "hash": "ef426d0ec2d78eedb62b7e93d5abe4ec3c4d5df88748ce69e2eb96a90f24afd1", "text": "Faysal Islami Current Account EUR (Euro)\n7. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d46c3f2a-a1b9-4d87-94df-504d42d8f00e": {"__data__": {"id_": "d46c3f2a-a1b9-4d87-94df-504d42d8f00e", "embedding": null, "metadata": {"window": "Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "original_text": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fd20aac4-0a33-43a5-bdd1-16c3a6cc535c", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account PKR (Pakistani Rupees)\n4. Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. ", "original_text": "Faysal Islami Current Account EUR (Euro)\n7. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ef426d0ec2d78eedb62b7e93d5abe4ec3c4d5df88748ce69e2eb96a90f24afd1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9f65f32f-f262-4e36-b472-019405837437", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "original_text": "Faysal Islami Current Account AED (Dirhams)\n9. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1e6f3b34f746750e8238685e9af033b8e87664cf47c24125a09aeedf6b3d1f90", "class_name": "RelatedNodeInfo"}}, "hash": "1d8ae28c650dda6bdda6cac3e513ba2df98b5f8bc6de71439e35d75d05ca7eb6", "text": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f65f32f-f262-4e36-b472-019405837437": {"__data__": {"id_": "9f65f32f-f262-4e36-b472-019405837437", "embedding": null, "metadata": {"window": "Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "original_text": "Faysal Islami Current Account AED (Dirhams)\n9. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d46c3f2a-a1b9-4d87-94df-504d42d8f00e", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account USD (US Dollar)\n5. Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "original_text": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1d8ae28c650dda6bdda6cac3e513ba2df98b5f8bc6de71439e35d75d05ca7eb6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9791c9dc-9a08-4018-b29c-e742960e0141", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "original_text": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "faba2abe92044698501d6ee44385002bfd4f97f90263df591a86fdb7810bb549", "class_name": "RelatedNodeInfo"}}, "hash": "1e6f3b34f746750e8238685e9af033b8e87664cf47c24125a09aeedf6b3d1f90", "text": "Faysal Islami Current Account AED (Dirhams)\n9. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9791c9dc-9a08-4018-b29c-e742960e0141": {"__data__": {"id_": "9791c9dc-9a08-4018-b29c-e742960e0141", "embedding": null, "metadata": {"window": "Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "original_text": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f65f32f-f262-4e36-b472-019405837437", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account GBP (Pound Sterling)\n6. Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "original_text": "Faysal Islami Current Account AED (Dirhams)\n9. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1e6f3b34f746750e8238685e9af033b8e87664cf47c24125a09aeedf6b3d1f90", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "753cfa89-dec1-4ecc-8d9a-0ec62f0290f0", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "original_text": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "84a4a85c00ef3c58c46f9c82f70447d08cf95bebe38f1b3593150763d43935f1", "class_name": "RelatedNodeInfo"}}, "hash": "faba2abe92044698501d6ee44385002bfd4f97f90263df591a86fdb7810bb549", "text": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "753cfa89-dec1-4ecc-8d9a-0ec62f0290f0": {"__data__": {"id_": "753cfa89-dec1-4ecc-8d9a-0ec62f0290f0", "embedding": null, "metadata": {"window": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "original_text": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9791c9dc-9a08-4018-b29c-e742960e0141", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account EUR (Euro)\n7. Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "original_text": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "faba2abe92044698501d6ee44385002bfd4f97f90263df591a86fdb7810bb549", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87b726d8-91a8-4d85-854c-a41b637e133c", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n", "original_text": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "23900dbf4063f2b92969c9325784c9f6d08f8777328c009974d4b0d1bcb6a3e3", "class_name": "RelatedNodeInfo"}}, "hash": "84a4a85c00ef3c58c46f9c82f70447d08cf95bebe38f1b3593150763d43935f1", "text": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87b726d8-91a8-4d85-854c-a41b637e133c": {"__data__": {"id_": "87b726d8-91a8-4d85-854c-a41b637e133c", "embedding": null, "metadata": {"window": "Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n", "original_text": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "753cfa89-dec1-4ecc-8d9a-0ec62f0290f0", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account SAR (Saudi Riyal)\n8. Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "original_text": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "84a4a85c00ef3c58c46f9c82f70447d08cf95bebe38f1b3593150763d43935f1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a6e7c833-5f83-4448-84c6-4a659c803843", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. ", "original_text": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ff4fa0e777077a16b97f87cc58fda3f89f0f0e1d88034713f83265fc453f77e4", "class_name": "RelatedNodeInfo"}}, "hash": "23900dbf4063f2b92969c9325784c9f6d08f8777328c009974d4b0d1bcb6a3e3", "text": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a6e7c833-5f83-4448-84c6-4a659c803843": {"__data__": {"id_": "a6e7c833-5f83-4448-84c6-4a659c803843", "embedding": null, "metadata": {"window": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. ", "original_text": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "87b726d8-91a8-4d85-854c-a41b637e133c", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account AED (Dirhams)\n9. Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n", "original_text": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "23900dbf4063f2b92969c9325784c9f6d08f8777328c009974d4b0d1bcb6a3e3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d98827b7-94a1-4dff-a537-9b45a7f5232b", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "original_text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "class_name": "RelatedNodeInfo"}}, "hash": "ff4fa0e777077a16b97f87cc58fda3f89f0f0e1d88034713f83265fc453f77e4", "text": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d98827b7-94a1-4dff-a537-9b45a7f5232b": {"__data__": {"id_": "d98827b7-94a1-4dff-a537-9b45a7f5232b", "embedding": null, "metadata": {"window": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "original_text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a6e7c833-5f83-4448-84c6-4a659c803843", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account CAD (Canadian Dollar)\n10. Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. ", "original_text": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ff4fa0e777077a16b97f87cc58fda3f89f0f0e1d88034713f83265fc453f77e4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e2435de1-589b-4f6d-9c4a-f96e20f058fc", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "original_text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "class_name": "RelatedNodeInfo"}}, "hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e2435de1-589b-4f6d-9c4a-f96e20f058fc": {"__data__": {"id_": "e2435de1-589b-4f6d-9c4a-f96e20f058fc", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "original_text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d98827b7-94a1-4dff-a537-9b45a7f5232b", "node_type": "1", "metadata": {"window": "Faysal Islami Current Account CNY (Chinese Yuan)\n, nan\nnan, nan, nan, What is the eligibility criteria to open Roshan Digital Account?, Following Individuals are eligible to open the account:\n\u2022 Resident Pakistanis having declared foreign assets can open an RDA account in Foreign Currency only\n\u2022 Non-resident Pakistani Nationals (NRPs) having CNIC/ SNIC/ NICOP and Foreigners having Pakistan Origin Card (POC) can open an account as follows;\n\u2013 Individually or\n\u2013 Jointly* (FCY Account only with a Resident/Non-resident Pakistani both)\n\u2022 Resident Pakistanis can open FCY account (having foreign assets declared in last tax return with FBR) Individually or Jointly with a Resident Pakistani only\n\u2022 Employees or officials of the Federal Government or a Provincial Government posted abroad\n\n\u2022 Minor Joint Account, an individual aged younger than 18 can also open a joint account along with their guardian.\n , nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "original_text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bbe90f1c-132f-4a56-b528-07d0e66fc914", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n", "original_text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "class_name": "RelatedNodeInfo"}}, "hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bbe90f1c-132f-4a56-b528-07d0e66fc914": {"__data__": {"id_": "bbe90f1c-132f-4a56-b528-07d0e66fc914", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n", "original_text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2435de1-589b-4f6d-9c4a-f96e20f058fc", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What is the definition of a Non-Resident Person?, As per the Income Tax Ordinance, 2001 (updated 31 Dec 2019)\u2013 Section 82, Division ll, Chapter 5;\nAn individual shall be a non-resident individual for a tax year if the individual \u2014\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 183 days or more in the tax year (July to June); or\n\u2022 is outside of Pakistan for a period of, or periods amounting in aggregate to, 120 or more in the tax year and, in the four years preceding the tax year, has been outside of Pakistan for a period of, or periods amounting in aggregate to, 365 days or more.\n , nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "original_text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "66641c23-4def-4b61-8473-67323a1372ed", "node_type": "1", "metadata": {"window": "scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. ", "original_text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "40e0e412b92ffa3c74940fd9819f505d9286663908fa9bb70b38cb9dea14afc5", "class_name": "RelatedNodeInfo"}}, "hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "66641c23-4def-4b61-8473-67323a1372ed": {"__data__": {"id_": "66641c23-4def-4b61-8473-67323a1372ed", "embedding": null, "metadata": {"window": "scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. ", "original_text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bbe90f1c-132f-4a56-b528-07d0e66fc914", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, Can Resident Pakistanis open Roshan Digital Accounts in Faysal Islami?, Resident Pakistanis can only open Foreign Currency Roshan Digital Accounts at Faysal Bank through branches; provided that they have declared their assets held abroad, as per wealth statement declared in the latest tax return with the Federal Board of Revenue (FBR)., nan\nnan, nan, nan, Are these accounts Islamic?, Yes, Roshan Digital Accounts are Shariah compliant and are duly approved by bank\u2019s Shariah Board., nan\nnan, nan, nan, With regards to account opening for NRP, what are the minimum documents required for online submission on portal?, \u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n", "original_text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e12f8265-0301-4266-a07d-df81002d2328", "node_type": "1", "metadata": {"window": "\u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "original_text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "class_name": "RelatedNodeInfo"}}, "hash": "40e0e412b92ffa3c74940fd9819f505d9286663908fa9bb70b38cb9dea14afc5", "text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e12f8265-0301-4266-a07d-df81002d2328": {"__data__": {"id_": "e12f8265-0301-4266-a07d-df81002d2328", "embedding": null, "metadata": {"window": "\u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "original_text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "66641c23-4def-4b61-8473-67323a1372ed", "node_type": "1", "metadata": {"window": "scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. ", "original_text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "40e0e412b92ffa3c74940fd9819f505d9286663908fa9bb70b38cb9dea14afc5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d2dfe03a-ca03-41d4-a1ae-3a61424182b3", "node_type": "1", "metadata": {"window": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "original_text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "class_name": "RelatedNodeInfo"}}, "hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d2dfe03a-ca03-41d4-a1ae-3a61424182b3": {"__data__": {"id_": "d2dfe03a-ca03-41d4-a1ae-3a61424182b3", "embedding": null, "metadata": {"window": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "original_text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e12f8265-0301-4266-a07d-df81002d2328", "node_type": "1", "metadata": {"window": "\u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "original_text": "scanned copy of POC, visa, entry/exit stamps, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "99f0352b-240f-44d7-b74d-456e90db0a63", "node_type": "1", "metadata": {"window": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. ", "original_text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "class_name": "RelatedNodeInfo"}}, "hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "99f0352b-240f-44d7-b74d-456e90db0a63": {"__data__": {"id_": "99f0352b-240f-44d7-b74d-456e90db0a63", "embedding": null, "metadata": {"window": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. ", "original_text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d2dfe03a-ca03-41d4-a1ae-3a61424182b3", "node_type": "1", "metadata": {"window": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "original_text": "\u2022 Proof of Profession and Source of Income/Funds (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dc87a74e-5142-4dd3-8797-e3235c902f29", "node_type": "1", "metadata": {"window": "scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "original_text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "26f7b7537f2f72bdae3fc8ffd79758ea17f698c045e74bdf9a337324c4ab59f1", "class_name": "RelatedNodeInfo"}}, "hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dc87a74e-5142-4dd3-8797-e3235c902f29": {"__data__": {"id_": "dc87a74e-5142-4dd3-8797-e3235c902f29", "embedding": null, "metadata": {"window": "scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "original_text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "99f0352b-240f-44d7-b74d-456e90db0a63", "node_type": "1", "metadata": {"window": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n\u2022 Original scanned CNIC/ NICOP/ POC\n\u2022 Original scanned Passport (first 2 pages) (Pakistani and/or foreign/other country)\n\u2022 Proof of NRP status (e.g. scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. ", "original_text": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3a1edd39-c69a-4587-939e-7d7698afa334", "node_type": "1", "metadata": {"window": "\u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "original_text": ", nan\nnan, nan, nan, My passport has expired. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "759175ddd6d7f3482a4253a131dec512a7392a449e75708f394d1da06d65835b", "class_name": "RelatedNodeInfo"}}, "hash": "26f7b7537f2f72bdae3fc8ffd79758ea17f698c045e74bdf9a337324c4ab59f1", "text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3a1edd39-c69a-4587-939e-7d7698afa334": {"__data__": {"id_": "3a1edd39-c69a-4587-939e-7d7698afa334", "embedding": null, "metadata": {"window": "\u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "original_text": ", nan\nnan, nan, nan, My passport has expired. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dc87a74e-5142-4dd3-8797-e3235c902f29", "node_type": "1", "metadata": {"window": "scanned copy of POC, visa, entry/exit stamps, etc.)\n \u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "original_text": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "26f7b7537f2f72bdae3fc8ffd79758ea17f698c045e74bdf9a337324c4ab59f1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d8f1a304-ede3-426d-ad3e-aafced4c4d11", "node_type": "1", "metadata": {"window": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "original_text": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4093447f9dd91a643fe3f72c4f83bc823c5a970734915c59ca66f4fc7f8afd86", "class_name": "RelatedNodeInfo"}}, "hash": "759175ddd6d7f3482a4253a131dec512a7392a449e75708f394d1da06d65835b", "text": ", nan\nnan, nan, nan, My passport has expired. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d8f1a304-ede3-426d-ad3e-aafced4c4d11": {"__data__": {"id_": "d8f1a304-ede3-426d-ad3e-aafced4c4d11", "embedding": null, "metadata": {"window": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "original_text": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3a1edd39-c69a-4587-939e-7d7698afa334", "node_type": "1", "metadata": {"window": "\u2022 Proof of Profession and Source of Income/Funds (e.g. scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "original_text": ", nan\nnan, nan, nan, My passport has expired. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "759175ddd6d7f3482a4253a131dec512a7392a449e75708f394d1da06d65835b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c9ffce2f-fdd0-4098-8685-dc9bf0261883", "node_type": "1", "metadata": {"window": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "original_text": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d569b852313acacdc6a7e9b7385bde95e4eba98b6139f47245c1c0d34d71e6c0", "class_name": "RelatedNodeInfo"}}, "hash": "4093447f9dd91a643fe3f72c4f83bc823c5a970734915c59ca66f4fc7f8afd86", "text": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c9ffce2f-fdd0-4098-8685-dc9bf0261883": {"__data__": {"id_": "c9ffce2f-fdd0-4098-8685-dc9bf0261883", "embedding": null, "metadata": {"window": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "original_text": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d8f1a304-ede3-426d-ad3e-aafced4c4d11", "node_type": "1", "metadata": {"window": "scanned copy of job certificate, tax return, rent agreement, salary slips, etc.)\n \u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "original_text": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4093447f9dd91a643fe3f72c4f83bc823c5a970734915c59ca66f4fc7f8afd86", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc837308-679b-4575-963a-690be2caa634", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. ", "original_text": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ce0989a0a600ac5177878580bdaf6525eac4f6142fb096cd765b7e8260c66b36", "class_name": "RelatedNodeInfo"}}, "hash": "d569b852313acacdc6a7e9b7385bde95e4eba98b6139f47245c1c0d34d71e6c0", "text": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc837308-679b-4575-963a-690be2caa634": {"__data__": {"id_": "bc837308-679b-4575-963a-690be2caa634", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. ", "original_text": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c9ffce2f-fdd0-4098-8685-dc9bf0261883", "node_type": "1", "metadata": {"window": "\u2022 Live Photo of customer\n\u2022 Signature (Electronic)\n, nan\nnan, nan, nan, With regard to opening a joint account of a minor, what are the minimum documents required for submission?, The minor is required to submit a scanned copy of their child registration certificate. , nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "original_text": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d569b852313acacdc6a7e9b7385bde95e4eba98b6139f47245c1c0d34d71e6c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3917d84-eb21-4ed3-a124-b81b57e1b2c2", "node_type": "1", "metadata": {"window": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. ", "original_text": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "258d8a6d4929a98c725d15d07bc80208e77d15b5430c6639ae8efe89a9642ec6", "class_name": "RelatedNodeInfo"}}, "hash": "ce0989a0a600ac5177878580bdaf6525eac4f6142fb096cd765b7e8260c66b36", "text": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3917d84-eb21-4ed3-a124-b81b57e1b2c2": {"__data__": {"id_": "e3917d84-eb21-4ed3-a124-b81b57e1b2c2", "embedding": null, "metadata": {"window": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. ", "original_text": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc837308-679b-4575-963a-690be2caa634", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, My passport has expired. Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. ", "original_text": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "ce0989a0a600ac5177878580bdaf6525eac4f6142fb096cd765b7e8260c66b36", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16c787d1-e70f-418f-a066-07636d894505", "node_type": "1", "metadata": {"window": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "original_text": "A mudaraba is a partnership, contract/agreement between two or more parties. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a16e894e851503bfff5ae9d593bafc5e5db7f0156df164905c452eca6c613d4d", "class_name": "RelatedNodeInfo"}}, "hash": "258d8a6d4929a98c725d15d07bc80208e77d15b5430c6639ae8efe89a9642ec6", "text": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "16c787d1-e70f-418f-a066-07636d894505": {"__data__": {"id_": "16c787d1-e70f-418f-a066-07636d894505", "embedding": null, "metadata": {"window": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "original_text": "A mudaraba is a partnership, contract/agreement between two or more parties. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e3917d84-eb21-4ed3-a124-b81b57e1b2c2", "node_type": "1", "metadata": {"window": "Am I still eligible for opening Roshan Digital Account?, No, a valid passport is required to get the Roshan Digital Account activated., nan\nnan, nan, nan, Can I open more than one account?, Yes, multiple accounts can be opened on a single CNIC/NICOP/POC, however one account request needs to be processed completely and verified before another request can be initiated., nan\nnan, nan, nan, Is there any minimum amount required to open an account?, No minimum amount is required to open a Roshan Digital Account, nan\nnan, nan, nan, What is a Qard based account?, Faysal Islami Current accounts are based on the Islamic concept of Qard. Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. ", "original_text": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "258d8a6d4929a98c725d15d07bc80208e77d15b5430c6639ae8efe89a9642ec6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "79410707-4bb9-4fe3-b43b-b5d422f5356a", "node_type": "1", "metadata": {"window": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "original_text": "One party provides capital and the other party manages it. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4e9ed57aec19eec727edfc04766ef500cc21fe18270001821b0fdd211bca64de", "class_name": "RelatedNodeInfo"}}, "hash": "a16e894e851503bfff5ae9d593bafc5e5db7f0156df164905c452eca6c613d4d", "text": "A mudaraba is a partnership, contract/agreement between two or more parties. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "79410707-4bb9-4fe3-b43b-b5d422f5356a": {"__data__": {"id_": "79410707-4bb9-4fe3-b43b-b5d422f5356a", "embedding": null, "metadata": {"window": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "original_text": "One party provides capital and the other party manages it. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16c787d1-e70f-418f-a066-07636d894505", "node_type": "1", "metadata": {"window": "Qard is a contract where the Bank has to pay back depositor\u2019s money without any deduction on demand. Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "original_text": "A mudaraba is a partnership, contract/agreement between two or more parties. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "a16e894e851503bfff5ae9d593bafc5e5db7f0156df164905c452eca6c613d4d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1d294765-5d66-44bc-a87f-88e86b3660ce", "node_type": "1", "metadata": {"window": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "original_text": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "03f586978cfb9142f2523ab53353b647a622b3c4b4c57e8874594062c4046ec7", "class_name": "RelatedNodeInfo"}}, "hash": "4e9ed57aec19eec727edfc04766ef500cc21fe18270001821b0fdd211bca64de", "text": "One party provides capital and the other party manages it. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1d294765-5d66-44bc-a87f-88e86b3660ce": {"__data__": {"id_": "1d294765-5d66-44bc-a87f-88e86b3660ce", "embedding": null, "metadata": {"window": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "original_text": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "79410707-4bb9-4fe3-b43b-b5d422f5356a", "node_type": "1", "metadata": {"window": "Also, the Bank reserves the right to use this money for investment and other purposes within the boundaries of Shariah. In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "original_text": "One party provides capital and the other party manages it. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4e9ed57aec19eec727edfc04766ef500cc21fe18270001821b0fdd211bca64de", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "724f5ba3-cb28-452e-86f2-095b6d97e3fd", "node_type": "1", "metadata": {"window": "A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "original_text": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f13182c6be6e33c43b16d6a53852d7430350a9811c719f8faa1a00b0d5fe34fa", "class_name": "RelatedNodeInfo"}}, "hash": "03f586978cfb9142f2523ab53353b647a622b3c4b4c57e8874594062c4046ec7", "text": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "724f5ba3-cb28-452e-86f2-095b6d97e3fd": {"__data__": {"id_": "724f5ba3-cb28-452e-86f2-095b6d97e3fd", "embedding": null, "metadata": {"window": "A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "original_text": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1d294765-5d66-44bc-a87f-88e86b3660ce", "node_type": "1", "metadata": {"window": "In Qard-based accounts, the accountholder is not entitled for any gain or loss on the deposit being held with the Bank., nan\nnan, nan, nan, Is the account operated singly or jointly?, The joint account can be operated with the option of Either or Survivor, nan\nnan, nan, nan, What is Mudarabah-based account?, Faysal Islami Saving Accounts are based on the Islamic concept of Mudarabah. A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "original_text": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "03f586978cfb9142f2523ab53353b647a622b3c4b4c57e8874594062c4046ec7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dc89cc24-1635-4a30-be77-34a1af42904c", "node_type": "1", "metadata": {"window": "One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. ", "original_text": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "426b503ababd84614b640d1130b03286b71e6288ac1d5a206c9a5adf116a964b", "class_name": "RelatedNodeInfo"}}, "hash": "f13182c6be6e33c43b16d6a53852d7430350a9811c719f8faa1a00b0d5fe34fa", "text": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dc89cc24-1635-4a30-be77-34a1af42904c": {"__data__": {"id_": "dc89cc24-1635-4a30-be77-34a1af42904c", "embedding": null, "metadata": {"window": "One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. ", "original_text": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "724f5ba3-cb28-452e-86f2-095b6d97e3fd", "node_type": "1", "metadata": {"window": "A mudaraba is a partnership, contract/agreement between two or more parties. One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "original_text": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f13182c6be6e33c43b16d6a53852d7430350a9811c719f8faa1a00b0d5fe34fa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "77bd88a1-2bf2-4ec9-bf59-5ef03214e438", "node_type": "1", "metadata": {"window": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "original_text": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "134fac228cd1c8ed043a91a63136a722c6af5d01856ed44c569fafdde9855ef5", "class_name": "RelatedNodeInfo"}}, "hash": "426b503ababd84614b640d1130b03286b71e6288ac1d5a206c9a5adf116a964b", "text": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "77bd88a1-2bf2-4ec9-bf59-5ef03214e438": {"__data__": {"id_": "77bd88a1-2bf2-4ec9-bf59-5ef03214e438", "embedding": null, "metadata": {"window": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "original_text": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dc89cc24-1635-4a30-be77-34a1af42904c", "node_type": "1", "metadata": {"window": "One party provides capital and the other party manages it. Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. ", "original_text": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "426b503ababd84614b640d1130b03286b71e6288ac1d5a206c9a5adf116a964b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2514b96f-7ceb-4548-b1ca-f2bc400a2407", "node_type": "1", "metadata": {"window": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "original_text": "The profit earned through financings will be shared with accountholder on monthly basis. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "0c6e89f60438a95014a5c22b5d356ef9765a290dcd37221ec6a003a61b8f3236", "class_name": "RelatedNodeInfo"}}, "hash": "134fac228cd1c8ed043a91a63136a722c6af5d01856ed44c569fafdde9855ef5", "text": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2514b96f-7ceb-4548-b1ca-f2bc400a2407": {"__data__": {"id_": "2514b96f-7ceb-4548-b1ca-f2bc400a2407", "embedding": null, "metadata": {"window": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "original_text": "The profit earned through financings will be shared with accountholder on monthly basis. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "77bd88a1-2bf2-4ec9-bf59-5ef03214e438", "node_type": "1", "metadata": {"window": "Accountholder, who deposits funds in a savings account is called Rab-ul Mal, and the Bank that manages the funds is called Mudarib. The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "original_text": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "134fac228cd1c8ed043a91a63136a722c6af5d01856ed44c569fafdde9855ef5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "714013ce-508a-4178-8b28-151587aa02a7", "node_type": "1", "metadata": {"window": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. ", "original_text": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "5953587173f77289858407556f96c593524bf11bab307c90a60d5f84e3a70897", "class_name": "RelatedNodeInfo"}}, "hash": "0c6e89f60438a95014a5c22b5d356ef9765a290dcd37221ec6a003a61b8f3236", "text": "The profit earned through financings will be shared with accountholder on monthly basis. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "714013ce-508a-4178-8b28-151587aa02a7": {"__data__": {"id_": "714013ce-508a-4178-8b28-151587aa02a7", "embedding": null, "metadata": {"window": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. ", "original_text": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2514b96f-7ceb-4548-b1ca-f2bc400a2407", "node_type": "1", "metadata": {"window": "The Mudarib reserves the right to invest funds within the boundaries of Shariah. \n Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "original_text": "The profit earned through financings will be shared with accountholder on monthly basis. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "0c6e89f60438a95014a5c22b5d356ef9765a290dcd37221ec6a003a61b8f3236", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "177dc299-f92e-4a9d-b070-6a0b8a097a5f", "node_type": "1", "metadata": {"window": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "original_text": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d38a4cde2ab752bec3efa84766ab6849cf43a210914a30d04467570ec77f1efe", "class_name": "RelatedNodeInfo"}}, "hash": "5953587173f77289858407556f96c593524bf11bab307c90a60d5f84e3a70897", "text": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "177dc299-f92e-4a9d-b070-6a0b8a097a5f": {"__data__": {"id_": "177dc299-f92e-4a9d-b070-6a0b8a097a5f", "embedding": null, "metadata": {"window": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "original_text": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "714013ce-508a-4178-8b28-151587aa02a7", "node_type": "1", "metadata": {"window": "Mudarib reserves the right to invest the funds in Shariah compliant modes such as Ijarah, Murabaha, Musharakah, etc. The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. ", "original_text": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "5953587173f77289858407556f96c593524bf11bab307c90a60d5f84e3a70897", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c2f8726-de3f-4de1-aaf2-f3f39903a8b1", "node_type": "1", "metadata": {"window": "The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "original_text": "The bank will process repatriation request within 2 working days. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d0baef580ffb344814909965c944aa2f2f304b7683ea5bb7d3d17235b7bcd3bf", "class_name": "RelatedNodeInfo"}}, "hash": "d38a4cde2ab752bec3efa84766ab6849cf43a210914a30d04467570ec77f1efe", "text": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9c2f8726-de3f-4de1-aaf2-f3f39903a8b1": {"__data__": {"id_": "9c2f8726-de3f-4de1-aaf2-f3f39903a8b1", "embedding": null, "metadata": {"window": "The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "original_text": "The bank will process repatriation request within 2 working days. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "177dc299-f92e-4a9d-b070-6a0b8a097a5f", "node_type": "1", "metadata": {"window": "The rate of profit on the funds will be determined through a Shariah approved mechanism for calculation of weightages which will be announced at the beginning of each calendar month and shall be applicable for that month only. The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "original_text": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d38a4cde2ab752bec3efa84766ab6849cf43a210914a30d04467570ec77f1efe", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e70347c1-8d10-4461-85a7-5be699b2f78d", "node_type": "1", "metadata": {"window": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "original_text": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "42b38c3467a081a6bd179fbc543e841f2fed1e0782fbe7c37c047d7d3e3bab59", "class_name": "RelatedNodeInfo"}}, "hash": "d0baef580ffb344814909965c944aa2f2f304b7683ea5bb7d3d17235b7bcd3bf", "text": "The bank will process repatriation request within 2 working days. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e70347c1-8d10-4461-85a7-5be699b2f78d": {"__data__": {"id_": "e70347c1-8d10-4461-85a7-5be699b2f78d", "embedding": null, "metadata": {"window": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "original_text": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9c2f8726-de3f-4de1-aaf2-f3f39903a8b1", "node_type": "1", "metadata": {"window": "The profit earned through financings will be shared with accountholder on monthly basis. Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "original_text": "The bank will process repatriation request within 2 working days. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d0baef580ffb344814909965c944aa2f2f304b7683ea5bb7d3d17235b7bcd3bf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d33a4d4-1ab3-420a-a807-77fbd183e918", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "55f4368d7c138aeef5e7cfc137914234f3fe7c788904173626c930ddbfa83778", "class_name": "RelatedNodeInfo"}}, "hash": "42b38c3467a081a6bd179fbc543e841f2fed1e0782fbe7c37c047d7d3e3bab59", "text": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d33a4d4-1ab3-420a-a807-77fbd183e918": {"__data__": {"id_": "4d33a4d4-1ab3-420a-a807-77fbd183e918", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e70347c1-8d10-4461-85a7-5be699b2f78d", "node_type": "1", "metadata": {"window": "Losses, if any, will be borne by the participants of Mudarabah in proportion to their investments.\n , nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "original_text": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "42b38c3467a081a6bd179fbc543e841f2fed1e0782fbe7c37c047d7d3e3bab59", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "977ac93c-dcd8-4eca-85f8-a2662eb38c6d", "node_type": "1", "metadata": {"window": "The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "original_text": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "44f07763db65b11b3207c32fe5909f38167bf290974456dbc6e75086559fb157", "class_name": "RelatedNodeInfo"}}, "hash": "55f4368d7c138aeef5e7cfc137914234f3fe7c788904173626c930ddbfa83778", "text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "977ac93c-dcd8-4eca-85f8-a2662eb38c6d": {"__data__": {"id_": "977ac93c-dcd8-4eca-85f8-a2662eb38c6d", "embedding": null, "metadata": {"window": "The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "original_text": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d33a4d4-1ab3-420a-a807-77fbd183e918", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, Can the funds be transferred/repatriated abroad?, Yes, funds may be repatriated abroad without any regulatory approval through Faysal Bank Internet and Mobile Banking. The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "original_text": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "55f4368d7c138aeef5e7cfc137914234f3fe7c788904173626c930ddbfa83778", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f0a17810-6bc2-46f9-9a41-cd45146387e8", "node_type": "1", "metadata": {"window": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "original_text": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1a7c778c366fbc7407cd9ed7f019bcde0f722963c7b0b0035fb35680a68cd918", "class_name": "RelatedNodeInfo"}}, "hash": "44f07763db65b11b3207c32fe5909f38167bf290974456dbc6e75086559fb157", "text": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f0a17810-6bc2-46f9-9a41-cd45146387e8": {"__data__": {"id_": "f0a17810-6bc2-46f9-9a41-cd45146387e8", "embedding": null, "metadata": {"window": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "original_text": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "977ac93c-dcd8-4eca-85f8-a2662eb38c6d", "node_type": "1", "metadata": {"window": "The bank will process repatriation request within 2 working days. Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "original_text": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "44f07763db65b11b3207c32fe5909f38167bf290974456dbc6e75086559fb157", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a389b74d-a6d3-4625-a167-9b1c1ed22b3c", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "original_text": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "0a471b8b58f02a3c0ddb8f1d0c51c16c253328d3b83f3143bfdb65bd73b74e58", "class_name": "RelatedNodeInfo"}}, "hash": "1a7c778c366fbc7407cd9ed7f019bcde0f722963c7b0b0035fb35680a68cd918", "text": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a389b74d-a6d3-4625-a167-9b1c1ed22b3c": {"__data__": {"id_": "a389b74d-a6d3-4625-a167-9b1c1ed22b3c", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "original_text": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f0a17810-6bc2-46f9-9a41-cd45146387e8", "node_type": "1", "metadata": {"window": "Please note that funds can only be repatriated into the customer\u2019s own bank account anywhere in the world., nan\nnan, nan, nan, Are there any charges on remitting funds into the Roshan Digital Account?, Faysal Bank does not have any charges on incoming remittance or for repatriation of funds, however, correspondent bank charges may apply., nan\nnan, nan, nan, Are Utility bill payments and other facilities available on this account?, Yes, utility bills and other payment facilities are also available through Mobile Digibank App and Digibank Internet Banking. , nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "original_text": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1a7c778c366fbc7407cd9ed7f019bcde0f722963c7b0b0035fb35680a68cd918", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "409cc92e-464c-4dde-975a-d1215fbd5a5c", "node_type": "1", "metadata": {"window": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "original_text": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9a2a3a55b6b5d1224cc61daacf315bad77e91f4520dd71c96ff698402a2e81ac", "class_name": "RelatedNodeInfo"}}, "hash": "0a471b8b58f02a3c0ddb8f1d0c51c16c253328d3b83f3143bfdb65bd73b74e58", "text": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "409cc92e-464c-4dde-975a-d1215fbd5a5c": {"__data__": {"id_": "409cc92e-464c-4dde-975a-d1215fbd5a5c", "embedding": null, "metadata": {"window": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "original_text": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a389b74d-a6d3-4625-a167-9b1c1ed22b3c", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, Can the funds be transferred to any other local account in Pakistan?, Yes, funds may be transferred to any local account in Pakistan., nan\nnan, nan, nan, Can resident of Pakistan transfer funds into this account?, Customer account can only be funded by foreign inward remittance originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "original_text": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "0a471b8b58f02a3c0ddb8f1d0c51c16c253328d3b83f3143bfdb65bd73b74e58", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "30fdebdf-516d-48ff-86cf-bfaab3c3ae6d", "node_type": "1", "metadata": {"window": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "original_text": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7410558d8572ea510542dcf30c8474c71d5a86a6fc1787baa4c2fc1b70c507f6", "class_name": "RelatedNodeInfo"}}, "hash": "9a2a3a55b6b5d1224cc61daacf315bad77e91f4520dd71c96ff698402a2e81ac", "text": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "30fdebdf-516d-48ff-86cf-bfaab3c3ae6d": {"__data__": {"id_": "30fdebdf-516d-48ff-86cf-bfaab3c3ae6d", "embedding": null, "metadata": {"window": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "original_text": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "409cc92e-464c-4dde-975a-d1215fbd5a5c", "node_type": "1", "metadata": {"window": "No local credits are allowed into the account., nan\nnan, nan, nan, When funds can be deposited in account by customer?, Upon satisfactory completion of the requirements, the account will be opened and Faysal Bank will intimate customer by sending welcome letter/ pack (via email). Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "original_text": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9a2a3a55b6b5d1224cc61daacf315bad77e91f4520dd71c96ff698402a2e81ac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2cd98cee-28f6-4a46-ac1f-119dbfe72253", "node_type": "1", "metadata": {"window": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "original_text": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "06f67df0d5170613aeedd5c2a114d2e9f14f932799699bde88fc5d5f2efe8e3d", "class_name": "RelatedNodeInfo"}}, "hash": "7410558d8572ea510542dcf30c8474c71d5a86a6fc1787baa4c2fc1b70c507f6", "text": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2cd98cee-28f6-4a46-ac1f-119dbfe72253": {"__data__": {"id_": "2cd98cee-28f6-4a46-ac1f-119dbfe72253", "embedding": null, "metadata": {"window": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "original_text": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "30fdebdf-516d-48ff-86cf-bfaab3c3ae6d", "node_type": "1", "metadata": {"window": "Customer can fund the account and make investments or payments after the account has been opened., nan\nnan, nan, nan, What investment opportunities do I have through these accounts digitally?, Customers can invest in;\n\u2022 Islamic Naya Pakistan Certificates (Shariah compliant securities issued by Government of Pakistan) \n\u2022 Shariah compliant stocks through CDC account\n\u2022 Sukuk\n\u2022 Barkat Investment Certificate offered by Faysal Bank Limited\n\u2022 Real estate (DHA and more)\n, nan\nnan, nan, nan, Will the customer be able to invest in Pakistani stocks through Roshan Digital Account?, PKR RDA account holders will be able to invest in Shariah Compliant stocks (KMI All Index) by applying for an account with the CDC through the Faysal BankDigibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, How can the customer invest in stocks through their CDC account?, The customer will have their account opened with the CDC through the Faysal Bank Digibank Portal, which will be funded through their Roshan Digital Account held with Faysal Bank. These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "original_text": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "7410558d8572ea510542dcf30c8474c71d5a86a6fc1787baa4c2fc1b70c507f6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "64cd13c3-afaf-4ce1-8a02-b01610ff8064", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "original_text": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "68cb452f54fe21efbdfdb65550e1773254bddcd4bbda89304d27e13b30bdf0ae", "class_name": "RelatedNodeInfo"}}, "hash": "06f67df0d5170613aeedd5c2a114d2e9f14f932799699bde88fc5d5f2efe8e3d", "text": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "64cd13c3-afaf-4ce1-8a02-b01610ff8064": {"__data__": {"id_": "64cd13c3-afaf-4ce1-8a02-b01610ff8064", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "original_text": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2cd98cee-28f6-4a46-ac1f-119dbfe72253", "node_type": "1", "metadata": {"window": "These funds will be used to purchase Shariah Compliant stocks (KMI All Index) via brokerage house of the customer\u2019s choice., nan\nnan, nan, nan, Will Zakat be deducted on any investments made?, No, there will be no Zakat deduction applicable on RDA customers. , nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "original_text": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "06f67df0d5170613aeedd5c2a114d2e9f14f932799699bde88fc5d5f2efe8e3d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "646a7216-2de6-47cd-9da5-e43fdf153863", "node_type": "1", "metadata": {"window": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "original_text": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f717bc4936799566dbe4761fdebb9ee215af93ffc370437c8e212fae9079191a", "class_name": "RelatedNodeInfo"}}, "hash": "68cb452f54fe21efbdfdb65550e1773254bddcd4bbda89304d27e13b30bdf0ae", "text": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "646a7216-2de6-47cd-9da5-e43fdf153863": {"__data__": {"id_": "646a7216-2de6-47cd-9da5-e43fdf153863", "embedding": null, "metadata": {"window": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "original_text": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "64cd13c3-afaf-4ce1-8a02-b01610ff8064", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What is Islamic Naya Pakistan Certificate?, Islamic Naya Pakistan Certificates are shariah-compliant scripless (non-physical) certificates issued by Govt. of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "original_text": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "68cb452f54fe21efbdfdb65550e1773254bddcd4bbda89304d27e13b30bdf0ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "69c1c1b8-81ad-408d-87ec-18378846ffbd", "node_type": "1", "metadata": {"window": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "original_text": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4e7e807cc483e4704184932a02110a4d6188f5a150cbee7cab32245157464aab", "class_name": "RelatedNodeInfo"}}, "hash": "f717bc4936799566dbe4761fdebb9ee215af93ffc370437c8e212fae9079191a", "text": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "69c1c1b8-81ad-408d-87ec-18378846ffbd": {"__data__": {"id_": "69c1c1b8-81ad-408d-87ec-18378846ffbd", "embedding": null, "metadata": {"window": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "original_text": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "646a7216-2de6-47cd-9da5-e43fdf153863", "node_type": "1", "metadata": {"window": "of Pakistan /SBP for investment through Roshan Digital accounts., nan\nnan, nan, nan, How can I invest in Islamic Naya Pakistan Certificate?, Roshan Digital account holders can invest in the Islamic Naya Pakistan Certificate through the Faysal Bank Digibank portal https://digi.faysalbank.com, nan\nnan, nan, nan, Can only Roshan Digital Accountholders invest in Islamic Naya Pakistan Certificate (INPC)?, Yes, only Roshan Digital accountholders (both NRPs and Residents with wealth declared abroad) will be eligible to invest in Islamic Naya Pakistan Certificates., nan\nnan, nan, nan, Who can invest in PKR and USD Islamic Naya Pakistan Certificates (INPCs)?, PKR Roshan Digital Account holders can invest in PKR INPCs. Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "original_text": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f717bc4936799566dbe4761fdebb9ee215af93ffc370437c8e212fae9079191a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1bdfa5f3-f984-44e4-b8c7-c7629d835d67", "node_type": "1", "metadata": {"window": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "original_text": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "228ec47c4c2f07042dd12e41bb7974cc9e8a6b6e16fc8179d1bc25863dbc76bf", "class_name": "RelatedNodeInfo"}}, "hash": "4e7e807cc483e4704184932a02110a4d6188f5a150cbee7cab32245157464aab", "text": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1bdfa5f3-f984-44e4-b8c7-c7629d835d67": {"__data__": {"id_": "1bdfa5f3-f984-44e4-b8c7-c7629d835d67", "embedding": null, "metadata": {"window": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "original_text": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "69c1c1b8-81ad-408d-87ec-18378846ffbd", "node_type": "1", "metadata": {"window": "Foreign Currency Roshan Digital Account holders can invest in USD INPCs., nan\nnan, nan, nan, Is Premature Encashment allowed on INPC?, Yes, early/premature encashment is allowed. For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "original_text": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "4e7e807cc483e4704184932a02110a4d6188f5a150cbee7cab32245157464aab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4272f78-47c9-4800-b59f-194275c2a3af", "node_type": "1", "metadata": {"window": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "original_text": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "cab604bbebeab4710ba3bc8ecfab395f5075888c4b9a9fc6d19fa26d0336256f", "class_name": "RelatedNodeInfo"}}, "hash": "228ec47c4c2f07042dd12e41bb7974cc9e8a6b6e16fc8179d1bc25863dbc76bf", "text": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4272f78-47c9-4800-b59f-194275c2a3af": {"__data__": {"id_": "b4272f78-47c9-4800-b59f-194275c2a3af", "embedding": null, "metadata": {"window": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "original_text": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1bdfa5f3-f984-44e4-b8c7-c7629d835d67", "node_type": "1", "metadata": {"window": "For the same, profit of broken period will be calculated at the profit rate of the nearest shorter tenor (e.g. 6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "original_text": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "228ec47c4c2f07042dd12e41bb7974cc9e8a6b6e16fc8179d1bc25863dbc76bf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "293da2cb-41b3-4fa9-8298-6229a8d6d9f7", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "original_text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "de6378ba2154426b5129443e54119860c511e50e31681b19a15364023c0ef504", "class_name": "RelatedNodeInfo"}}, "hash": "cab604bbebeab4710ba3bc8ecfab395f5075888c4b9a9fc6d19fa26d0336256f", "text": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "293da2cb-41b3-4fa9-8298-6229a8d6d9f7": {"__data__": {"id_": "293da2cb-41b3-4fa9-8298-6229a8d6d9f7", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "original_text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4272f78-47c9-4800-b59f-194275c2a3af", "node_type": "1", "metadata": {"window": "6 months' certificate encashed in 4th month, profit will be calculated at the profit rate of 3 months' certificate). , nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "original_text": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "cab604bbebeab4710ba3bc8ecfab395f5075888c4b9a9fc6d19fa26d0336256f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d", "node_type": "1", "metadata": {"window": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "original_text": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f4e3e3ab9b0c11ad9be41e753904b302488c01bc6210c9ef61064bb37271d2e9", "class_name": "RelatedNodeInfo"}}, "hash": "de6378ba2154426b5129443e54119860c511e50e31681b19a15364023c0ef504", "text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d": {"__data__": {"id_": "083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d", "embedding": null, "metadata": {"window": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "original_text": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "293da2cb-41b3-4fa9-8298-6229a8d6d9f7", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, What would happen in case of death of an INPC holder?, In case of death of the customer, payment of principal amount and profit will be paid to the legal heirs of the deceased in accordance with a valid succession certificate or equivalent document issued in this regard., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate subject to tax on profit payment?, Yes, the profit of the Certificate will be subject to deduction of 10% (ten percent) Withholding Tax on profit at source, i.e. profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "original_text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "de6378ba2154426b5129443e54119860c511e50e31681b19a15364023c0ef504", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7db7d3dc-5887-4e5d-b914-551d2639a122", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "original_text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "02c565e1118c4c2abafb5173e9b2846ebe61e589485cf668591676d34c591356", "class_name": "RelatedNodeInfo"}}, "hash": "f4e3e3ab9b0c11ad9be41e753904b302488c01bc6210c9ef61064bb37271d2e9", "text": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7db7d3dc-5887-4e5d-b914-551d2639a122": {"__data__": {"id_": "7db7d3dc-5887-4e5d-b914-551d2639a122", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "original_text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d", "node_type": "1", "metadata": {"window": "profit payment will be made net of tax deduction., nan\nnan, nan, nan, Is the Islamic Naya Pakistan Certificate (INPC) subject to Zakat deduction?, The INPC will be exempt from compulsory deduction of Zakat. , nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "original_text": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "f4e3e3ab9b0c11ad9be41e753904b302488c01bc6210c9ef61064bb37271d2e9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4592e907-8966-4da4-b3e1-13dd886fce56", "node_type": "1", "metadata": {"window": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "original_text": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1e0f8283ccb2ec24c92961555ff618286a334f25968af4a161eadea68868e65a", "class_name": "RelatedNodeInfo"}}, "hash": "02c565e1118c4c2abafb5173e9b2846ebe61e589485cf668591676d34c591356", "text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4592e907-8966-4da4-b3e1-13dd886fce56": {"__data__": {"id_": "4592e907-8966-4da4-b3e1-13dd886fce56", "embedding": null, "metadata": {"window": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "original_text": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7db7d3dc-5887-4e5d-b914-551d2639a122", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, How KYC will be done by the Bank?, Relationship Manager will contact customer over email and / or telephone call and KYC will also be done over recorded telephone lines., nan\nnan, nan, nan, What is the turnaround time (TAT) for account opening?, The account will be opened within 48 hours in case of no discrepancies., nan\nnan, nan, nan, Will a cheque book be issued with Roshan Digital Account?, Yes, Cheque book facility can be availed by Roshan Digital Account holders., nan\nnan, nan, nan, Will a debit card be issued against Roshan Digital account?, Yes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "original_text": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "02c565e1118c4c2abafb5173e9b2846ebe61e589485cf668591676d34c591356", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "72aba6b4-1ede-483b-9447-21a27d492e54", "node_type": "1", "metadata": {"window": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "original_text": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "17f09fb6db2b48d59f6ca7e2d838910e6b43cf1d4a7d7936db510ebb850d5540", "class_name": "RelatedNodeInfo"}}, "hash": "1e0f8283ccb2ec24c92961555ff618286a334f25968af4a161eadea68868e65a", "text": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "72aba6b4-1ede-483b-9447-21a27d492e54": {"__data__": {"id_": "72aba6b4-1ede-483b-9447-21a27d492e54", "embedding": null, "metadata": {"window": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "original_text": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4592e907-8966-4da4-b3e1-13dd886fce56", "node_type": "1", "metadata": {"window": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility.\n \u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "original_text": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1e0f8283ccb2ec24c92961555ff618286a334f25968af4a161eadea68868e65a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "93740952-7ce8-43e3-842e-db8c89ff265e", "node_type": "1", "metadata": {"window": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. ", "original_text": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1d29df4d3eba7419337e0302303fd39eae74c4468b8196c522ac53179469241e", "class_name": "RelatedNodeInfo"}}, "hash": "17f09fb6db2b48d59f6ca7e2d838910e6b43cf1d4a7d7936db510ebb850d5540", "text": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "93740952-7ce8-43e3-842e-db8c89ff265e": {"__data__": {"id_": "93740952-7ce8-43e3-842e-db8c89ff265e", "embedding": null, "metadata": {"window": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. ", "original_text": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "72aba6b4-1ede-483b-9447-21a27d492e54", "node_type": "1", "metadata": {"window": "\u2022 Faysal Islami Current Account PKR\n\u2022 Faysal Islami Saving Account PKR\nYes. Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "original_text": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "17f09fb6db2b48d59f6ca7e2d838910e6b43cf1d4a7d7936db510ebb850d5540", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3de60956-2b5d-4b72-9e4f-419786ed6de4", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "8a59f79235882a0fc526b9716e369ae0a9096563fe4f3d8460f80da1593614b6", "class_name": "RelatedNodeInfo"}}, "hash": "1d29df4d3eba7419337e0302303fd39eae74c4468b8196c522ac53179469241e", "text": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3de60956-2b5d-4b72-9e4f-419786ed6de4": {"__data__": {"id_": "3de60956-2b5d-4b72-9e4f-419786ed6de4", "embedding": null, "metadata": {"window": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "93740952-7ce8-43e3-842e-db8c89ff265e", "node_type": "1", "metadata": {"window": "Currently, all PKR Roshan Digital account holders of following accounts can avail this facility: Faysal Islami Current Account PKR & Faysal Islami Saving Account PKR, nan\nnan, nan, nan, Which debit card type/variant can be availed against PKR Roshan Digital account?, Faysal Bank MasterCard Classic can be availed against PKR Roshan Digital account., nan\nnan, nan, nan, Where will the debit card be delivered?, Debit card shall be delivered at the customer\u2019s provided correspondence address. , nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. ", "original_text": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "1d29df4d3eba7419337e0302303fd39eae74c4468b8196c522ac53179469241e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7413076b-ec91-49b9-976d-595bacc50aef", "node_type": "1", "metadata": {"window": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Can I open other account as well?, Yes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "684229718b809525ada561d28c471ec9bf7e6f0ce611ffa101313f4b5577800e", "class_name": "RelatedNodeInfo"}}, "hash": "8a59f79235882a0fc526b9716e369ae0a9096563fe4f3d8460f80da1593614b6", "text": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7413076b-ec91-49b9-976d-595bacc50aef": {"__data__": {"id_": "7413076b-ec91-49b9-976d-595bacc50aef", "embedding": null, "metadata": {"window": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Can I open other account as well?, Yes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3de60956-2b5d-4b72-9e4f-419786ed6de4", "node_type": "1", "metadata": {"window": ", nan\nnan, nan, nan, Can the debit card be used on international Point of Sale (POS) terminals?, Yes, these debit cards are accepted at over millions of POS terminals in more than 200+ countries around the globe. Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "8a59f79235882a0fc526b9716e369ae0a9096563fe4f3d8460f80da1593614b6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9eabe137-3529-4319-93a1-8108b32b96f7", "node_type": "1", "metadata": {"window": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "21029394e3fa0afe8c4f128db85c83ab80a0db6c6f326a62189b7a70128c56c6", "class_name": "RelatedNodeInfo"}}, "hash": "684229718b809525ada561d28c471ec9bf7e6f0ce611ffa101313f4b5577800e", "text": "Can I open other account as well?, Yes. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9eabe137-3529-4319-93a1-8108b32b96f7": {"__data__": {"id_": "9eabe137-3529-4319-93a1-8108b32b96f7", "embedding": null, "metadata": {"window": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7413076b-ec91-49b9-976d-595bacc50aef", "node_type": "1", "metadata": {"window": "Debit Card can be activated through our call center at +92 21 111 11 71 71 before usage., nan\nnan, nan, nan, How long will it take to deliver the debit card?, Delivery of debit cards shall take 15 days on average; however, this may vary subject to the destination country., nan\nnan, nan, nan, Are there any Courier charges for the delivery of cheque book/debit card?, Courier charges as per Bank\u2019s Schedule of Charges, nan\nnan, nan, nan, Can I use the services of a Money Exchange Company to transfer funds into my Roshan Digital Account? , Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Can I open other account as well?, Yes. ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "684229718b809525ada561d28c471ec9bf7e6f0ce611ffa101313f4b5577800e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4a93d207-dd6a-4048-92b1-6476196ba807", "node_type": "1", "metadata": {"window": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3741bdaa11ec4656cd6ebce94e1e597a0b9879a113cebe85f5f6151afef7a32c", "class_name": "RelatedNodeInfo"}}, "hash": "21029394e3fa0afe8c4f128db85c83ab80a0db6c6f326a62189b7a70128c56c6", "text": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4a93d207-dd6a-4048-92b1-6476196ba807": {"__data__": {"id_": "4a93d207-dd6a-4048-92b1-6476196ba807", "embedding": null, "metadata": {"window": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9eabe137-3529-4319-93a1-8108b32b96f7", "node_type": "1", "metadata": {"window": ", Account can only be fed by foreign remittances originating from outside Pakistan through formal banking channels. No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "21029394e3fa0afe8c4f128db85c83ab80a0db6c6f326a62189b7a70128c56c6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f77ebba1-1721-4940-bcb2-f682d8dfab85", "node_type": "1", "metadata": {"window": "Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d590b5de17d133a6229c6070f2c567e5ac23cc52f517549c0dcde699f300a1e8", "class_name": "RelatedNodeInfo"}}, "hash": "3741bdaa11ec4656cd6ebce94e1e597a0b9879a113cebe85f5f6151afef7a32c", "text": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f77ebba1-1721-4940-bcb2-f682d8dfab85": {"__data__": {"id_": "f77ebba1-1721-4940-bcb2-f682d8dfab85", "embedding": null, "metadata": {"window": "Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a93d207-dd6a-4048-92b1-6476196ba807", "node_type": "1", "metadata": {"window": "No local credits are allowed into the account., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Buraq Digital Account, See Faysal Onboarding, nan, nan\nnan, Digital Banking Products, Roshan Apna Ghar, Who can apply for Faysal Roshan Apna Ghar Finance?, Faysal Roshan Apna Ghar is a special product for Faysal Bank\u2019s RDA NRP customers only., nan\nnan, nan, nan, Under which segments the customer can apply?, RDA customer can apply based on: Lien Based & Non lien based, nan\nnan, nan, nan, What pricing does Faysal Roshan Apna Ghar offer?, Following would be the pricing: Variable Rate A. Without lien 1-year KIBOR + 1.5% B. With lien 1-year KIBOR only, nan\nnan, nan, nan, What is KIBOR?, KIBOR is the Karachi Interbank Offered Rate used as a benchmark for price setting., nan\nnan, nan, nan, Which facilities can be applied under Faysal Roshan Apna Ghar?, Customer can apply for following facilities in Lien and Non Lien based offerings:, nan\nnan, nan, nan, nan, Lien/Non Lien Segment, nan\nnan, nan, nan, nan, Home Purchase, nan\nnan, nan, nan, nan, Plot + Construction, nan\nnan, nan, nan, nan, Construction Finance, nan\nnan, nan, nan, nan, Home Renovation, nan\nnan, nan, nan, What are the financing tenure options offered by Faysal Roshan Apna Ghar?, Tenure of the facility is between 3 to 20 years in lien and non-lien based product., nan\nnan, nan, nan, What is the minimum financing amount offered under Faysal Roshan Apna Ghar?, The minimum financing amount is PKR 500,000/- in lien and non-lien based product, nan\nnan, nan, nan, What are the rate options offered by Faysal Roshan Apna Ghar?, The customer can apply on variable rate in lien and non-lien based product., nan\nnan, nan, nan, What is the difference between Fixed and variable rate?, Under variable rates, instalments will be revised annually , nan\nnan, nan, nan, What are the other charges applicable?, Please refer Islamic Banking Schedule of Charges., nan\nnan, nan, nan, Can I repay the facility before the maturity date?, Yes, you can settle your facility before the maturity date, nan\nnan, nan, nan, nan, For first year 1% will be charged upon Early Termination, afterwards NO charges will be levied (in lien and non-lien based product)., nan\nnan, nan, nan, What is the minimum down payment amount required?, For Lien and Non-lien Based product, nan\nnan, nan, nan, nan, Home Purchase/Plot+ Construction/Construction Finance \u2013 Maximum up to 85% of property value, nan\nnan, nan, nan, nan, Home Renovation \u2013 Maximum up to 30% of property value, nan\nnan, nan, nan, Will mortgage/charge be created on Lien Based financing?, For lien based financing, charge creation (equitable or registered) is not required., nan\nnan, nan, nan, Where to contact in case of complaints?, In case of further queries or complaint you can call at our 24 hours\u2019 available call center on 111-06-06-06, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Digital Banking Products, Contact Center, nan, nan, nan\nnan, Digital Banking Products, Raast Payments, What is Raast?, Raast is a payment solution from bank to bank that will enable customers to conduct digital payments among individuals, businesses, and government entities instantaneously via Faysal Digibank., nan\nnan, nan, nan, How can I access to Raast?, You can access to Raast via Faysal Digibank App, Internet Banking and Over the counter through Faysal Bank Branches., nan\nnan, nan, nan, How can I transfer the amount through Raast?, Faysal Digibank customers can send and receive payments/transfers swiftly on the Raast ID which will act as your identifier., nan\nnan, nan, nan, What is Raast ID?, Raast ID is a personalized name for your account to be displayed instead of the account number e.g.Mobile Number, Email Address or CNIC., nan\nnan, nan, nan, How can I make Raast ID?, Login Faysal Digibank App > Go to Raast > Raast Management Tap on \"Register\" > Confirm Generate OTP > Validate, nan\nnan, nan, nan, How can I link my Raast ID?, Login Faysal Digibank App, nan\nnan, nan, nan, nan, Go to Raast > Raast Management Tap on \"Link\" > Confirm, nan\nnan, nan, nan, nan, Generate OTP > Validate, nan\nnan, nan, nan, How can I delink my Raast ID?, Login Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\nLogin Faysal Digibank App\nGo to Raast > Raast Management Tap on \"Delink\" > Confirm Generate OTP > Validate\n, nan\nnan, nan, nan, How much time will be taken to transfer the amount to other account/Raast ID via Raast?, Using Raast all transfers are made instantly., nan\nnan, nan, nan, What is the maximum Funds Transfer limit of RAAST?, Limit per Transaction, PKR 200,000\nnan, nan, nan, nan, Limit per Day Transactions, PKR 250,000\nnan, nan, nan, nan, Limit Transaction count, 100\nnan, nan, nan, Will I be receiving any confirmation on my Payment?, You can save you receipt, and an email confirmation will be sent after a successful payment., nan\nnan, nan, nan, Can I link more than one account with my Raast ID?, No, one account can be linked at a time., nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, Faysal Onboarding, What is Faysal Digital Onboarding?, Faysal Digital onboarding is the first of its kind initiative for resident Pakistan allowing them to open and manage their bank accounts\u00a0digitally., nan\nnan, nan, nan, How can I open an account through Faysal Digital onboarding?, To open FBL Digital Account, please visit our website: www.faysalbank.com ; simply provide the required details and open a digital account securely anytime., nan\nnan, nan, nan, What if I already have an account with FBL? Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "3741bdaa11ec4656cd6ebce94e1e597a0b9879a113cebe85f5f6151afef7a32c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "00a1b3d9-a95c-4503-a484-4121b3286bee", "node_type": "1", "metadata": {"window": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "91342230349dfee0e1537873ff3abf230e82229d02601e9c0a64864f42d881d6", "class_name": "RelatedNodeInfo"}}, "hash": "d590b5de17d133a6229c6070f2c567e5ac23cc52f517549c0dcde699f300a1e8", "text": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "00a1b3d9-a95c-4503-a484-4121b3286bee": {"__data__": {"id_": "00a1b3d9-a95c-4503-a484-4121b3286bee", "embedding": null, "metadata": {"window": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f77ebba1-1721-4940-bcb2-f682d8dfab85", "node_type": "1", "metadata": {"window": "Can I open other account as well?, Yes. You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d590b5de17d133a6229c6070f2c567e5ac23cc52f517549c0dcde699f300a1e8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bf9eabd6-e35a-4dbf-a5ad-2c3610508656", "node_type": "1", "metadata": {"window": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "cfcb882f2dfd4fc31f7878c5ed3b304363dd29ac2bb45024eb28c29e8f87f0bb", "class_name": "RelatedNodeInfo"}}, "hash": "91342230349dfee0e1537873ff3abf230e82229d02601e9c0a64864f42d881d6", "text": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bf9eabd6-e35a-4dbf-a5ad-2c3610508656": {"__data__": {"id_": "bf9eabd6-e35a-4dbf-a5ad-2c3610508656", "embedding": null, "metadata": {"window": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "00a1b3d9-a95c-4503-a484-4121b3286bee", "node_type": "1", "metadata": {"window": "You can open a digital account even if you already maintain an account with FBL., nan\nnan, nan, nan, What currencies are available for this account?, The account can be opened in PKR & USD., nan\nnan, nan, nan, What documents are required to open a digital account via Faysal Digital onboarding?, o\u00a0\u00a0 CNIC/SNIC/NICOP, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Employee Card/Employer certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Last Salary slip/ Salary Certificate (Not Required for Asaan Accounts), nan\nnan, nan, nan, nan, o\u00a0\u00a0 Specimen Digital Signature, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Live Selfie(picture), nan\nnan, nan, nan, How long does it take to open an account?, Account will be opened within 24 hours., nan\nnan, nan, nan, Can I open the joint account through Faysal Digital onboarding?, nan, nan\nnan, nan, nan, How many Account categories are being offered in Digital Account opening?, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 i.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Current Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "91342230349dfee0e1537873ff3abf230e82229d02601e9c0a64864f42d881d6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "28225bcc-12fb-4d78-8636-f61732c31b5f", "node_type": "1", "metadata": {"window": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "original_text": "Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "c95fa521bc414b2ce648496dafb43407932ea805ec9243c553e8afd147f6804f", "class_name": "RelatedNodeInfo"}}, "hash": "cfcb882f2dfd4fc31f7878c5ed3b304363dd29ac2bb45024eb28c29e8f87f0bb", "text": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "28225bcc-12fb-4d78-8636-f61732c31b5f": {"__data__": {"id_": "28225bcc-12fb-4d78-8636-f61732c31b5f", "embedding": null, "metadata": {"window": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "original_text": "Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bf9eabd6-e35a-4dbf-a5ad-2c3610508656", "node_type": "1", "metadata": {"window": "Asaan Digital Savings Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "original_text": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "cfcb882f2dfd4fc31f7878c5ed3b304363dd29ac2bb45024eb28c29e8f87f0bb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4c63c4a5-b606-4b46-969b-655fc2f2065f", "node_type": "1", "metadata": {"window": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": "Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d1303b943ff200acf306cf8af0a405c27b2f2c4361c303fd7d803a79a23ef88f", "class_name": "RelatedNodeInfo"}}, "hash": "c95fa521bc414b2ce648496dafb43407932ea805ec9243c553e8afd147f6804f", "text": "Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4c63c4a5-b606-4b46-969b-655fc2f2065f": {"__data__": {"id_": "4c63c4a5-b606-4b46-969b-655fc2f2065f", "embedding": null, "metadata": {"window": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": "Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "28225bcc-12fb-4d78-8636-f61732c31b5f", "node_type": "1", "metadata": {"window": "Asaan Digital Remittance Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 iv.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "original_text": "Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "c95fa521bc414b2ce648496dafb43407932ea805ec9243c553e8afd147f6804f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6e8dc8b3-c7b4-4824-88ee-d2255f344963", "node_type": "1", "metadata": {"window": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": "Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "2be0179a11f4a6174bc4034eb0af89dc4cbfef59440b84f83d1ce467f7685cc4", "class_name": "RelatedNodeInfo"}}, "hash": "d1303b943ff200acf306cf8af0a405c27b2f2c4361c303fd7d803a79a23ef88f", "text": "Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6e8dc8b3-c7b4-4824-88ee-d2255f344963": {"__data__": {"id_": "6e8dc8b3-c7b4-4824-88ee-d2255f344963", "embedding": null, "metadata": {"window": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": "Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4c63c4a5-b606-4b46-969b-655fc2f2065f", "node_type": "1", "metadata": {"window": "Freelancer Digital Account PKR, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 v.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Freelancer Digital Account USD, nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 vi.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": "Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "d1303b943ff200acf306cf8af0a405c27b2f2c4361c303fd7d803a79a23ef88f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8cd61283-b3a2-4e30-b074-30b96757e3cb", "node_type": "1", "metadata": {"window": "Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": ", o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "8a8bd80cd0c7d50fc0cbdcffa40a2b242081acff6e810a4757cad7edfc2d8892", "class_name": "RelatedNodeInfo"}}, "hash": "2be0179a11f4a6174bc4034eb0af89dc4cbfef59440b84f83d1ce467f7685cc4", "text": "Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8cd61283-b3a2-4e30-b074-30b96757e3cb": {"__data__": {"id_": "8cd61283-b3a2-4e30-b074-30b96757e3cb", "embedding": null, "metadata": {"window": "Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": ", o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "41c05572-7ece-41f1-b893-135259e23d45", "node_type": "4", "metadata": {"file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6e8dc8b3-c7b4-4824-88ee-d2255f344963", "node_type": "1", "metadata": {"window": "Digital Current Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0 vii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Current Account (USD), nan\nnan, nan, nan, nan, viii.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (PKR), nan\nnan, nan, nan, nan, \u00a0\u00a0\u00a0\u00a0 ix.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? , o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "original_text": "Digital Saving Account (USD), nan\nnan, nan, nan, Can I access my Digital account through Faysal Digibank Internet and Mobile Banking?, Yes, you can access and maintain your digital account through Faysal Digibank after registration., nan\nnan, nan, nan, How can I register to Faysal Digibank Internet and Mobile Banking?, You can visit https://digi.faysalbank.com or download our app from Google Play or App Store., nan\nnan, nan, nan, Which type of segment can open an account in Faysal Digital onboarding? ", "file_name": "Digital Banking.csv", "doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "hash": "2be0179a11f4a6174bc4034eb0af89dc4cbfef59440b84f83d1ce467f7685cc4", "class_name": "RelatedNodeInfo"}}, "hash": "8a8bd80cd0c7d50fc0cbdcffa40a2b242081acff6e810a4757cad7edfc2d8892", "text": ", o\u00a0\u00a0 Self Employed/ Salaried Persons , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Unemployed/Non-Salaried Person, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Un-employed Women , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Students , nan\nnan, nan, nan, nan, o\u00a0\u00a0 Retired Persons, nan\nnan, nan, nan, nan, o\u00a0\u00a0 Freelancers , nan\nnan, nan, nan, What is the process after registration and uploading all relevant documents to Faysal Digital onboarding Portal?, After completing the Portal requirements, Customer can connect to Bank\u2019s dedicated RMs for Customer Verification on a Live video call., nan\nnan, nan, nan, How can I know that my account is opened?, You will receive a confirmation mail and a SMS on your registered Email Address and Mobile Number respectively once account is opened., nan\nnan, nan, nan, If I tick the Self declaration for Asaan Digital Account /Asaan Digital Remittance Account/Freelancer Digital Accounts, will I need to submit/upload documents?, No, you shall not be required to upload any documents pertaining self declaration for Assan Digital Account, Asaan Digital Remittance Account, or the Freelancer Digital Accounts, nan\nnan, nan, nan, Can I visit branch for biometric?, Yes, you are required to visit your nearest FBL branch within 60 days to conduct your biometric, once you receive the confirmation message for account opening , nan", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8f6a2f4c-950b-499e-b593-a9b21954e938": {"__data__": {"id_": "8f6a2f4c-950b-499e-b593-a9b21954e938", "embedding": null, "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. ", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19", "node_type": "4", "metadata": {"file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "6a0aa64f8a84f66a8ff96bcd329f3c1a552e15641c5801dbb41d311dc51578e3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "515b26d0-017d-4538-ace9-2a33e1595b19", "node_type": "1", "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. ", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "ed0fa89ad8d89e685e50c2c4b4693998da7df4d348b9c43d63a3f233e9fa67e7", "class_name": "RelatedNodeInfo"}}, "hash": "ab9ac6e6eee59e76a34ef690f3d914c1e2fe7b524898446aef3210113ebdb764", "text": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "515b26d0-017d-4538-ace9-2a33e1595b19": {"__data__": {"id_": "515b26d0-017d-4538-ace9-2a33e1595b19", "embedding": null, "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. ", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19", "node_type": "4", "metadata": {"file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "6a0aa64f8a84f66a8ff96bcd329f3c1a552e15641c5801dbb41d311dc51578e3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8f6a2f4c-950b-499e-b593-a9b21954e938", "node_type": "1", "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. ", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "ab9ac6e6eee59e76a34ef690f3d914c1e2fe7b524898446aef3210113ebdb764", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6df56e9b-de15-4bbd-b39d-42da20d77446", "node_type": "1", "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "- Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "a773b756efa3c86b72428aa19ef3a97d846cf67f7328a3f0362cac438f83ed85", "class_name": "RelatedNodeInfo"}}, "hash": "ed0fa89ad8d89e685e50c2c4b4693998da7df4d348b9c43d63a3f233e9fa67e7", "text": "2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6df56e9b-de15-4bbd-b39d-42da20d77446": {"__data__": {"id_": "6df56e9b-de15-4bbd-b39d-42da20d77446", "embedding": null, "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "- Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19", "node_type": "4", "metadata": {"file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "6a0aa64f8a84f66a8ff96bcd329f3c1a552e15641c5801dbb41d311dc51578e3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "515b26d0-017d-4538-ace9-2a33e1595b19", "node_type": "1", "metadata": {"window": "1, Pie In The Sky, KHI.HYD, Upto 50%, All Noor Cards except velocity (not valid on Debt Card), 50% -(Max discount of Rs. 2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. - Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "original_text": "2,000), 50% - (Max discount of Rs.500), Titanium 30% ((Max discount of Rs.300)- Gold 20% ((Max discount of Rs.200)\n2, BBQ Tonight, KHI.LHR.ISB.RWP, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n3, Xander's, Karachi, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.7,500), 20% - (Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n4, Caf\u00e9 Flo, Karachi, Up to 50%, All Noor & Debit Cards (Except Velocity & Classic), 50% -(Max discount of Rs.10,000), 20% -(Max discount of Rs.2,000), 15% - (Max discount of Rs.1,500)\n5, Cocochan, Karachi, Up to 30%, World Noor - Platinum Noor- Platinum Debit Cards, 30% - (Max discount of Rs.5,000), 20% - (Max discount of Rs.2,000), -\n6, Slice of Life, Karachi, Up to 15%, All Cards, 0.15, 0.15, 0.1\n7, The Patio, Karachi, Up to 20%, All Cards, 20% - (Max discount of Rs.1,500), 20% - (Max discount of Rs.1,500), 15% - (Max discount of Rs.1,000)\n8, Krispy 2 Go, Karachi, 0.4, All Cards, 40% Off on Krunchy Bite Burger, nan, nan\n9, Karamel, Karachi, 0.5, All Cards, 50% Off on Ice Cream scoops, nan, nan\n10, Pizza Point, Karachi, 0.75, All Cards, 75% Off on Pizza Only, nan, nan\n11, M's Eatery, Karachi, 0.2, All Cards, 20% - (Max discount of Rs.2,000), nan, nan\n12, Hongshao, Karachi, 0.15, All Cards, 0.15, nan, nan\n13, Salt n Pepper, LHR.FSD.ISB, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% -(Max discount of Rs.1500)\n14, Arcadian Caf\u00e9, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n15, Junoon, LHR, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n16, Chashni, Nationwide, Up to 30%, All Noor & Debit Cards (Except Velocity & Classic), 30% - (Max discount of Rs.5000), 20% - (Max discount of Rs.2000), 15% - (Max discount of Rs.1500)\n17, Pappasallis, ISB, Up to 20%, All Noor & Debit Cards (Except Velocity & Classic), 0.2, nan, 0.15\n18, Chaaye Khana, ISB, Up to 25%, All Noor & Debit Cards (Except Velocity & Classic), 0.25, 0.25, 0.2\n19, Boutique De Royal, LHR & ISB, Up to 10%, All Cards, 0.1, 0.1, 0.05\n20, Cool N2, Mul, Fsb, Sialkot, Up to 40%, All Cards, 0.4, 40, 30\n21, Arfa Revaj, Gujrat, Up to 15%, All Cards, 0.15, 0.15, 0.1\n22, Workman Furniture , LHR, 0.15, All Cards, 0.15, nan, nan\n23, Vegas.pk, LHR & ISB, 0.1, All Cards, 0.1, nan, nan\n24, H Pharmacy , Nationwide, 0.07, All Cards, 7% - (Max discount of Rs.10,000), nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, 2022, nan, nan, nan, nan, nan, nan\nFBL - INDEPENDENCE DAY - 2023, FBL - INDEPENDENCE DAY - 2022, AL-FALAH - INDEPENDENCE DAY , JS - INDEPENDENCE DAY , MEEZAN -INDEPENDENCE DAY, nan, nan, nan\nProposed - Existing Partners:, Up to 50%, Upto 45%: 10th Aug - 14th Aug 2022, Up to 75%: 10th Aug - 25th Aug 2022, -, nan, nan, nan\nPITS, Okra, Nandos's - 40%, Body Shop - 75%, nan, nan, nan, nan\nBBQ Tonight, Saltage Steakhouse, Bamboo Union , Kababjees - 75%, nan, nan, nan, nan\nXander's , CAF\u00c9 Flo, PC Marriot, PF Changs - 50%, nan, nan, nan, nan\nCaf\u00e9 Flo , PITS, Okra, Esquires - 40%, nan, nan, nan, nan\nColette , PC/MARRIOT, Street 1 , Jade , nan, nan, nan, nan\nMovenpick Ice cream FOC, Sumo Mandarin, Steak By CFU, Bam Buo - 40%, nan, nan, nan, nan\nKaramel FOC, Cosa Nostra, PF Changs, PITS - 40%, nan, nan, nan, nan\nUnited King FOC, Caf\u00e9 Aylanto, Up to 40%:, Aztec - 40%, nan, nan, nan, nan\nSlice of Life FOC, Noi Stir, Hobnob, Chatterbox - 40%, nan, nan, nan, nan\nWalkeaze FOC, Numerous FOC Partners too, Chashni, Street Burger , nan, nan, nan, nan\nSalt n Pepper, nan, Paul, Yellow Taxi - 40%, nan, nan, nan, nan\nArcadian Caf\u00e9, nan, Delfrio, Street 1 Caf\u00e9, nan, nan, nan, nan\nJunoon, nan, PITS, Tuscany , nan, nan, nan, nan\nChashni, nan, Kitchen Cuisine, Kitchen Cuisnie, nan, nan, nan, nan\nPappasallis, nan, nan, The Poet, nan, nan, nan, nan\nChaaye Khana, nan, nan, nan, nan, nan, nan, nan\nTo be On-Boarded: Suggestion, nan, nan, nan, nan, nan, nan, nan\nThe Body Shop - Paid, nan, nan, nan, nan, nan, nan, nan\nJ. ", "file_name": "Format1.csv", "doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "hash": "ed0fa89ad8d89e685e50c2c4b4693998da7df4d348b9c43d63a3f233e9fa67e7", "class_name": "RelatedNodeInfo"}}, "hash": "a773b756efa3c86b72428aa19ef3a97d846cf67f7328a3f0362cac438f83ed85", "text": "- Paid, nan, nan, nan, nan, nan, nan, nan\nNabila's - Paid, nan, nan, nan, nan, nan, nan, nan\nKababjees/Bakers/Express - Sharing, nan, nan, nan, nan, nan, nan, nan\nDunkin Donuts - Sharing, nan, nan, nan, nan, nan, nan, nan\nKitchen Cuisine - Sharing, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan, nan, nan\nnan, Valid from 12th till 14 August 2023, nan, nan, nan, nan, nan, nan\nnan, Discount is applicable on Dine-in (for Restaurants), nan, nan, nan, nan, nan, nan", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9006df30-620e-4f43-92e4-0f5bf11e1d78": {"__data__": {"id_": "9006df30-620e-4f43-92e4-0f5bf11e1d78", "embedding": null, "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. ", "original_text": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0b4415b-08fa-41ec-8cfa-cbce73491806", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "original_text": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "ce5047111cdee79afe5b030e2c1b3f7e9ea96dad650d9d0606f20ab9a24ca270", "class_name": "RelatedNodeInfo"}}, "hash": "a9d9fb7556210884221e771726349028a71c51bf9f6d96b51f2a0da4ee48de64", "text": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a0b4415b-08fa-41ec-8cfa-cbce73491806": {"__data__": {"id_": "a0b4415b-08fa-41ec-8cfa-cbce73491806", "embedding": null, "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "original_text": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9006df30-620e-4f43-92e4-0f5bf11e1d78", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. ", "original_text": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "a9d9fb7556210884221e771726349028a71c51bf9f6d96b51f2a0da4ee48de64", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "original_text": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "1eb161cbbcb7108a3ca6036959c355e76487d522a3b52d2281742767d078633f", "class_name": "RelatedNodeInfo"}}, "hash": "ce5047111cdee79afe5b030e2c1b3f7e9ea96dad650d9d0606f20ab9a24ca270", "text": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed": {"__data__": {"id_": "65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed", "embedding": null, "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "original_text": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a0b4415b-08fa-41ec-8cfa-cbce73491806", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "original_text": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "ce5047111cdee79afe5b030e2c1b3f7e9ea96dad650d9d0606f20ab9a24ca270", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b0fcf8a2-c0e4-4e72-8dbe-5782858352f6", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "original_text": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "3b44ea37e20a2c9210b021f93ef98555b47c5447551be1fab9c04fdfba291351", "class_name": "RelatedNodeInfo"}}, "hash": "1eb161cbbcb7108a3ca6036959c355e76487d522a3b52d2281742767d078633f", "text": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b0fcf8a2-c0e4-4e72-8dbe-5782858352f6": {"__data__": {"id_": "b0fcf8a2-c0e4-4e72-8dbe-5782858352f6", "embedding": null, "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "original_text": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "original_text": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "1eb161cbbcb7108a3ca6036959c355e76487d522a3b52d2281742767d078633f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3da3f87e-c670-44c9-800f-fe5dc2f19cfa", "node_type": "1", "metadata": {"window": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "original_text": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "157412375a789ef0066c581ea659e381c3dc2297182ddc83e8a3930bc08b313c", "class_name": "RelatedNodeInfo"}}, "hash": "3b44ea37e20a2c9210b021f93ef98555b47c5447551be1fab9c04fdfba291351", "text": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3da3f87e-c670-44c9-800f-fe5dc2f19cfa": {"__data__": {"id_": "3da3f87e-c670-44c9-800f-fe5dc2f19cfa", "embedding": null, "metadata": {"window": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "original_text": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b0fcf8a2-c0e4-4e72-8dbe-5782858352f6", "node_type": "1", "metadata": {"window": "1.0, 14th Street Pizza, 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , 20% (Max discount of Rs.2,000) Monday, Tuesday, Wednesday & Thursday , Nationwide, 2023-12-31 00:00:00\n2.0, Alfalah Bakery, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n3.0, Alfalah Food Restaurant, 0.1, 0.1, Gujranwala, 2023-12-31 00:00:00\n4.0, Alforno Restaurant, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n5.0, Amin Hotel Peshawar, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All, \u2022 Super Deluxe Single: 15%\n\u2022 Double Super Deluxe: 15% \n\u2022 Deluxe Three Bed: 15% \n\u2022 Deluxe Master Bed: 15% \n\u2022 VIP Two Bed / Master Rooms: 20%\n\u2022 Executive Two Bed / Master: 20%\n\u2022 Executive Three / Four Bed: 20%\n\u2022 Breakfast Free for All\n, Peshawar, 2023-12-31 00:00:00\n6.0, Angara, 0.2, 0.2, Karachi, 2023-12-31 00:00:00\n7.0, Arcadian Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n8.0, Atrium Lounge, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n9.0, Bakisto Cakes, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n10.0, Bamboo Union, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n11.0, Bar B Q Tonight, 30% discount on World Noor Card (Discount Cap PKR 7,500), 20% discount on Platinum Noor/Debit Card (Discount Cap of 2000 PKR), 15% of Titanium/Gold Noor & Gold Debit Card (Discount Cap 1500 PKR)- - No discount on Noor velocity & Classic Debit Card, KHI/LHR/ISB/RWP, 2023-12-31 00:00:00\n12.0, Belly Deli, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n13.0, Better Bites, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n14.0, Bhot Ala Restaurant, 15% Discount with the Cap of Rs-3000, 15% Discount with the Cap of Rs-3000, Lahore, 2023-12-31 00:00:00\n15.0, Big Bash, 20% off on regular menu, 10% off on regular menu, Karachi, 2023-12-31 00:00:00\n16.0, B.stro by Bakecarry, 0.2, 0.15, Karachi/Lahore, 2024-01-31 00:00:00\n17.0, Blue Ribbon Bakers, 20% discount on Bakery items, 20% discount on Bakery items, Hyderabad, 2024-02-28 00:00:00\n18.0, Boissons Cafe, 0.15, 0.1, Sialkot, 2023-12-31 00:00:00\n19.0, Bozo , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n20.0, Butchers Steakhouse , 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n21.0, Caesar's Pizza, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n22.0, Caf\u00e9 1947, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n23.0, Caf\u00e9 Aylanto, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore- DHA outlet, 2023-12-31 00:00:00\n24.0, Caf\u00e9 Beirut , 15% discount with Rs.3,000/- Discount Capping, 10% discount with Rs.2,000/- Discount Capping, Lahore, 2023-12-31 00:00:00\n25.0, Caf\u00e9 Delice, 0.2, 0.1, Lahore, 2023-12-31 00:00:00\n26.0, Caf\u00e9 Flo, 25% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n27.0, Caf\u00e9 Mezbaan, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n28.0, Cake Company (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n29.0, Cake Feasta, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n30.0, Chaaye Khana , 0.25, 0.15, F6, Islamabad, 2023-12-31 00:00:00\n31.0, Chashni, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR1,500/-) -No discount on Noor velocity & Classic Debit Card , Nationwide, 2023-12-31 00:00:00\n32.0, China Town, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n33.0, Chop Soy, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n34.0, Coco Chan, 30% on World Noor Card (Max. Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "original_text": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "3b44ea37e20a2c9210b021f93ef98555b47c5447551be1fab9c04fdfba291351", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "386766c4-8654-41af-954d-7e93a2167f70", "node_type": "1", "metadata": {"window": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "original_text": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "65acb73cf7425566e9b3d88d4fe9ac23eff09b53293265ded79a7711623242a0", "class_name": "RelatedNodeInfo"}}, "hash": "157412375a789ef0066c581ea659e381c3dc2297182ddc83e8a3930bc08b313c", "text": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "386766c4-8654-41af-954d-7e93a2167f70": {"__data__": {"id_": "386766c4-8654-41af-954d-7e93a2167f70", "embedding": null, "metadata": {"window": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "original_text": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3da3f87e-c670-44c9-800f-fe5dc2f19cfa", "node_type": "1", "metadata": {"window": "Discount up to PKR 5,000)\u00a0 & 20% on Platinum Noor/Debit Card (Max discount up to PKR. 2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "original_text": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "157412375a789ef0066c581ea659e381c3dc2297182ddc83e8a3930bc08b313c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d39ed896-48a3-4bd6-bf9a-39c4d50de442", "node_type": "1", "metadata": {"window": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "original_text": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "62efa22102ca373b929039540a5bbd0db085b17274d6a037da8644b18be3af44", "class_name": "RelatedNodeInfo"}}, "hash": "65acb73cf7425566e9b3d88d4fe9ac23eff09b53293265ded79a7711623242a0", "text": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d39ed896-48a3-4bd6-bf9a-39c4d50de442": {"__data__": {"id_": "d39ed896-48a3-4bd6-bf9a-39c4d50de442", "embedding": null, "metadata": {"window": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "original_text": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "386766c4-8654-41af-954d-7e93a2167f70", "node_type": "1", "metadata": {"window": "2,000), No discount, Karachi, 2023-12-31 00:00:00\n35.0, Coffee Planet, 0.2, 0.15, Lahore, DHA Phase 6, 2023-12-31 00:00:00\n36.0, Coffee Planet (The Grand Atrium Mall), 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n37.0, Coffee tea and Company, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n38.0, Colette, 30% discount on World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500) - No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n39.0, COOL N2, 0.4, 0.3, Multan, Faisalabad, Sialkot and Rahim Yar khan, 2023-12-31 00:00:00\n40.0, Craving Killer, 20% off on entire menu, 20% off on entire menu, Karachi, 2023-12-31 00:00:00\n41.0, Crunch Pizza , 15% On regular Menu, 15% On regular Menu, Sahiwal, 2023-12-31 00:00:00\n42.0, Cubes Pizza, 40% off on standard menu, 40% off on standard menu, Karachi, 2023-12-31 00:00:00\n43.0, DeeHut Pizza, 0.2, 0.1, Faisalabad, 2023-12-31 00:00:00\n44.0, d\u00e9j\u00e0 vu Caf\u00e9 & Grill, 15% off on standard menu, 15% off on standard menu for Gold only, Karachi , 2023-12-31 00:00:00\n45.0, Deja Vu Rooftop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n46.0, Des Pardes, 0.1, 0.1, Islamabad, 2023-12-31 00:00:00\n47.0, Desi Bar Restaurant, 20% discount on entire menu except beverages, 20% discount on entire menu except beverages, Karachi , 2024-01-31 00:00:00\n48.0, Dock\u00a0 27, 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n49.0, Dolphin Bakers, 0.1, 0.1, Larkana/Sukkur, 2024-04-30 00:00:00\n50.0, Domino's Pizza, 20% off on standard Menu, 20% off on standard Menu, Nationwide, 2023-12-31 00:00:00\n51.0, English Tea House, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Nationwide, 2023-12-31 00:00:00\n52.0, Evergreen, 30% off on world Card only (Max.discount of 7,500), No discount, Karachi, 2023-11-30 00:00:00\n53.0, Firefly, 0.15, 0.1, Karachi, 2023-09-30 00:00:00\n54.0, FLOC, 10% Discount, 10% Discount, Karachi, 31st May 2024\n55.0, Freddy's caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n56.0, Fri Chicks, 0.15, 0.1, Faisalabad, 2023-12-31 00:00:00\n57.0, Gloria Jeans Gulberg Galleria, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n58.0, Gloria Jeans Lalik Chowk DHA, 0.2, 0.15, Lahore, 2023-12-31 00:00:00\n59.0, Gloria Packages Mall, 30% Discount to World & platinum FBL card holders, 20% Discount to Titanium & Gold Card Holders., Lahore, 2023-12-31 00:00:00\n60.0, Gloria XX Sector DHA, 0.3, 0.2, Lahore, 2023-12-31 00:00:00\n61.0, Gloria Jeans , 0.15, 0.1, Multan, 2023-12-31 00:00:00\n62.0, Grand Grill, 0.15, 0.15, Multan, 2023-12-31 00:00:00\n63.0, Heavy Muamlat cafe, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n64.0, Hongshao, 15% Discount, 15% Discount, Karachi, 2023-12-31 00:00:00\n65.0, HotPot Tonight, 10% off on entire menu, 10% off on entire menu, Karachi, 2024-02-28 00:00:00\n66.0, Hyderabad Darbar, 15% off on entire menu, 15% off on entire menu, Hyderabad, 2023-12-31 00:00:00\n67.0, Ideal Sweets & Bakers, 10% Discount (Sweets only), 10% Discount (Sweets only), Multan, 2023-12-31 00:00:00\n68.0, Jackson Caf\u00e9, 15% off on standard menu, 15% off on standard menu, Karachi , 2023-12-31 00:00:00\n69.0, Jade Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) No discount on Noor velocity & Classic Debit Card, Lahore- DHA & Gulberg branch only, 2023-12-31 00:00:00\n70.0, Jashan (Bahria Town), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), 50% off on Tuesdays (Max discount of Rs.5,000) & Rest of the week 20% off (Max discount of Rs.3,000), Karachi, 2023-08-31 00:00:00\n71.0, Juices Island , 0.15, 0.15, Karachi , 2023-12-31 00:00:00\n72.0, Junoon Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n73.0, Kababish Continental Restaurant, 0.15, 0.1, Bahawalpur, 2023-12-31 00:00:00\n74.0, koffee Net, 0.15, 0.15, Islamabad, 2023-12-31 00:00:00\n75.0, Krispy2Go, (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), (Buy 1 Krispy Deluxe Burger & Get 1 free) + (Buy 2 Wrap star & Get 1 Free), Karachi, 2024-02-28 00:00:00\n76.0, Le Caf\u00e9 Patisserie, 0.15, 0.1, Multan, 2023-12-31 00:00:00\n77.0, Le grand , 30% on Regular Room Rate, 20% On Food Items, Malam jaba, Swat , KaLam,, 2023-12-31 00:00:00\n78.0, Le Serre Restaurant, 0.15, 0.1, BahawalPur, 2023-12-31 00:00:00\n79.0, Legends Hotels & Resorts, 50% off on dinner buffet, 50% off on dinner buffet, Islamabad, 2023-12-31 00:00:00\n80.0, Lord of Food, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n81.0, Mandarin, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore-Islamabad, 2023-12-31 00:00:00\n82.0, Matam Shinwari, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, 40% discount on entire Menu (Mondays), 20% discount on entire menu everyday Discount cap: 8000 PKR, Hyderabad, 2024-02-28 00:00:00\n83.0, Maxims Restaurant, 15% discount on standard menu, 15% discount on standard menu, Karachi , 2023-12-31 00:00:00\n84.0, Miraal, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "original_text": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "65acb73cf7425566e9b3d88d4fe9ac23eff09b53293265ded79a7711623242a0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f7867c13-c2ac-42ea-a00e-590713751cd0", "node_type": "1", "metadata": {"window": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. ", "original_text": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "864b214d01effb8fbbe0e0f5f46210d41d9b30746600b1381aed32ed1b08cfcc", "class_name": "RelatedNodeInfo"}}, "hash": "62efa22102ca373b929039540a5bbd0db085b17274d6a037da8644b18be3af44", "text": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f7867c13-c2ac-42ea-a00e-590713751cd0": {"__data__": {"id_": "f7867c13-c2ac-42ea-a00e-590713751cd0", "embedding": null, "metadata": {"window": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. ", "original_text": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d39ed896-48a3-4bd6-bf9a-39c4d50de442", "node_type": "1", "metadata": {"window": "20% discount on Lunch, 10% off on breakfast, 15% discount on Dinner. 20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "original_text": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "62efa22102ca373b929039540a5bbd0db085b17274d6a037da8644b18be3af44", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a025dd2a-dacc-42ea-826e-de0c9b49bf18", "node_type": "1", "metadata": {"window": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "original_text": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "ef3bf0e274d4dc41709e07d9d9977896daccee2ef25d4a0e0e3389cd10f75938", "class_name": "RelatedNodeInfo"}}, "hash": "864b214d01effb8fbbe0e0f5f46210d41d9b30746600b1381aed32ed1b08cfcc", "text": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a025dd2a-dacc-42ea-826e-de0c9b49bf18": {"__data__": {"id_": "a025dd2a-dacc-42ea-826e-de0c9b49bf18", "embedding": null, "metadata": {"window": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "original_text": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f7867c13-c2ac-42ea-a00e-590713751cd0", "node_type": "1", "metadata": {"window": "20% discount on Lunch, Karachi , 2023-12-31 00:00:00\n85.0, Mirchi360, 15% discount on entire menu items, 15% discount on entire menu items, Hyderabad, 2024-02-28 00:00:00\n86.0, Mouthful Restaurant, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n87.0, Move n Pick Ice Cream, 0.2, 20% On Platinum Debit, Karachi, 2023-12-31 00:00:00\n88.0, Mr.COD, 0.15, 0.15, Nationwide, 2023-12-31 00:00:00\n89.0, M\u2019s Eatery, 20% Discount \u2013 Discount Cap 2000 Rs, 20% Discount \u2013 Discount Cap 2000 Rs, Karachi, 2024-02-29 00:00:00\n90.0, Multan Cuisine, 0.2, 0.15, Multan, 2023-12-31 00:00:00\n91.0, Nando's*, 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. ", "original_text": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "864b214d01effb8fbbe0e0f5f46210d41d9b30746600b1381aed32ed1b08cfcc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "70f84f63-3ea0-4143-86c1-2a8c5bba9a73", "node_type": "1", "metadata": {"window": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "original_text": "Spend of up to PKR 10,000), 15% (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "9fe08c53127c219f2e55808b9e0cd709ec7d4edfcdb65deab5b9b6b255dbbb08", "class_name": "RelatedNodeInfo"}}, "hash": "ef3bf0e274d4dc41709e07d9d9977896daccee2ef25d4a0e0e3389cd10f75938", "text": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70f84f63-3ea0-4143-86c1-2a8c5bba9a73": {"__data__": {"id_": "70f84f63-3ea0-4143-86c1-2a8c5bba9a73", "embedding": null, "metadata": {"window": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "original_text": "Spend of up to PKR 10,000), 15% (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a025dd2a-dacc-42ea-826e-de0c9b49bf18", "node_type": "1", "metadata": {"window": "2500/- or more on either Dine in or Take away on any one occasion- (* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice), 1 Complimentary Starter* or Dessert* on one transaction of Rs. 2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "original_text": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "ef3bf0e274d4dc41709e07d9d9977896daccee2ef25d4a0e0e3389cd10f75938", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77", "node_type": "1", "metadata": {"window": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "original_text": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "c746c13e78221c089f158f67b8148ce0fe86caa0fe1b60dcaaf289cc49334c3d", "class_name": "RelatedNodeInfo"}}, "hash": "9fe08c53127c219f2e55808b9e0cd709ec7d4edfcdb65deab5b9b6b255dbbb08", "text": "Spend of up to PKR 10,000), 15% (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77": {"__data__": {"id_": "9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77", "embedding": null, "metadata": {"window": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "original_text": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "70f84f63-3ea0-4143-86c1-2a8c5bba9a73", "node_type": "1", "metadata": {"window": "2500/- or more on either Dine in or Take away on any one occasion -(* Enjoy all Starters (with the exception of Platters) & dessert includes Chocolate, Cheese and Coffee cake slice)- (Offer is not applicable on Noor velocity & Classic Debit Card), Karachi, 2023-12-31 00:00:00\n92.0, Nehari Inn, 0.1, 0.1, Karachi , 2023-12-31 00:00:00\n93.0, New Al Farid Bakery, 0.15, 0.1, Sahiwal, 2023-12-31 00:00:00\n94.0, New York pizza, 20% off on standard Menu, 20% off on standard Menu, Karachi, 2023-12-31 00:00:00\n95.0, Nine Tree Hotel, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, \u2022 The Pavillon & ll Ponte (On A la Carte Only) 15%\n\u2022 Gym 15%\n\u2022 Room Service 15%\n\u2022 Room Rack Rate 45%\n\u2022 Lounge 9 / bakery Items 15%\n\u2022 Laundry 15%\n\u2022 Business Center 15%\n\u2022 Hall Rental 45%\n\u2022 Rent a Car 15%\n\u2022 The Bliss Salon & Spa 15%\n, Lahore, 2023-12-31 00:00:00\n96.0, OBAN HOTEL , 0.15, 0.15, Lahore, 2024-04-30 00:00:00\n97.0, OKRA, 30% discount on World Noor cards (Max. Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "original_text": "Spend of up to PKR 10,000), 15% (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "9fe08c53127c219f2e55808b9e0cd709ec7d4edfcdb65deab5b9b6b255dbbb08", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a2ba7158-23a5-44ea-aaf6-ce6347b3570f", "node_type": "1", "metadata": {"window": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "original_text": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "eb6ec0ef34f339188bcdea0f39f98ec4b752403ac73574a295fc3c5f14c5661d", "class_name": "RelatedNodeInfo"}}, "hash": "c746c13e78221c089f158f67b8148ce0fe86caa0fe1b60dcaaf289cc49334c3d", "text": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a2ba7158-23a5-44ea-aaf6-ce6347b3570f": {"__data__": {"id_": "a2ba7158-23a5-44ea-aaf6-ce6347b3570f", "embedding": null, "metadata": {"window": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "original_text": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77", "node_type": "1", "metadata": {"window": "Spend of up to PKR 30,000) 20% on Platinum Noor/Debit Card(Max. Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "original_text": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "c746c13e78221c089f158f67b8148ce0fe86caa0fe1b60dcaaf289cc49334c3d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0a0f1352-52c8-4923-b246-808106ab1e3c", "node_type": "1", "metadata": {"window": "Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. ", "original_text": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "2841528cb9e228168f0dd34b32cd86eec1c470bf41da37a9ec04d38ad40b59c6", "class_name": "RelatedNodeInfo"}}, "hash": "eb6ec0ef34f339188bcdea0f39f98ec4b752403ac73574a295fc3c5f14c5661d", "text": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0a0f1352-52c8-4923-b246-808106ab1e3c": {"__data__": {"id_": "0a0f1352-52c8-4923-b246-808106ab1e3c", "embedding": null, "metadata": {"window": "Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. ", "original_text": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a2ba7158-23a5-44ea-aaf6-ce6347b3570f", "node_type": "1", "metadata": {"window": "Spend of up to PKR 20,000) , No discount, Karachi, 2023-12-31 00:00:00\n98.0, Omeat.pk, 10% discount for minimum order of 10 kg (Discount Cap 1000 PKR), 5% discount for minimum order of 10 kg (Discount Cap 500 PKR), Karachi , 2023-12-31 00:00:00\n99.0, OMID Traders, 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), 10% discount on minimum order of 6,000 PKR (Discount Cap 500 PKR), & 10% discount on on minimum order of 10,000 PKR (Discount Cap 1000 PKR), Karachi , 2023-12-31 00:00:00\n100.0, Oregano Pizza, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n101.0, Pappasallis, 0.2, 0.15, Islamabad, 2023-12-31 00:00:00\n102.0, Park Lane Hotel, Upto 40%, Upto 40%, Lahore, 2023-12-31 00:00:00\n103.0, Pastry Shop, 0.2, 0.2, Lahore, 2023-12-31 00:00:00\n104.0, PF Changs, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Karachi/ Islamabad, 2023-12-31 00:00:00\n105.0, Pizza Max, 40% on standard menu, 40% on standard menu, Nationwide, 2023-12-31 00:00:00\n106.0, Pizza Point, 40% & Buy 1 Get 1 on Weekend , 40% & Buy 1 Get 1 on Weekend , Karachi, 2023-12-31 00:00:00\n107.0, Pranzo, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n108.0, Ramada By Wyndham, 15% on Room Rack Rate & F&B Outlets, 15% on Room Rack Rate & F&B Outlets, Murree Lower Topa, 2024-04-30 00:00:00\n109.0, Regent Plaza, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, \u2022 50% discount on Standard Room charges\n\u2022 20% discount on restaurants, laundry, room service & health club\n, Karachi, 2024-03-31 00:00:00\n110.0, Roof Top, 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), 15% discount on minimum bill of 5,000 PKR (Valid from Monday to Thursday), Hyderabad, 2024-02-28 00:00:00\n111.0, Royal JasmineCuisine, 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n112.0, Royal Rich Bakery , 0.15, 0.15, Karachi, 2023-12-31 00:00:00\n113.0, Rumba, 0.25, 0.15, Islamabad, 2023-12-31 00:00:00\n114.0, Sacha's CAKE, 0.2, Upto 15%, Karachi, 2023-12-31 00:00:00\n115.0, Salt'n Pepper, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n116.0, Salt'n Pepper -Village, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) -No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n117.0, Salty by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Karachi , 2023-12-31 00:00:00\n118.0, Sambo, 0.25, 0.15, Lahore, 2023-12-31 00:00:00\n119.0, Sandwich Up, Noor World & Noor Platinum 20% \nConventional World 20% & Conventional Platinum 15% \nDebit Platinum 10%, 20% Noor Titanium, Noor Gold 15%, Noor Velocity 10%\n15% Conventional Titanium, Conventional Gold 10% & Conventional Velocity 10%\nDebit Gold & Velocity 10%\n, Multan, 2023-12-31 00:00:00\n120.0, Sarpino's Pizzeria, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n121.0, Shangrila Hotels & sort, 30% on Regular Room Rate, 20% On Food Items, Murree, 2023-12-31 00:00:00\n122.0, Shelton Rezidor Peshawar, 20% On Room Rate, 15% On Zanzibar Restaurant, 20% On Room Rate, 15% On Zanzibar Restaurant, Peshawar, 2023-12-31 00:00:00\n123.0, Sheraton, Upto 50%, Upto 50%, Lahore, 2023-12-31 00:00:00\n124.0, Sizzlerz Caf\u00e9 & Grill, 0.2, 0.15, Karachi, 2023-12-31 00:00:00\n125.0, Skylight by Roomy, 10% discount on standard restaurant menu and selected buffet., 10% discount on standard restaurant menu and selected buffet., Islamabad, 2023-12-31 00:00:00\n126.0, Soghat-e-Shireen, 8% discount on entire menu, 8% discount on entire menu, Hyderabad, 2023-12-31 00:00:00\n127.0, Spice Bazar, 30% discount on World Card (Max discount upto PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore, 2023-12-31 00:00:00\n128.0, Steamin Coffees, 0.25, 0.15, Karachi, 2024-02-20 00:00:00\n129.0, Street 1 Caf\u00e9, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Islamabad, 2023-12-31 00:00:00\n130.0, Sumo, 30% discount on World Card (Max discount PKR 7,500), 20% discount on Platinum cards (Max discount PKR 2,000), No discount, Lahore - Islamabad, 2023-12-31 00:00:00\n131.0, Swad Restaurant, 0.15, 0.1, Gujrat, 2023-12-31 00:00:00\n132.0, Swiss International Hotel, 40% Room Rack Rate, 40% Room Rack Rate, Lahore, 2023-12-31 00:00:00\n133.0, Tasty Restaurant \u00a0, 0.2, 0.2, Multan, 2023-12-31 00:00:00\n134.0, The Brasserie, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), 15% (Max discount up to PKR 1,500) - No discount on Noor velocity & Classic Debit Card, Lahore, 2023-12-31 00:00:00\n135.0, The Burning Grill, 0.1, 0.1, Karachi, 2023-12-31 00:00:00\n136.0, The China Kitchen, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n137.0, The Forest, 25% (Max Discount of Rs.5000), 25% (Max Discount of Rs.3000), Karachi, 2023-12-31 00:00:00\n138.0, The Garden Spice , 0.15, 0.15, Lahore, 2023-12-31 00:00:00\n139.0, The Ivy Courtyard Caf\u00e9, 0.15, 0.1, Islamabad, 2023-12-31 00:00:00\n140.0, The Lounge & Attraction, 0.1, 0.1, Faisalabad, 2023-12-31 00:00:00\n141.0, The Melting Swan, 0.2, 0.15, Faisalabad, 2023-12-31 00:00:00\n142.0, The Patio, 20% (Max. Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "original_text": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "eb6ec0ef34f339188bcdea0f39f98ec4b752403ac73574a295fc3c5f14c5661d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5cc3c626-e526-4278-8966-67871da58de1", "node_type": "1", "metadata": {"window": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "original_text": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "8cbeef5fa04a0a10cbdfad89cf03166a06a141e28a3a2769930ebd79481a1d3d", "class_name": "RelatedNodeInfo"}}, "hash": "2841528cb9e228168f0dd34b32cd86eec1c470bf41da37a9ec04d38ad40b59c6", "text": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5cc3c626-e526-4278-8966-67871da58de1": {"__data__": {"id_": "5cc3c626-e526-4278-8966-67871da58de1", "embedding": null, "metadata": {"window": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "original_text": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0a0f1352-52c8-4923-b246-808106ab1e3c", "node_type": "1", "metadata": {"window": "Spend of up to PKR 10,000), 15% (Max. Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. ", "original_text": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "2841528cb9e228168f0dd34b32cd86eec1c470bf41da37a9ec04d38ad40b59c6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "79cbad7f-ddf4-400b-98b9-1a43457b9305", "node_type": "1", "metadata": {"window": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "original_text": "Discount of Rs.1500), 15% Discount (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "d66ef3fa34881b95a884b99b246aa239b628e19dcecf4895e2102dc6982e5f50", "class_name": "RelatedNodeInfo"}}, "hash": "8cbeef5fa04a0a10cbdfad89cf03166a06a141e28a3a2769930ebd79481a1d3d", "text": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "79cbad7f-ddf4-400b-98b9-1a43457b9305": {"__data__": {"id_": "79cbad7f-ddf4-400b-98b9-1a43457b9305", "embedding": null, "metadata": {"window": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "original_text": "Discount of Rs.1500), 15% Discount (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5cc3c626-e526-4278-8966-67871da58de1", "node_type": "1", "metadata": {"window": "Spend of up to PKR 10,000), Karachi, 2023-12-31 00:00:00\n143.0, Tokyo Sushi Station, 20% Off on World and Platinum Cards (Max. Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "original_text": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "8cbeef5fa04a0a10cbdfad89cf03166a06a141e28a3a2769930ebd79481a1d3d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6f3c2e7c-a885-40f5-87a7-9510dbdab4a7", "node_type": "1", "metadata": {"window": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "7a08d1e083c8645bf0e452cb4c648bbe414a82c79dd3638c464d8f687992da33", "class_name": "RelatedNodeInfo"}}, "hash": "d66ef3fa34881b95a884b99b246aa239b628e19dcecf4895e2102dc6982e5f50", "text": "Discount of Rs.1500), 15% Discount (Max. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6f3c2e7c-a885-40f5-87a7-9510dbdab4a7": {"__data__": {"id_": "6f3c2e7c-a885-40f5-87a7-9510dbdab4a7", "embedding": null, "metadata": {"window": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "79cbad7f-ddf4-400b-98b9-1a43457b9305", "node_type": "1", "metadata": {"window": "Discount of Rs.3000), 10% Off on Titanium & Gold Cards (Max. Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "original_text": "Discount of Rs.1500), 15% Discount (Max. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "d66ef3fa34881b95a884b99b246aa239b628e19dcecf4895e2102dc6982e5f50", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4002194f-58eb-4396-94da-c2989c57c87c", "node_type": "1", "metadata": {"window": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "0e28d4629752b02961a40967eb584c81ca8a69e558fc2f31ffee70538e31fdd1", "class_name": "RelatedNodeInfo"}}, "hash": "7a08d1e083c8645bf0e452cb4c648bbe414a82c79dd3638c464d8f687992da33", "text": "Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4002194f-58eb-4396-94da-c2989c57c87c": {"__data__": {"id_": "4002194f-58eb-4396-94da-c2989c57c87c", "embedding": null, "metadata": {"window": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f3c2e7c-a885-40f5-87a7-9510dbdab4a7", "node_type": "1", "metadata": {"window": "Discount of Rs.3000)- (No discount on Velocity & Classic Card), Karachi, 2024-02-28 00:00:00\n144.0, Torta's , 0.15, 0.1, Lahore, 2023-12-31 00:00:00\n145.0, Tuscany Courtyard, 30% discount on World Card (Max discount upto PKR 5,000), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, Lahore/ Islamabad, 2023-12-31 00:00:00\n146.0, Wayback Burgers, 0.1, 0.1, Lahore, 2023-12-31 00:00:00\n147.0, Whoops, 0.15, 0.1, Gujranwala, 2023-12-31 00:00:00\n148.0, Wing Ting, 0.2, 0.1, Karachi , 2023-12-31 00:00:00\n149.0, Xander's, 30% discount World Noor Card (Max.discount of 7,500), 20% discount on Platinum Noor/Debit Cards (Max.discount of 2,000), 15% discount on Titanium Noor & Gold Noor/Debit Cards (Max.discount of 1,500)- No discount on Noor velocity & Classic Debit Card, Karachi, 2023-12-31 00:00:00\n150.0, Yum, 30% discount on World Card (Max discount up to PKR 7,500), 20% discount on Platinum cards (Max discount upto PKR 2,000), No discount, LHR/ISB/MULTAN, 2023-12-31 00:00:00\n151.0, Zaytoon Garden Restaurant, 10% On all Cards only Multan Branchz , 10% On all Cards only Multan Branch, Multan, 2023-12-31 00:00:00\n152.0, 8oz Burgers, 20% off on Noor World Card (Max. Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "7a08d1e083c8645bf0e452cb4c648bbe414a82c79dd3638c464d8f687992da33", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6be42a29-eb9a-416a-96e6-6ed7a73abe67", "node_type": "1", "metadata": {"window": "Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "ec45724043268ef7bb5343130071453383b53ab746bd10f9f2ac325c9db04c21", "class_name": "RelatedNodeInfo"}}, "hash": "0e28d4629752b02961a40967eb584c81ca8a69e558fc2f31ffee70538e31fdd1", "text": "20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6be42a29-eb9a-416a-96e6-6ed7a73abe67": {"__data__": {"id_": "6be42a29-eb9a-416a-96e6-6ed7a73abe67", "embedding": null, "metadata": {"window": "Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "c1f43592-4f72-4854-aa31-285488c07f40", "node_type": "4", "metadata": {"file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4002194f-58eb-4396-94da-c2989c57c87c", "node_type": "1", "metadata": {"window": "Discount of Rs.2000),15% off on Noor Platinum & Priority Platinum Debit Card (Max. Discount of Rs.1500), 15% Discount (Max. Discount of Rs.1500) For Titanium only- (No discount on Gold, Velocity & Classic Card), Karachi, 2023-08-31 00:00:00\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n153.0, Pearl Continental & Marriott Restaurants, 0.45, No discount, Nationwide, 2023-12-31 00:00:00\n1.0, Caf\u00e9 Latte, 45% for World Noor Card & Platinum Debit Card - World card can avail discount on spend of up to PKR 30,000 /- & Platinum Debit Card can avail discount on spend up to PKR 20,000/- , No discount, nan, nan\n2.0, Sakura, nan, nan, nan, nan\n3.0, Tai-Pan, nan, nan, nan, nan\n4.0, Nami Zumi, nan, nan, nan, nan\n5.0, Jason Steak House, nan, nan, nan, nan\n6.0, Royal Elephant, nan, nan, nan, nan\n7.0, Marco Polo, nan, nan, nan, nan\n8.0, Nadia, nan, nan, nan, nan\n9.0, Chandni, nan, nan, nan, nan\n10.0, Dumpukht, nan, nan, nan, nan\n11.0, Dynasty, nan, nan, nan, nan\n12.0, Bukhara, nan, nan, nan, nan\n13.0, Terrace Caf\u00e9, nan, nan, nan, nan\n14.0, Lobby Lounge, nan, nan, nan, nan\n15.0, Zigolini's, nan, nan, nan, nan\n16.0, Grapevine Caf\u00e9, nan, nan, nan, nan\n17.0, Covo, nan, nan, nan, nan\n18.0, Front Page Caf\u00e9, nan, nan, nan, nan\nnan, Avail 45% discount on minimum spend of PKR 2,000 Discount can be availed twice in a month , nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n154.0, Port Grand, 0.25, 0.15, KHI, 2023-12-31 00:00:00\nnan, Restaurants, Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), Free Entry along with 4 guest in Port Grand from Monday to Thursday (not applicable on public holidays & event days), nan, nan\n1.0, Angelini's, nan, nan, nan, nan\n2.0, City Bistro, nan, nan, nan, nan\n3.0, Akbari Nihari, nan, nan, nan, nan\n4.0, Babujees, nan, nan, nan, nan\n5.0, Gardenia, nan, nan, nan, nan\n6.0, Chow Wow, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n155.0, Roomy Hotels & Restaurants, Up to 15% , Up to 15% , City, 2023-12-31 00:00:00\n1.0, The Roomy Lodge, 15% on Standard Room charges, nan, Murree, nan\n2.0, Roomy Junction Hotel, nan, nan, Murree, nan\n3.0, The Point by Roomy, nan, nan, Thandiani, nan\n4.0, Roomy Daastaan Karimabad, nan, nan, Hunza, nan\n5.0, Hindukush Sarai, nan, nan, Chitral, nan\n6.0, Salty by Roomy, 10% on standard restaurant menu & selected buffet, nan, Murree, nan\n7.0, Skylight by Roomy, nan, nan, Islamabad, nan\n8.0, Canopy by Roomy, nan, nan, Islamabad, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\n156.0, Ramada Hotel , nan, nan, City, Expiry Date \nnan, Ramada Hotel , 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. 20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "original_text": "20% Off on All Food & Beverages outlets, 40% Off on Rooms Rack Rate. ", "file_name": "Format2.csv", "doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "hash": "0e28d4629752b02961a40967eb584c81ca8a69e558fc2f31ffee70538e31fdd1", "class_name": "RelatedNodeInfo"}}, "hash": "ec45724043268ef7bb5343130071453383b53ab746bd10f9f2ac325c9db04c21", "text": "20% Off on All Food & Beverages outlets, Karachi, 13th April 2024\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and Conditions, nan, nan, nan, nan\nnan, nan, nan, nan, nan, nan\nnan, Terms and conditions apply, nan, nan, nan, nan\nnan, Deals are not valid in conjunction with restaurant's own promotion(s), nan, nan, nan, nan", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aef387fe-9f00-493f-9a4a-92ef6b5be95e": {"__data__": {"id_": "aef387fe-9f00-493f-9a4a-92ef6b5be95e", "embedding": null, "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "original_text": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ?", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6c82ee55-94f9-4445-bf23-dc7a2a6a395a", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "original_text": "??", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "d0aa85759752c95e6dd96a7ce85f67536bfe7ed85b589739f35ca54c47f1b0eb", "class_name": "RelatedNodeInfo"}}, "hash": "574390836b674519624bb4a4446ac0bf28249b5a8423bd1caa513633f1a3fece", "text": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6c82ee55-94f9-4445-bf23-dc7a2a6a395a": {"__data__": {"id_": "6c82ee55-94f9-4445-bf23-dc7a2a6a395a", "embedding": null, "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "original_text": "??", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "aef387fe-9f00-493f-9a4a-92ef6b5be95e", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "original_text": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ?", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "574390836b674519624bb4a4446ac0bf28249b5a8423bd1caa513633f1a3fece", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5cfdc72f-44ab-4a3b-a8e2-fe3947539ada", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n", "original_text": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a9a25291fe94c0b5c74320b58b4373ff685c16a4bab2c1db54f477ac4ed3b3e3", "class_name": "RelatedNodeInfo"}}, "hash": "d0aa85759752c95e6dd96a7ce85f67536bfe7ed85b589739f35ca54c47f1b0eb", "text": "??", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5cfdc72f-44ab-4a3b-a8e2-fe3947539ada": {"__data__": {"id_": "5cfdc72f-44ab-4a3b-a8e2-fe3947539ada", "embedding": null, "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n", "original_text": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6c82ee55-94f9-4445-bf23-dc7a2a6a395a", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "original_text": "??", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "d0aa85759752c95e6dd96a7ce85f67536bfe7ed85b589739f35ca54c47f1b0eb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5eb0aebd-f9ba-4fb3-a265-c59ffab89f24", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "original_text": "Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "93233213b4b4399dbc09e99cc935a391844b3d770e7809bbf5a59eb3d6bc6e5c", "class_name": "RelatedNodeInfo"}}, "hash": "a9a25291fe94c0b5c74320b58b4373ff685c16a4bab2c1db54f477ac4ed3b3e3", "text": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5eb0aebd-f9ba-4fb3-a265-c59ffab89f24": {"__data__": {"id_": "5eb0aebd-f9ba-4fb3-a265-c59ffab89f24", "embedding": null, "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "original_text": "Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5cfdc72f-44ab-4a3b-a8e2-fe3947539ada", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n", "original_text": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a9a25291fe94c0b5c74320b58b4373ff685c16a4bab2c1db54f477ac4ed3b3e3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1f72320b-2338-447a-b1ce-c42e60aa2f5b", "node_type": "1", "metadata": {"window": "?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "However, key charges will be borne by customer.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "class_name": "RelatedNodeInfo"}}, "hash": "93233213b4b4399dbc09e99cc935a391844b3d770e7809bbf5a59eb3d6bc6e5c", "text": "Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1f72320b-2338-447a-b1ce-c42e60aa2f5b": {"__data__": {"id_": "1f72320b-2338-447a-b1ce-c42e60aa2f5b", "embedding": null, "metadata": {"window": "?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "However, key charges will be borne by customer.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5eb0aebd-f9ba-4fb3-a265-c59ffab89f24", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, What is Eliblity of discounts ? ?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "original_text": "Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "93233213b4b4399dbc09e99cc935a391844b3d770e7809bbf5a59eb3d6bc6e5c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "14783564-1fdf-42e0-afc2-19b1a1032a09", "node_type": "1", "metadata": {"window": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "df41934f6d7f49567030bcd8117a65d2cf4e6c4cf01e3fe4e7e8ba7dcf50ba1a", "class_name": "RelatedNodeInfo"}}, "hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "text": "However, key charges will be borne by customer.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "14783564-1fdf-42e0-afc2-19b1a1032a09": {"__data__": {"id_": "14783564-1fdf-42e0-afc2-19b1a1032a09", "embedding": null, "metadata": {"window": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1f72320b-2338-447a-b1ce-c42e60aa2f5b", "node_type": "1", "metadata": {"window": "?? ?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "However, key charges will be borne by customer.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1bab286e-0147-41ce-a5b4-13096c0434be", "node_type": "1", "metadata": {"window": "Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a67e895a308a01d80d6323a4cae89f157b041e3ad912b061e778dd5acc0acab8", "class_name": "RelatedNodeInfo"}}, "hash": "df41934f6d7f49567030bcd8117a65d2cf4e6c4cf01e3fe4e7e8ba7dcf50ba1a", "text": "Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1bab286e-0147-41ce-a5b4-13096c0434be": {"__data__": {"id_": "1bab286e-0147-41ce-a5b4-13096c0434be", "embedding": null, "metadata": {"window": "Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58", "node_type": "4", "metadata": {"file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "14783564-1fdf-42e0-afc2-19b1a1032a09", "node_type": "1", "metadata": {"window": "?, Eligibilty of Amal Account, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n Amal Priority Plus Account, How many discounted lockers customer can avail?, nan, nan, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, nan, nan, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nAmal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, nan, nan, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nAmal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, nan, nan, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "file_name": "Sheet1.csv", "doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "hash": "df41934f6d7f49567030bcd8117a65d2cf4e6c4cf01e3fe4e7e8ba7dcf50ba1a", "class_name": "RelatedNodeInfo"}}, "hash": "a67e895a308a01d80d6323a4cae89f157b041e3ad912b061e778dd5acc0acab8", "text": "Amal Women Saving Account, Who can open Amal Women Saving Account?, nan, nan, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e1d9f9dc-f710-4835-8f56-dfe018a8328f": {"__data__": {"id_": "e1d9f9dc-f710-4835-8f56-dfe018a8328f", "embedding": null, "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. ", "original_text": "Pay Order Issuance, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4decafb4-16ce-4258-894b-dbb78124842b", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "original_text": "350/- (Flat) \nDuplicate Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6c39670846f0153b883aff265118a2de7cce684bfa17c4a1af78e6b1dd7c3892", "class_name": "RelatedNodeInfo"}}, "hash": "6d3b1d3b8be5e529eedad2778c6b5b64acea4ddc11469f43707deff8ec6a375d", "text": "Pay Order Issuance, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4decafb4-16ce-4258-894b-dbb78124842b": {"__data__": {"id_": "4decafb4-16ce-4258-894b-dbb78124842b", "embedding": null, "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "original_text": "350/- (Flat) \nDuplicate Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e1d9f9dc-f710-4835-8f56-dfe018a8328f", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. ", "original_text": "Pay Order Issuance, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6d3b1d3b8be5e529eedad2778c6b5b64acea4ddc11469f43707deff8ec6a375d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5de01344-24ec-426a-a5a1-026ab9866710", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. ", "original_text": "400/- (Flat)\nCancellation of Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6dbea95910497eb891141496635ce9ba3d32c648d230cc5a1e00ec18eb4124df", "class_name": "RelatedNodeInfo"}}, "hash": "6c39670846f0153b883aff265118a2de7cce684bfa17c4a1af78e6b1dd7c3892", "text": "350/- (Flat) \nDuplicate Pay Order, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5de01344-24ec-426a-a5a1-026ab9866710": {"__data__": {"id_": "5de01344-24ec-426a-a5a1-026ab9866710", "embedding": null, "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. ", "original_text": "400/- (Flat)\nCancellation of Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4decafb4-16ce-4258-894b-dbb78124842b", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "original_text": "350/- (Flat) \nDuplicate Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6c39670846f0153b883aff265118a2de7cce684bfa17c4a1af78e6b1dd7c3892", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "74962a78-60ed-49e9-87f6-3ad2fd44a7dc", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. ", "original_text": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "333e6093f083fc17f86f7983a1390e4da1be719f40600812620f9fb51f66a55a", "class_name": "RelatedNodeInfo"}}, "hash": "6dbea95910497eb891141496635ce9ba3d32c648d230cc5a1e00ec18eb4124df", "text": "400/- (Flat)\nCancellation of Pay Order, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "74962a78-60ed-49e9-87f6-3ad2fd44a7dc": {"__data__": {"id_": "74962a78-60ed-49e9-87f6-3ad2fd44a7dc", "embedding": null, "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. ", "original_text": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5de01344-24ec-426a-a5a1-026ab9866710", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. ", "original_text": "400/- (Flat)\nCancellation of Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6dbea95910497eb891141496635ce9ba3d32c648d230cc5a1e00ec18eb4124df", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ba0ae850-0e05-483c-b73b-8b42ed1cc248", "node_type": "1", "metadata": {"window": "350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. ", "original_text": "4,000/-\nMedium Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "098a9cc9cc474a893da712d373dc08989e727dad9a0910f9ca73eb424f43b1c9", "class_name": "RelatedNodeInfo"}}, "hash": "333e6093f083fc17f86f7983a1390e4da1be719f40600812620f9fb51f66a55a", "text": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ba0ae850-0e05-483c-b73b-8b42ed1cc248": {"__data__": {"id_": "ba0ae850-0e05-483c-b73b-8b42ed1cc248", "embedding": null, "metadata": {"window": "350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. ", "original_text": "4,000/-\nMedium Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "74962a78-60ed-49e9-87f6-3ad2fd44a7dc", "node_type": "1", "metadata": {"window": "Pay Order Issuance, RS. 350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. ", "original_text": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "333e6093f083fc17f86f7983a1390e4da1be719f40600812620f9fb51f66a55a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4f5ca5b2-fadf-4278-90a2-f1c491d90706", "node_type": "1", "metadata": {"window": "400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "original_text": "5,500/-\nLarge Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "297d132c4f17ac90aa865ba08e80c58acf592ce4f23b7736a8df231270bca76c", "class_name": "RelatedNodeInfo"}}, "hash": "098a9cc9cc474a893da712d373dc08989e727dad9a0910f9ca73eb424f43b1c9", "text": "4,000/-\nMedium Locker, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4f5ca5b2-fadf-4278-90a2-f1c491d90706": {"__data__": {"id_": "4f5ca5b2-fadf-4278-90a2-f1c491d90706", "embedding": null, "metadata": {"window": "400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "original_text": "5,500/-\nLarge Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba0ae850-0e05-483c-b73b-8b42ed1cc248", "node_type": "1", "metadata": {"window": "350/- (Flat) \nDuplicate Pay Order, RS. 400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. ", "original_text": "4,000/-\nMedium Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "098a9cc9cc474a893da712d373dc08989e727dad9a0910f9ca73eb424f43b1c9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0c44367d-7b8c-4232-bf4d-f4a7767ee3f1", "node_type": "1", "metadata": {"window": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "original_text": "7,500/-\nExtra large Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "2ac3eb5f5f735fb8d4e8169b34cbf3cb090a8336f0fb5133aa83033ef93041c1", "class_name": "RelatedNodeInfo"}}, "hash": "297d132c4f17ac90aa865ba08e80c58acf592ce4f23b7736a8df231270bca76c", "text": "5,500/-\nLarge Locker, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0c44367d-7b8c-4232-bf4d-f4a7767ee3f1": {"__data__": {"id_": "0c44367d-7b8c-4232-bf4d-f4a7767ee3f1", "embedding": null, "metadata": {"window": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "original_text": "7,500/-\nExtra large Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4f5ca5b2-fadf-4278-90a2-f1c491d90706", "node_type": "1", "metadata": {"window": "400/- (Flat)\nCancellation of Pay Order, RS. 600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "original_text": "5,500/-\nLarge Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "297d132c4f17ac90aa865ba08e80c58acf592ce4f23b7736a8df231270bca76c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3dd392ea-d0bc-465c-9fb9-3de0319811f1", "node_type": "1", "metadata": {"window": "4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "original_text": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "9517e82dea82165ee1f740744b0eb4c644ae451cf011d5a1e329e3da98ea7cb8", "class_name": "RelatedNodeInfo"}}, "hash": "2ac3eb5f5f735fb8d4e8169b34cbf3cb090a8336f0fb5133aa83033ef93041c1", "text": "7,500/-\nExtra large Locker, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3dd392ea-d0bc-465c-9fb9-3de0319811f1": {"__data__": {"id_": "3dd392ea-d0bc-465c-9fb9-3de0319811f1", "embedding": null, "metadata": {"window": "4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "original_text": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0c44367d-7b8c-4232-bf4d-f4a7767ee3f1", "node_type": "1", "metadata": {"window": "600/-\nnan, nan\nnan, nan\nLOCKERS, Charges\nSmall Locker, RS. 4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "original_text": "7,500/-\nExtra large Locker, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "2ac3eb5f5f735fb8d4e8169b34cbf3cb090a8336f0fb5133aa83033ef93041c1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95f30ff0-f47f-4fd8-81de-99a10686d7d2", "node_type": "1", "metadata": {"window": "5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "original_text": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "96fa13fb1dc27247d2f63e9b9b2752e0924f754494ceb2498650be27ad8f7cb9", "class_name": "RelatedNodeInfo"}}, "hash": "9517e82dea82165ee1f740744b0eb4c644ae451cf011d5a1e329e3da98ea7cb8", "text": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95f30ff0-f47f-4fd8-81de-99a10686d7d2": {"__data__": {"id_": "95f30ff0-f47f-4fd8-81de-99a10686d7d2", "embedding": null, "metadata": {"window": "5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "original_text": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3dd392ea-d0bc-465c-9fb9-3de0319811f1", "node_type": "1", "metadata": {"window": "4,000/-\nMedium Locker, RS. 5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "original_text": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "9517e82dea82165ee1f740744b0eb4c644ae451cf011d5a1e329e3da98ea7cb8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "69875d39-0933-4e28-880a-6590ba465c43", "node_type": "1", "metadata": {"window": "7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. ", "original_text": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "34d66f706f9f68ed9d694533bceaba2c745e43d1a2de246b61c26eb7c38fa03d", "class_name": "RelatedNodeInfo"}}, "hash": "96fa13fb1dc27247d2f63e9b9b2752e0924f754494ceb2498650be27ad8f7cb9", "text": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "69875d39-0933-4e28-880a-6590ba465c43": {"__data__": {"id_": "69875d39-0933-4e28-880a-6590ba465c43", "embedding": null, "metadata": {"window": "7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. ", "original_text": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95f30ff0-f47f-4fd8-81de-99a10686d7d2", "node_type": "1", "metadata": {"window": "5,500/-\nLarge Locker, RS. 7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "original_text": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "96fa13fb1dc27247d2f63e9b9b2752e0924f754494ceb2498650be27ad8f7cb9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5f769bc4-61f0-4b58-b454-615c82bcb039", "node_type": "1", "metadata": {"window": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. ", "original_text": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "832f4f2a199a37aa1ab5f3821c526cfe6693ee0472f97323cfa3c4223e06a280", "class_name": "RelatedNodeInfo"}}, "hash": "34d66f706f9f68ed9d694533bceaba2c745e43d1a2de246b61c26eb7c38fa03d", "text": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5f769bc4-61f0-4b58-b454-615c82bcb039": {"__data__": {"id_": "5f769bc4-61f0-4b58-b454-615c82bcb039", "embedding": null, "metadata": {"window": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. ", "original_text": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "69875d39-0933-4e28-880a-6590ba465c43", "node_type": "1", "metadata": {"window": "7,500/-\nExtra large Locker, RS. 12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. ", "original_text": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "34d66f706f9f68ed9d694533bceaba2c745e43d1a2de246b61c26eb7c38fa03d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0", "node_type": "1", "metadata": {"window": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. ", "original_text": "1,900/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1f1b3b6d4c5b0d662b3b1b58bfbe9900e24a43abad8015ea38e59a56f9d1c9d1", "class_name": "RelatedNodeInfo"}}, "hash": "832f4f2a199a37aa1ab5f3821c526cfe6693ee0472f97323cfa3c4223e06a280", "text": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0": {"__data__": {"id_": "f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0", "embedding": null, "metadata": {"window": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. ", "original_text": "1,900/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5f769bc4-61f0-4b58-b454-615c82bcb039", "node_type": "1", "metadata": {"window": "12,000/-\nnan, nan\nDELIVERIES, Charges\nMonthly Physical Statement, RS. 35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. ", "original_text": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "832f4f2a199a37aa1ab5f3821c526cfe6693ee0472f97323cfa3c4223e06a280", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "737216ed-c07c-4049-9134-a34c8c4cf472", "node_type": "1", "metadata": {"window": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. ", "original_text": "2,500/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c4898ac4130018dde6998a13588312a8d1fa05a114625ff3a14ecceadfbae7d1", "class_name": "RelatedNodeInfo"}}, "hash": "1f1b3b6d4c5b0d662b3b1b58bfbe9900e24a43abad8015ea38e59a56f9d1c9d1", "text": "1,900/-\nMastercard Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "737216ed-c07c-4049-9134-a34c8c4cf472": {"__data__": {"id_": "737216ed-c07c-4049-9134-a34c8c4cf472", "embedding": null, "metadata": {"window": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. ", "original_text": "2,500/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0", "node_type": "1", "metadata": {"window": "35/- (Inclusive FED / Provisional sales tax)\nAnnually Physical Statement , RS. 350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. ", "original_text": "1,900/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1f1b3b6d4c5b0d662b3b1b58bfbe9900e24a43abad8015ea38e59a56f9d1c9d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a", "node_type": "1", "metadata": {"window": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. ", "original_text": "6,000/-\nVisa Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "765f93b31e953de2fac45df87a6a023b541fdc214edc87bfb2bdebcd9deab161", "class_name": "RelatedNodeInfo"}}, "hash": "c4898ac4130018dde6998a13588312a8d1fa05a114625ff3a14ecceadfbae7d1", "text": "2,500/-\nMastercard Platinum Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a": {"__data__": {"id_": "83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a", "embedding": null, "metadata": {"window": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. ", "original_text": "6,000/-\nVisa Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "737216ed-c07c-4049-9134-a34c8c4cf472", "node_type": "1", "metadata": {"window": "350/- (Inclusive FED / Provisional sales tax)\nDelivery for Cheque book/Debit Cards charge, RS. 250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. ", "original_text": "2,500/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c4898ac4130018dde6998a13588312a8d1fa05a114625ff3a14ecceadfbae7d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ee590ef-d228-4220-878f-aaf27b9395c7", "node_type": "1", "metadata": {"window": "1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. ", "original_text": "2,000/-\nVisa Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "e0fa60e59e9f541d321637a0f9e00577baeda809cc0fd00eef0488c856906e2b", "class_name": "RelatedNodeInfo"}}, "hash": "765f93b31e953de2fac45df87a6a023b541fdc214edc87bfb2bdebcd9deab161", "text": "6,000/-\nVisa Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ee590ef-d228-4220-878f-aaf27b9395c7": {"__data__": {"id_": "8ee590ef-d228-4220-878f-aaf27b9395c7", "embedding": null, "metadata": {"window": "1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. ", "original_text": "2,000/-\nVisa Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a", "node_type": "1", "metadata": {"window": "250/-\nnan, nan\nDEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. ", "original_text": "6,000/-\nVisa Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "765f93b31e953de2fac45df87a6a023b541fdc214edc87bfb2bdebcd9deab161", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e411e136-0b3b-407e-b265-99c95c3610e3", "node_type": "1", "metadata": {"window": "2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. ", "original_text": "2,950/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "f4573fc62ac62fcdeba14cec152b1741deb8095b2724e1e51bd34d0d0885bd8c", "class_name": "RelatedNodeInfo"}}, "hash": "e0fa60e59e9f541d321637a0f9e00577baeda809cc0fd00eef0488c856906e2b", "text": "2,000/-\nVisa Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e411e136-0b3b-407e-b265-99c95c3610e3": {"__data__": {"id_": "e411e136-0b3b-407e-b265-99c95c3610e3", "embedding": null, "metadata": {"window": "2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. ", "original_text": "2,950/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ee590ef-d228-4220-878f-aaf27b9395c7", "node_type": "1", "metadata": {"window": "1,900/-\nMastercard Gold Debit Card, RS. 2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. ", "original_text": "2,000/-\nVisa Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "e0fa60e59e9f541d321637a0f9e00577baeda809cc0fd00eef0488c856906e2b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "73d66fb0-55e2-45d8-af34-16e854471bcf", "node_type": "1", "metadata": {"window": "6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. ", "original_text": "6,000/-\nUnionPay Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "2c0afadeb9bd5465425c03dbb2fe0228b7837127070ca7482c69fecbc7f657f1", "class_name": "RelatedNodeInfo"}}, "hash": "f4573fc62ac62fcdeba14cec152b1741deb8095b2724e1e51bd34d0d0885bd8c", "text": "2,950/-\nVISA Platinum Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "73d66fb0-55e2-45d8-af34-16e854471bcf": {"__data__": {"id_": "73d66fb0-55e2-45d8-af34-16e854471bcf", "embedding": null, "metadata": {"window": "6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. ", "original_text": "6,000/-\nUnionPay Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e411e136-0b3b-407e-b265-99c95c3610e3", "node_type": "1", "metadata": {"window": "2,500/-\nMastercard Platinum Debit Card, RS. 6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. ", "original_text": "2,950/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "f4573fc62ac62fcdeba14cec152b1741deb8095b2724e1e51bd34d0d0885bd8c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "441471e5-e26f-4f1b-8711-f8e270e5e9b5", "node_type": "1", "metadata": {"window": "2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. ", "original_text": "1,350/-\nUnionPay Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "933e0912928aa463a21bdcfa8bed2f8cea9fe9e1cf6cd70aac57f7566da874b2", "class_name": "RelatedNodeInfo"}}, "hash": "2c0afadeb9bd5465425c03dbb2fe0228b7837127070ca7482c69fecbc7f657f1", "text": "6,000/-\nUnionPay Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "441471e5-e26f-4f1b-8711-f8e270e5e9b5": {"__data__": {"id_": "441471e5-e26f-4f1b-8711-f8e270e5e9b5", "embedding": null, "metadata": {"window": "2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. ", "original_text": "1,350/-\nUnionPay Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "73d66fb0-55e2-45d8-af34-16e854471bcf", "node_type": "1", "metadata": {"window": "6,000/-\nVisa Classic Debit Card, RS. 2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. ", "original_text": "6,000/-\nUnionPay Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "2c0afadeb9bd5465425c03dbb2fe0228b7837127070ca7482c69fecbc7f657f1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "be4a1dbe-dd07-4047-b022-97e99c40608e", "node_type": "1", "metadata": {"window": "2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. ", "original_text": "1,900/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "341439513d83a9d3452f9e60984a8aa84f6e540b697be6ccfd77cceab4166866", "class_name": "RelatedNodeInfo"}}, "hash": "933e0912928aa463a21bdcfa8bed2f8cea9fe9e1cf6cd70aac57f7566da874b2", "text": "1,350/-\nUnionPay Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "be4a1dbe-dd07-4047-b022-97e99c40608e": {"__data__": {"id_": "be4a1dbe-dd07-4047-b022-97e99c40608e", "embedding": null, "metadata": {"window": "2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. ", "original_text": "1,900/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "441471e5-e26f-4f1b-8711-f8e270e5e9b5", "node_type": "1", "metadata": {"window": "2,000/-\nVisa Gold Debit Card, RS. 2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. ", "original_text": "1,350/-\nUnionPay Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "933e0912928aa463a21bdcfa8bed2f8cea9fe9e1cf6cd70aac57f7566da874b2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b20e3641-17a5-42a9-816d-4f5ea34072e9", "node_type": "1", "metadata": {"window": "6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. ", "original_text": "1,800/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "e5f4f212e7b627faec703cd11e45422925c5e8e07d26fa79894ae715197cd412", "class_name": "RelatedNodeInfo"}}, "hash": "341439513d83a9d3452f9e60984a8aa84f6e540b697be6ccfd77cceab4166866", "text": "1,900/-\nPayPak-UPI Golootlo, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b20e3641-17a5-42a9-816d-4f5ea34072e9": {"__data__": {"id_": "b20e3641-17a5-42a9-816d-4f5ea34072e9", "embedding": null, "metadata": {"window": "6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. ", "original_text": "1,800/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "be4a1dbe-dd07-4047-b022-97e99c40608e", "node_type": "1", "metadata": {"window": "2,950/-\nVISA Platinum Debit Card, RS. 6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. ", "original_text": "1,900/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "341439513d83a9d3452f9e60984a8aa84f6e540b697be6ccfd77cceab4166866", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "abe05f1b-6d22-4868-82f5-af5ed94fcbdf", "node_type": "1", "metadata": {"window": "1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "original_text": "12,000/-\nFBL Business Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "156b2a7f99df6e8cf71334319a6c2501c84f60cf4e9aa841bceffacbd09936c5", "class_name": "RelatedNodeInfo"}}, "hash": "e5f4f212e7b627faec703cd11e45422925c5e8e07d26fa79894ae715197cd412", "text": "1,800/-\nWorld Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "abe05f1b-6d22-4868-82f5-af5ed94fcbdf": {"__data__": {"id_": "abe05f1b-6d22-4868-82f5-af5ed94fcbdf", "embedding": null, "metadata": {"window": "1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "original_text": "12,000/-\nFBL Business Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b20e3641-17a5-42a9-816d-4f5ea34072e9", "node_type": "1", "metadata": {"window": "6,000/-\nUnionPay Classic Debit Card, RS. 1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. ", "original_text": "1,800/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "e5f4f212e7b627faec703cd11e45422925c5e8e07d26fa79894ae715197cd412", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "eb7a9cac-1943-4f3a-a8a4-528815b4ad66", "node_type": "1", "metadata": {"window": "1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. ", "original_text": "8,000/-\nFBL Business Debit Card (World), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "17b3866fc7189b4c21a492e54b780b12eb309ac2d0efffd31a47c78d1aecc8ee", "class_name": "RelatedNodeInfo"}}, "hash": "156b2a7f99df6e8cf71334319a6c2501c84f60cf4e9aa841bceffacbd09936c5", "text": "12,000/-\nFBL Business Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "eb7a9cac-1943-4f3a-a8a4-528815b4ad66": {"__data__": {"id_": "eb7a9cac-1943-4f3a-a8a4-528815b4ad66", "embedding": null, "metadata": {"window": "1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. ", "original_text": "8,000/-\nFBL Business Debit Card (World), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "abe05f1b-6d22-4868-82f5-af5ed94fcbdf", "node_type": "1", "metadata": {"window": "1,350/-\nUnionPay Gold Debit Card, RS. 1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "original_text": "12,000/-\nFBL Business Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "156b2a7f99df6e8cf71334319a6c2501c84f60cf4e9aa841bceffacbd09936c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "36c3e911-07d5-4adc-ade4-4cca3b89784b", "node_type": "1", "metadata": {"window": "1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. ", "original_text": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "cadfaec4a6c597f4d790c50a38f2993ab81818f9c51f0a1b9b385702a7a359d7", "class_name": "RelatedNodeInfo"}}, "hash": "17b3866fc7189b4c21a492e54b780b12eb309ac2d0efffd31a47c78d1aecc8ee", "text": "8,000/-\nFBL Business Debit Card (World), RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "36c3e911-07d5-4adc-ade4-4cca3b89784b": {"__data__": {"id_": "36c3e911-07d5-4adc-ade4-4cca3b89784b", "embedding": null, "metadata": {"window": "1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. ", "original_text": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "eb7a9cac-1943-4f3a-a8a4-528815b4ad66", "node_type": "1", "metadata": {"window": "1,900/-\nPayPak-UPI Golootlo, RS. 1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. ", "original_text": "8,000/-\nFBL Business Debit Card (World), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "17b3866fc7189b4c21a492e54b780b12eb309ac2d0efffd31a47c78d1aecc8ee", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b8e2202-2300-4cac-905b-7dbe5f4b7e81", "node_type": "1", "metadata": {"window": "12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. ", "original_text": "950/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "724fd5bab6bb43407bcb32128af7b925235c4d16c1f88870308c801073f1377f", "class_name": "RelatedNodeInfo"}}, "hash": "cadfaec4a6c597f4d790c50a38f2993ab81818f9c51f0a1b9b385702a7a359d7", "text": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b8e2202-2300-4cac-905b-7dbe5f4b7e81": {"__data__": {"id_": "5b8e2202-2300-4cac-905b-7dbe5f4b7e81", "embedding": null, "metadata": {"window": "12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. ", "original_text": "950/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "36c3e911-07d5-4adc-ade4-4cca3b89784b", "node_type": "1", "metadata": {"window": "1,800/-\nWorld Debit Card, RS. 12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. ", "original_text": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "cadfaec4a6c597f4d790c50a38f2993ab81818f9c51f0a1b9b385702a7a359d7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dc897430-daff-4f45-83cc-4a7ef7dbf571", "node_type": "1", "metadata": {"window": "8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. ", "original_text": "1,450/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1c7809e267b891d5e640c4ad77c2b78063b9484d8740418e73548e4ee9f20aa7", "class_name": "RelatedNodeInfo"}}, "hash": "724fd5bab6bb43407bcb32128af7b925235c4d16c1f88870308c801073f1377f", "text": "950/-\nMastercard Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dc897430-daff-4f45-83cc-4a7ef7dbf571": {"__data__": {"id_": "dc897430-daff-4f45-83cc-4a7ef7dbf571", "embedding": null, "metadata": {"window": "8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. ", "original_text": "1,450/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5b8e2202-2300-4cac-905b-7dbe5f4b7e81", "node_type": "1", "metadata": {"window": "12,000/-\nFBL Business Debit Card, RS. 8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. ", "original_text": "950/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "724fd5bab6bb43407bcb32128af7b925235c4d16c1f88870308c801073f1377f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5b9b0813-fc4c-495d-a4f4-f0f1850f19cc", "node_type": "1", "metadata": {"window": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. ", "original_text": "5,500/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "fb11864d7d9bb7ba8c70dfa847b11ff748667d4b92f4e570769996946e8a6499", "class_name": "RelatedNodeInfo"}}, "hash": "1c7809e267b891d5e640c4ad77c2b78063b9484d8740418e73548e4ee9f20aa7", "text": "1,450/-\nMastercard Platinum Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b9b0813-fc4c-495d-a4f4-f0f1850f19cc": {"__data__": {"id_": "5b9b0813-fc4c-495d-a4f4-f0f1850f19cc", "embedding": null, "metadata": {"window": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. ", "original_text": "5,500/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dc897430-daff-4f45-83cc-4a7ef7dbf571", "node_type": "1", "metadata": {"window": "8,000/-\nFBL Business Debit Card (World), RS. 12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. ", "original_text": "1,450/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1c7809e267b891d5e640c4ad77c2b78063b9484d8740418e73548e4ee9f20aa7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a69e5a8c-9a09-4730-8fa2-d6391000283b", "node_type": "1", "metadata": {"window": "950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "original_text": "5,760/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b120d12609779d294e95689621ab0b96e744f0ef2780ed16f867cd5f33d5970d", "class_name": "RelatedNodeInfo"}}, "hash": "fb11864d7d9bb7ba8c70dfa847b11ff748667d4b92f4e570769996946e8a6499", "text": "5,500/-\nVISA Platinum Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a69e5a8c-9a09-4730-8fa2-d6391000283b": {"__data__": {"id_": "a69e5a8c-9a09-4730-8fa2-d6391000283b", "embedding": null, "metadata": {"window": "950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "original_text": "5,760/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5b9b0813-fc4c-495d-a4f4-f0f1850f19cc", "node_type": "1", "metadata": {"window": "12,000/-\nnan, nan\nnan, nan\nnan, nan\nSUPPLEMENTARY DEBIT CARD ANNUAL CHARGES, Charges\nMastercard Classic Debit Card, RS. 950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. ", "original_text": "5,500/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "fb11864d7d9bb7ba8c70dfa847b11ff748667d4b92f4e570769996946e8a6499", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "972f85ec-ba34-4b4c-bb75-425f8328a112", "node_type": "1", "metadata": {"window": "1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. ", "original_text": "1,350/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "44ec999a70493ff3bb6a17754ebf9fd5874c3b39daa82788a70f6feec2071c29", "class_name": "RelatedNodeInfo"}}, "hash": "b120d12609779d294e95689621ab0b96e744f0ef2780ed16f867cd5f33d5970d", "text": "5,760/-\nPayPak-UPI Golootlo, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "972f85ec-ba34-4b4c-bb75-425f8328a112": {"__data__": {"id_": "972f85ec-ba34-4b4c-bb75-425f8328a112", "embedding": null, "metadata": {"window": "1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. ", "original_text": "1,350/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a69e5a8c-9a09-4730-8fa2-d6391000283b", "node_type": "1", "metadata": {"window": "950/-\nMastercard Gold Debit Card, RS. 1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "original_text": "5,760/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b120d12609779d294e95689621ab0b96e744f0ef2780ed16f867cd5f33d5970d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9f2acf9d-de30-4340-a625-4e1de579099e", "node_type": "1", "metadata": {"window": "5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. ", "original_text": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "4aa2e786f1d5f03e720bc5262b6ea175607e4f985359c115b4e7ee6625a71200", "class_name": "RelatedNodeInfo"}}, "hash": "44ec999a70493ff3bb6a17754ebf9fd5874c3b39daa82788a70f6feec2071c29", "text": "1,350/-\nWorld Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f2acf9d-de30-4340-a625-4e1de579099e": {"__data__": {"id_": "9f2acf9d-de30-4340-a625-4e1de579099e", "embedding": null, "metadata": {"window": "5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. ", "original_text": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "972f85ec-ba34-4b4c-bb75-425f8328a112", "node_type": "1", "metadata": {"window": "1,450/-\nMastercard Platinum Debit Card, RS. 5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. ", "original_text": "1,350/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "44ec999a70493ff3bb6a17754ebf9fd5874c3b39daa82788a70f6feec2071c29", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5fb7152d-4df6-4a74-9b06-7c4e59635423", "node_type": "1", "metadata": {"window": "5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. ", "original_text": "1,200/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b96ecf201653a9a92f85c2f6c91f4543b2381080350b68134fe7731d59a5c0fb", "class_name": "RelatedNodeInfo"}}, "hash": "4aa2e786f1d5f03e720bc5262b6ea175607e4f985359c115b4e7ee6625a71200", "text": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5fb7152d-4df6-4a74-9b06-7c4e59635423": {"__data__": {"id_": "5fb7152d-4df6-4a74-9b06-7c4e59635423", "embedding": null, "metadata": {"window": "5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. ", "original_text": "1,200/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f2acf9d-de30-4340-a625-4e1de579099e", "node_type": "1", "metadata": {"window": "5,500/-\nVISA Platinum Debit Card, RS. 5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. ", "original_text": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "4aa2e786f1d5f03e720bc5262b6ea175607e4f985359c115b4e7ee6625a71200", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a26a1046-a37f-44b7-b1cc-5b364de92307", "node_type": "1", "metadata": {"window": "1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. ", "original_text": "1,200/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "606d92024ce3ac797f963af6cd7f1478d3474d3e5dc03ca07426dec1858ffb85", "class_name": "RelatedNodeInfo"}}, "hash": "b96ecf201653a9a92f85c2f6c91f4543b2381080350b68134fe7731d59a5c0fb", "text": "1,200/-\nMastercard Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a26a1046-a37f-44b7-b1cc-5b364de92307": {"__data__": {"id_": "a26a1046-a37f-44b7-b1cc-5b364de92307", "embedding": null, "metadata": {"window": "1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. ", "original_text": "1,200/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5fb7152d-4df6-4a74-9b06-7c4e59635423", "node_type": "1", "metadata": {"window": "5,760/-\nPayPak-UPI Golootlo, RS. 1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. ", "original_text": "1,200/-\nMastercard Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b96ecf201653a9a92f85c2f6c91f4543b2381080350b68134fe7731d59a5c0fb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "68e69dda-875b-4f88-9894-60387b9ecf39", "node_type": "1", "metadata": {"window": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. ", "original_text": "1,550/-\nVisa Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "32b8fb6517ca543b4168b57c9d80bad422d2b66d80fe80bc4f9d8480ae36b9ce", "class_name": "RelatedNodeInfo"}}, "hash": "606d92024ce3ac797f963af6cd7f1478d3474d3e5dc03ca07426dec1858ffb85", "text": "1,200/-\nMastercard Platinum Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "68e69dda-875b-4f88-9894-60387b9ecf39": {"__data__": {"id_": "68e69dda-875b-4f88-9894-60387b9ecf39", "embedding": null, "metadata": {"window": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. ", "original_text": "1,550/-\nVisa Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a26a1046-a37f-44b7-b1cc-5b364de92307", "node_type": "1", "metadata": {"window": "1,350/-\nWorld Debit Card, RS. 8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. ", "original_text": "1,200/-\nMastercard Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "606d92024ce3ac797f963af6cd7f1478d3474d3e5dc03ca07426dec1858ffb85", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "91f0d751-73bf-406d-9f3b-5bb88615b284", "node_type": "1", "metadata": {"window": "1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. ", "original_text": "1,100/-\nVisa Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "29f544a88cc48de28be37649db8d48bee5b10a4c70a3709f5536731406182cc3", "class_name": "RelatedNodeInfo"}}, "hash": "32b8fb6517ca543b4168b57c9d80bad422d2b66d80fe80bc4f9d8480ae36b9ce", "text": "1,550/-\nVisa Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "91f0d751-73bf-406d-9f3b-5bb88615b284": {"__data__": {"id_": "91f0d751-73bf-406d-9f3b-5bb88615b284", "embedding": null, "metadata": {"window": "1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. ", "original_text": "1,100/-\nVisa Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "68e69dda-875b-4f88-9894-60387b9ecf39", "node_type": "1", "metadata": {"window": "8,000/-\nREPLACEMENT CHARGES OF DEBIT CARDS, nan\nMastercard Classic Debit Card, RS. 1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. ", "original_text": "1,550/-\nVisa Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "32b8fb6517ca543b4168b57c9d80bad422d2b66d80fe80bc4f9d8480ae36b9ce", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9", "node_type": "1", "metadata": {"window": "1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. ", "original_text": "1,100/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c13df48b79301dea01ce31158ee4d756117136c4fdbdba9feaa126f0701f83b0", "class_name": "RelatedNodeInfo"}}, "hash": "29f544a88cc48de28be37649db8d48bee5b10a4c70a3709f5536731406182cc3", "text": "1,100/-\nVisa Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9": {"__data__": {"id_": "1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9", "embedding": null, "metadata": {"window": "1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. ", "original_text": "1,100/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "91f0d751-73bf-406d-9f3b-5bb88615b284", "node_type": "1", "metadata": {"window": "1,200/-\nMastercard Gold Debit Card, RS. 1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. ", "original_text": "1,100/-\nVisa Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "29f544a88cc48de28be37649db8d48bee5b10a4c70a3709f5536731406182cc3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "790d77c9-1cbc-4bff-b693-ef2e6deece32", "node_type": "1", "metadata": {"window": "1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. ", "original_text": "1,350/-\nUnionPay Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "449db45495b067732aaa12212dbb750bf6b50f03f8326ed2d00db156d1d44715", "class_name": "RelatedNodeInfo"}}, "hash": "c13df48b79301dea01ce31158ee4d756117136c4fdbdba9feaa126f0701f83b0", "text": "1,100/-\nVISA Platinum Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "790d77c9-1cbc-4bff-b693-ef2e6deece32": {"__data__": {"id_": "790d77c9-1cbc-4bff-b693-ef2e6deece32", "embedding": null, "metadata": {"window": "1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. ", "original_text": "1,350/-\nUnionPay Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9", "node_type": "1", "metadata": {"window": "1,200/-\nMastercard Platinum Debit Card, RS. 1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. ", "original_text": "1,100/-\nVISA Platinum Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c13df48b79301dea01ce31158ee4d756117136c4fdbdba9feaa126f0701f83b0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "97017fc9-883f-4e0a-bd1d-3201ba26743b", "node_type": "1", "metadata": {"window": "1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. ", "original_text": "600/-\nUnionPay Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "7928b2c76e0c8d5e17d3bdff99bf5506dba2b98ca927aee971aeb3c40b45919e", "class_name": "RelatedNodeInfo"}}, "hash": "449db45495b067732aaa12212dbb750bf6b50f03f8326ed2d00db156d1d44715", "text": "1,350/-\nUnionPay Classic Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "97017fc9-883f-4e0a-bd1d-3201ba26743b": {"__data__": {"id_": "97017fc9-883f-4e0a-bd1d-3201ba26743b", "embedding": null, "metadata": {"window": "1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. ", "original_text": "600/-\nUnionPay Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "790d77c9-1cbc-4bff-b693-ef2e6deece32", "node_type": "1", "metadata": {"window": "1,550/-\nVisa Classic Debit Card, RS. 1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. ", "original_text": "1,350/-\nUnionPay Classic Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "449db45495b067732aaa12212dbb750bf6b50f03f8326ed2d00db156d1d44715", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c7d60546-fa1f-43ef-99e2-f47a9aa6a194", "node_type": "1", "metadata": {"window": "1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. ", "original_text": "1,100/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "8156bbe12c3046eba68853a694971a1a89c014ba02752eef4e500b999b303a1f", "class_name": "RelatedNodeInfo"}}, "hash": "7928b2c76e0c8d5e17d3bdff99bf5506dba2b98ca927aee971aeb3c40b45919e", "text": "600/-\nUnionPay Gold Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c7d60546-fa1f-43ef-99e2-f47a9aa6a194": {"__data__": {"id_": "c7d60546-fa1f-43ef-99e2-f47a9aa6a194", "embedding": null, "metadata": {"window": "1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. ", "original_text": "1,100/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "97017fc9-883f-4e0a-bd1d-3201ba26743b", "node_type": "1", "metadata": {"window": "1,100/-\nVisa Gold Debit Card, RS. 1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. ", "original_text": "600/-\nUnionPay Gold Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "7928b2c76e0c8d5e17d3bdff99bf5506dba2b98ca927aee971aeb3c40b45919e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cbf79179-1f64-45f2-b817-d1538f8116a5", "node_type": "1", "metadata": {"window": "1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. ", "original_text": "900/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "ea9357273faea0448555c5a7a3f36f2f6135ee9bfd667597560bc467dd5c7f07", "class_name": "RelatedNodeInfo"}}, "hash": "8156bbe12c3046eba68853a694971a1a89c014ba02752eef4e500b999b303a1f", "text": "1,100/-\nPayPak-UPI Golootlo, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cbf79179-1f64-45f2-b817-d1538f8116a5": {"__data__": {"id_": "cbf79179-1f64-45f2-b817-d1538f8116a5", "embedding": null, "metadata": {"window": "1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. ", "original_text": "900/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c7d60546-fa1f-43ef-99e2-f47a9aa6a194", "node_type": "1", "metadata": {"window": "1,100/-\nVISA Platinum Debit Card, RS. 1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. ", "original_text": "1,100/-\nPayPak-UPI Golootlo, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "8156bbe12c3046eba68853a694971a1a89c014ba02752eef4e500b999b303a1f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "63b14d03-f30c-4ae7-93d3-b097f26f5df3", "node_type": "1", "metadata": {"window": "600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "original_text": "2,450/-\nFBL Business Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1b3227695ad9e67533f0e0c9f29e4a364555d845fae0a6565f14bcf9eabfab3c", "class_name": "RelatedNodeInfo"}}, "hash": "ea9357273faea0448555c5a7a3f36f2f6135ee9bfd667597560bc467dd5c7f07", "text": "900/-\nWorld Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "63b14d03-f30c-4ae7-93d3-b097f26f5df3": {"__data__": {"id_": "63b14d03-f30c-4ae7-93d3-b097f26f5df3", "embedding": null, "metadata": {"window": "600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "original_text": "2,450/-\nFBL Business Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cbf79179-1f64-45f2-b817-d1538f8116a5", "node_type": "1", "metadata": {"window": "1,350/-\nUnionPay Classic Debit Card, RS. 600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. ", "original_text": "900/-\nWorld Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "ea9357273faea0448555c5a7a3f36f2f6135ee9bfd667597560bc467dd5c7f07", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1e6848cd-69ee-4e1f-8b8c-f5551e92d648", "node_type": "1", "metadata": {"window": "1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. ", "original_text": "3,000/-\nFBL Business Debit Card (World), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "30cd2e2c9fc90c016aac1090e7c1c940271521bbc658f8dfa4be9379eb2c07c4", "class_name": "RelatedNodeInfo"}}, "hash": "1b3227695ad9e67533f0e0c9f29e4a364555d845fae0a6565f14bcf9eabfab3c", "text": "2,450/-\nFBL Business Debit Card, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e6848cd-69ee-4e1f-8b8c-f5551e92d648": {"__data__": {"id_": "1e6848cd-69ee-4e1f-8b8c-f5551e92d648", "embedding": null, "metadata": {"window": "1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. ", "original_text": "3,000/-\nFBL Business Debit Card (World), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "63b14d03-f30c-4ae7-93d3-b097f26f5df3", "node_type": "1", "metadata": {"window": "600/-\nUnionPay Gold Debit Card, RS. 1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "original_text": "2,450/-\nFBL Business Debit Card, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1b3227695ad9e67533f0e0c9f29e4a364555d845fae0a6565f14bcf9eabfab3c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4292a0a3-8108-44f3-8523-728b66cfb241", "node_type": "1", "metadata": {"window": "900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. ", "original_text": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "06dadb6c651c3cb809899168df63f33e7a73405c35037c0b3df24271afea590c", "class_name": "RelatedNodeInfo"}}, "hash": "30cd2e2c9fc90c016aac1090e7c1c940271521bbc658f8dfa4be9379eb2c07c4", "text": "3,000/-\nFBL Business Debit Card (World), RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4292a0a3-8108-44f3-8523-728b66cfb241": {"__data__": {"id_": "4292a0a3-8108-44f3-8523-728b66cfb241", "embedding": null, "metadata": {"window": "900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. ", "original_text": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1e6848cd-69ee-4e1f-8b8c-f5551e92d648", "node_type": "1", "metadata": {"window": "1,100/-\nPayPak-UPI Golootlo, RS. 900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. ", "original_text": "3,000/-\nFBL Business Debit Card (World), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "30cd2e2c9fc90c016aac1090e7c1c940271521bbc658f8dfa4be9379eb2c07c4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "edbf2b56-ad60-4f47-991d-ab4fe98381f7", "node_type": "1", "metadata": {"window": "2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. ", "original_text": "5,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "a29c463c3dd3a43484d020aee56022c59cb3ff08a1cd3fdd75d3ffb985b5995b", "class_name": "RelatedNodeInfo"}}, "hash": "06dadb6c651c3cb809899168df63f33e7a73405c35037c0b3df24271afea590c", "text": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "edbf2b56-ad60-4f47-991d-ab4fe98381f7": {"__data__": {"id_": "edbf2b56-ad60-4f47-991d-ab4fe98381f7", "embedding": null, "metadata": {"window": "2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. ", "original_text": "5,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4292a0a3-8108-44f3-8523-728b66cfb241", "node_type": "1", "metadata": {"window": "900/-\nWorld Debit Card, RS. 2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. ", "original_text": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "06dadb6c651c3cb809899168df63f33e7a73405c35037c0b3df24271afea590c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5343cc47-3286-4789-bac0-8d2742697b44", "node_type": "1", "metadata": {"window": "3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. ", "original_text": "500/-)\nBlaze/Gold, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "11291eb1b059846f960dba7be0aa0044b7a43354ebae4b80e8ae5bf80f73a6be", "class_name": "RelatedNodeInfo"}}, "hash": "a29c463c3dd3a43484d020aee56022c59cb3ff08a1cd3fdd75d3ffb985b5995b", "text": "5,000/- (Reduce Fee of RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5343cc47-3286-4789-bac0-8d2742697b44": {"__data__": {"id_": "5343cc47-3286-4789-bac0-8d2742697b44", "embedding": null, "metadata": {"window": "3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. ", "original_text": "500/-)\nBlaze/Gold, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "edbf2b56-ad60-4f47-991d-ab4fe98381f7", "node_type": "1", "metadata": {"window": "2,450/-\nFBL Business Debit Card, RS. 3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. ", "original_text": "5,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "a29c463c3dd3a43484d020aee56022c59cb3ff08a1cd3fdd75d3ffb985b5995b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ef537eb-034e-41cc-9cd8-9f2e88001192", "node_type": "1", "metadata": {"window": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. ", "original_text": "9,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6a2d79fb8aedd92962fe4ef03c4602b3c9954d9c05e7de41589be4eb25b9d85e", "class_name": "RelatedNodeInfo"}}, "hash": "11291eb1b059846f960dba7be0aa0044b7a43354ebae4b80e8ae5bf80f73a6be", "text": "500/-)\nBlaze/Gold, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ef537eb-034e-41cc-9cd8-9f2e88001192": {"__data__": {"id_": "8ef537eb-034e-41cc-9cd8-9f2e88001192", "embedding": null, "metadata": {"window": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. ", "original_text": "9,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5343cc47-3286-4789-bac0-8d2742697b44", "node_type": "1", "metadata": {"window": "3,000/-\nFBL Business Debit Card (World), RS. 3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. ", "original_text": "500/-)\nBlaze/Gold, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "11291eb1b059846f960dba7be0aa0044b7a43354ebae4b80e8ae5bf80f73a6be", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2bf668cb-3cea-46b3-a5e7-b28e5319bf04", "node_type": "1", "metadata": {"window": "5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. ", "original_text": "750/-)\nTitanium, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b8a56e44b603afb99e22c4ee30244fee100ea9878c322e48e839a000e1e61048", "class_name": "RelatedNodeInfo"}}, "hash": "6a2d79fb8aedd92962fe4ef03c4602b3c9954d9c05e7de41589be4eb25b9d85e", "text": "9,000/- (Reduce Fee of RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2bf668cb-3cea-46b3-a5e7-b28e5319bf04": {"__data__": {"id_": "2bf668cb-3cea-46b3-a5e7-b28e5319bf04", "embedding": null, "metadata": {"window": "5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. ", "original_text": "750/-)\nTitanium, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ef537eb-034e-41cc-9cd8-9f2e88001192", "node_type": "1", "metadata": {"window": "3,000/-\nnan, nan\nnan, nan\nCREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. ", "original_text": "9,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6a2d79fb8aedd92962fe4ef03c4602b3c9954d9c05e7de41589be4eb25b9d85e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "38d2429d-16cb-46aa-9f45-a035dc6243a8", "node_type": "1", "metadata": {"window": "500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. ", "original_text": "11,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "835fccff5c1dc31e80ee9fe5d63b8d1f79f42c5e34125fa3ca155297d3c7b0dd", "class_name": "RelatedNodeInfo"}}, "hash": "b8a56e44b603afb99e22c4ee30244fee100ea9878c322e48e839a000e1e61048", "text": "750/-)\nTitanium, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "38d2429d-16cb-46aa-9f45-a035dc6243a8": {"__data__": {"id_": "38d2429d-16cb-46aa-9f45-a035dc6243a8", "embedding": null, "metadata": {"window": "500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. ", "original_text": "11,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2bf668cb-3cea-46b3-a5e7-b28e5319bf04", "node_type": "1", "metadata": {"window": "5,000/- (Reduce Fee of RS. 500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. ", "original_text": "750/-)\nTitanium, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b8a56e44b603afb99e22c4ee30244fee100ea9878c322e48e839a000e1e61048", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ddf95a47-4064-42f5-bb8e-29f3876bdeee", "node_type": "1", "metadata": {"window": "9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. ", "original_text": "750/-)\nPlatinum, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "a1288d6deb4bd35c0d0119deeb7c87856a5e7ece82e78fe2dd0edf011941c0be", "class_name": "RelatedNodeInfo"}}, "hash": "835fccff5c1dc31e80ee9fe5d63b8d1f79f42c5e34125fa3ca155297d3c7b0dd", "text": "11,000/- (Reduce Fee of RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ddf95a47-4064-42f5-bb8e-29f3876bdeee": {"__data__": {"id_": "ddf95a47-4064-42f5-bb8e-29f3876bdeee", "embedding": null, "metadata": {"window": "9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. ", "original_text": "750/-)\nPlatinum, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "38d2429d-16cb-46aa-9f45-a035dc6243a8", "node_type": "1", "metadata": {"window": "500/-)\nBlaze/Gold, RS. 9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. ", "original_text": "11,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "835fccff5c1dc31e80ee9fe5d63b8d1f79f42c5e34125fa3ca155297d3c7b0dd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8e5676d3-a029-477a-8141-54a150162ad5", "node_type": "1", "metadata": {"window": "750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. ", "original_text": "15,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "8774898986437192b5214596d30fc0b5842fe95dfc0e0ff70687a942953353ca", "class_name": "RelatedNodeInfo"}}, "hash": "a1288d6deb4bd35c0d0119deeb7c87856a5e7ece82e78fe2dd0edf011941c0be", "text": "750/-)\nPlatinum, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e5676d3-a029-477a-8141-54a150162ad5": {"__data__": {"id_": "8e5676d3-a029-477a-8141-54a150162ad5", "embedding": null, "metadata": {"window": "750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. ", "original_text": "15,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ddf95a47-4064-42f5-bb8e-29f3876bdeee", "node_type": "1", "metadata": {"window": "9,000/- (Reduce Fee of RS. 750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. ", "original_text": "750/-)\nPlatinum, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "a1288d6deb4bd35c0d0119deeb7c87856a5e7ece82e78fe2dd0edf011941c0be", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f11b4391-8f99-43e7-9d4f-d576065d986b", "node_type": "1", "metadata": {"window": "11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "original_text": "1,500/-)\nWorld, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b174a0bb7de5793ad4c19feec9ad2971cf9977a3725d76b8352147ee689783f2", "class_name": "RelatedNodeInfo"}}, "hash": "8774898986437192b5214596d30fc0b5842fe95dfc0e0ff70687a942953353ca", "text": "15,000/- (Reduce Fee of RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f11b4391-8f99-43e7-9d4f-d576065d986b": {"__data__": {"id_": "f11b4391-8f99-43e7-9d4f-d576065d986b", "embedding": null, "metadata": {"window": "11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "original_text": "1,500/-)\nWorld, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8e5676d3-a029-477a-8141-54a150162ad5", "node_type": "1", "metadata": {"window": "750/-)\nTitanium, RS. 11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. ", "original_text": "15,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "8774898986437192b5214596d30fc0b5842fe95dfc0e0ff70687a942953353ca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba", "node_type": "1", "metadata": {"window": "750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. ", "original_text": "20,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "838de44605bc39bd83b49609fda5cd1c54b0311223611ca5703c7be8bab2e12d", "class_name": "RelatedNodeInfo"}}, "hash": "b174a0bb7de5793ad4c19feec9ad2971cf9977a3725d76b8352147ee689783f2", "text": "1,500/-)\nWorld, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba": {"__data__": {"id_": "7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba", "embedding": null, "metadata": {"window": "750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. ", "original_text": "20,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f11b4391-8f99-43e7-9d4f-d576065d986b", "node_type": "1", "metadata": {"window": "11,000/- (Reduce Fee of RS. 750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "original_text": "1,500/-)\nWorld, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "b174a0bb7de5793ad4c19feec9ad2971cf9977a3725d76b8352147ee689783f2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a7bd30e9-b360-435d-af51-e134f71449c6", "node_type": "1", "metadata": {"window": "15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. ", "original_text": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bc3adf454761bb363b4200ceecb426b52e0df52f04aca04aa7286978080f3ea4", "class_name": "RelatedNodeInfo"}}, "hash": "838de44605bc39bd83b49609fda5cd1c54b0311223611ca5703c7be8bab2e12d", "text": "20,000/- (Reduce Fee of RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a7bd30e9-b360-435d-af51-e134f71449c6": {"__data__": {"id_": "a7bd30e9-b360-435d-af51-e134f71449c6", "embedding": null, "metadata": {"window": "15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. ", "original_text": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba", "node_type": "1", "metadata": {"window": "750/-)\nPlatinum, RS. 15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. ", "original_text": "20,000/- (Reduce Fee of RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "838de44605bc39bd83b49609fda5cd1c54b0311223611ca5703c7be8bab2e12d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "492f8d8d-418f-4359-9646-0671ecd81a0e", "node_type": "1", "metadata": {"window": "1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. ", "original_text": "1,400/-\nBlaze/Gold, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "caa414713cb1846dde7975063141b7155e5dc026cdcf747b15dbd286e621edbb", "class_name": "RelatedNodeInfo"}}, "hash": "bc3adf454761bb363b4200ceecb426b52e0df52f04aca04aa7286978080f3ea4", "text": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "492f8d8d-418f-4359-9646-0671ecd81a0e": {"__data__": {"id_": "492f8d8d-418f-4359-9646-0671ecd81a0e", "embedding": null, "metadata": {"window": "1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. ", "original_text": "1,400/-\nBlaze/Gold, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a7bd30e9-b360-435d-af51-e134f71449c6", "node_type": "1", "metadata": {"window": "15,000/- (Reduce Fee of RS. 1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. ", "original_text": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bc3adf454761bb363b4200ceecb426b52e0df52f04aca04aa7286978080f3ea4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5ecabaa0-43d4-4bae-9473-64ce3f957e02", "node_type": "1", "metadata": {"window": "20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. ", "original_text": "1,700/-\nTitanium, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "ee0d4018cbb073715e45b3786cd7d4d9e4efd1e3bce6f28c2668f8d152337efd", "class_name": "RelatedNodeInfo"}}, "hash": "caa414713cb1846dde7975063141b7155e5dc026cdcf747b15dbd286e621edbb", "text": "1,400/-\nBlaze/Gold, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5ecabaa0-43d4-4bae-9473-64ce3f957e02": {"__data__": {"id_": "5ecabaa0-43d4-4bae-9473-64ce3f957e02", "embedding": null, "metadata": {"window": "20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. ", "original_text": "1,700/-\nTitanium, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "492f8d8d-418f-4359-9646-0671ecd81a0e", "node_type": "1", "metadata": {"window": "1,500/-)\nWorld, RS. 20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. ", "original_text": "1,400/-\nBlaze/Gold, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "caa414713cb1846dde7975063141b7155e5dc026cdcf747b15dbd286e621edbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "afa84609-1657-4af3-a6cb-ca9a98fbcfd5", "node_type": "1", "metadata": {"window": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "original_text": "3,500/-\nPlatinum, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6676b8a92d4c87c91e8c7a665e165412c24c1b85a6a78f198ffd6b1b13ea7b57", "class_name": "RelatedNodeInfo"}}, "hash": "ee0d4018cbb073715e45b3786cd7d4d9e4efd1e3bce6f28c2668f8d152337efd", "text": "1,700/-\nTitanium, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "afa84609-1657-4af3-a6cb-ca9a98fbcfd5": {"__data__": {"id_": "afa84609-1657-4af3-a6cb-ca9a98fbcfd5", "embedding": null, "metadata": {"window": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "original_text": "3,500/-\nPlatinum, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5ecabaa0-43d4-4bae-9473-64ce3f957e02", "node_type": "1", "metadata": {"window": "20,000/- (Reduce Fee of RS. 1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. ", "original_text": "1,700/-\nTitanium, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "ee0d4018cbb073715e45b3786cd7d4d9e4efd1e3bce6f28c2668f8d152337efd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e478aa92-7c27-43ad-8a76-5922e080eaca", "node_type": "1", "metadata": {"window": "1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. ", "original_text": "4,000/-\nWorld, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "00ea16a04b2d6e443fc6f398df32cf9b55f18566aeaf5bcdf20d3989151a7fec", "class_name": "RelatedNodeInfo"}}, "hash": "6676b8a92d4c87c91e8c7a665e165412c24c1b85a6a78f198ffd6b1b13ea7b57", "text": "3,500/-\nPlatinum, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e478aa92-7c27-43ad-8a76-5922e080eaca": {"__data__": {"id_": "e478aa92-7c27-43ad-8a76-5922e080eaca", "embedding": null, "metadata": {"window": "1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. ", "original_text": "4,000/-\nWorld, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "afa84609-1657-4af3-a6cb-ca9a98fbcfd5", "node_type": "1", "metadata": {"window": "1,500/-)\nnan, nan\nnan, nan\nSUPPLEMENTARY CREDIT CARD ANNUAL CHARGES, Charges\nVelocity/Standard, RS. 1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "original_text": "3,500/-\nPlatinum, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6676b8a92d4c87c91e8c7a665e165412c24c1b85a6a78f198ffd6b1b13ea7b57", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0a99ea88-32a0-48cb-ba44-0312b17a6952", "node_type": "1", "metadata": {"window": "1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. ", "original_text": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c530ce600a9c745d7207e7827ad4a85a8d890fd846aba0cc08db54c0efcbd4ae", "class_name": "RelatedNodeInfo"}}, "hash": "00ea16a04b2d6e443fc6f398df32cf9b55f18566aeaf5bcdf20d3989151a7fec", "text": "4,000/-\nWorld, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0a99ea88-32a0-48cb-ba44-0312b17a6952": {"__data__": {"id_": "0a99ea88-32a0-48cb-ba44-0312b17a6952", "embedding": null, "metadata": {"window": "1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. ", "original_text": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e478aa92-7c27-43ad-8a76-5922e080eaca", "node_type": "1", "metadata": {"window": "1,400/-\nBlaze/Gold, RS. 1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. ", "original_text": "4,000/-\nWorld, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "00ea16a04b2d6e443fc6f398df32cf9b55f18566aeaf5bcdf20d3989151a7fec", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "435ab031-332b-4ffe-baae-a9fd1f628d42", "node_type": "1", "metadata": {"window": "3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "original_text": "2,000/-\nDial a Draft/Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6f38371e097565e6afb081de110ac367e25605bf478cc77e44a516d9e9e175ab", "class_name": "RelatedNodeInfo"}}, "hash": "c530ce600a9c745d7207e7827ad4a85a8d890fd846aba0cc08db54c0efcbd4ae", "text": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "435ab031-332b-4ffe-baae-a9fd1f628d42": {"__data__": {"id_": "435ab031-332b-4ffe-baae-a9fd1f628d42", "embedding": null, "metadata": {"window": "3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "original_text": "2,000/-\nDial a Draft/Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0a99ea88-32a0-48cb-ba44-0312b17a6952", "node_type": "1", "metadata": {"window": "1,700/-\nTitanium, RS. 3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. ", "original_text": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c530ce600a9c745d7207e7827ad4a85a8d890fd846aba0cc08db54c0efcbd4ae", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c2f69f30-7241-462f-b5ef-5068418d7c21", "node_type": "1", "metadata": {"window": "4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . ", "original_text": "900/-\nCard Replacment Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "60ff5f70c597cc2b4ef4798d48eedc849c815529303c075b63a8e6213f14f13c", "class_name": "RelatedNodeInfo"}}, "hash": "6f38371e097565e6afb081de110ac367e25605bf478cc77e44a516d9e9e175ab", "text": "2,000/-\nDial a Draft/Pay Order, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c2f69f30-7241-462f-b5ef-5068418d7c21": {"__data__": {"id_": "c2f69f30-7241-462f-b5ef-5068418d7c21", "embedding": null, "metadata": {"window": "4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . ", "original_text": "900/-\nCard Replacment Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "435ab031-332b-4ffe-baae-a9fd1f628d42", "node_type": "1", "metadata": {"window": "3,500/-\nPlatinum, RS. 4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "original_text": "2,000/-\nDial a Draft/Pay Order, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "6f38371e097565e6afb081de110ac367e25605bf478cc77e44a516d9e9e175ab", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0fae1471-18b6-4379-b766-596ab1c27a57", "node_type": "1", "metadata": {"window": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. ", "original_text": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "4a22ec1033a5b1febfb9a00c1db8fdbb4243b5920d72888ac1fb6c3cb7c4fff4", "class_name": "RelatedNodeInfo"}}, "hash": "60ff5f70c597cc2b4ef4798d48eedc849c815529303c075b63a8e6213f14f13c", "text": "900/-\nCard Replacment Fee, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0fae1471-18b6-4379-b766-596ab1c27a57": {"__data__": {"id_": "0fae1471-18b6-4379-b766-596ab1c27a57", "embedding": null, "metadata": {"window": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. ", "original_text": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c2f69f30-7241-462f-b5ef-5068418d7c21", "node_type": "1", "metadata": {"window": "4,000/-\nWorld, RS. 8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . ", "original_text": "900/-\nCard Replacment Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "60ff5f70c597cc2b4ef4798d48eedc849c815529303c075b63a8e6213f14f13c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3e01adc3-97c3-41b0-a8a5-7b13e8edccf2", "node_type": "1", "metadata": {"window": "2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "original_text": "800/-\nCard conversion/ Upgrade Fee, RS . ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c5756eea6e3c242566ddd72a75c1c284bef8602d6472aba9ccb014189343ff05", "class_name": "RelatedNodeInfo"}}, "hash": "4a22ec1033a5b1febfb9a00c1db8fdbb4243b5920d72888ac1fb6c3cb7c4fff4", "text": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3e01adc3-97c3-41b0-a8a5-7b13e8edccf2": {"__data__": {"id_": "3e01adc3-97c3-41b0-a8a5-7b13e8edccf2", "embedding": null, "metadata": {"window": "2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "original_text": "800/-\nCard conversion/ Upgrade Fee, RS . ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0fae1471-18b6-4379-b766-596ab1c27a57", "node_type": "1", "metadata": {"window": "8,000/-\nnan, nan\nnan, nan\nOTHER CREDIT CARD CHARGES , Charges\nMusawamah Payment, RS. 2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. ", "original_text": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "4a22ec1033a5b1febfb9a00c1db8fdbb4243b5920d72888ac1fb6c3cb7c4fff4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d", "node_type": "1", "metadata": {"window": "900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "original_text": "900/-\nChip Maintenance Fee (Primary Card), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "91e9f7bf0f4ccdaef68419a1754965d0ff3df4adf132af16d7b6a6dc4e503418", "class_name": "RelatedNodeInfo"}}, "hash": "c5756eea6e3c242566ddd72a75c1c284bef8602d6472aba9ccb014189343ff05", "text": "800/-\nCard conversion/ Upgrade Fee, RS . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d": {"__data__": {"id_": "6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d", "embedding": null, "metadata": {"window": "900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "original_text": "900/-\nChip Maintenance Fee (Primary Card), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3e01adc3-97c3-41b0-a8a5-7b13e8edccf2", "node_type": "1", "metadata": {"window": "2,000/-\nDial a Draft/Pay Order, RS. 900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "original_text": "800/-\nCard conversion/ Upgrade Fee, RS . ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "c5756eea6e3c242566ddd72a75c1c284bef8602d6472aba9ccb014189343ff05", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "744a513e-df03-4eca-8b14-bc342b40e2d8", "node_type": "1", "metadata": {"window": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. ", "original_text": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "55df867e33852037d0222b0f5e79c91434aa2f953a4de856eac2396fbe4292b1", "class_name": "RelatedNodeInfo"}}, "hash": "91e9f7bf0f4ccdaef68419a1754965d0ff3df4adf132af16d7b6a6dc4e503418", "text": "900/-\nChip Maintenance Fee (Primary Card), RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "744a513e-df03-4eca-8b14-bc342b40e2d8": {"__data__": {"id_": "744a513e-df03-4eca-8b14-bc342b40e2d8", "embedding": null, "metadata": {"window": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. ", "original_text": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d", "node_type": "1", "metadata": {"window": "900/-\nCard Replacment Fee, RS. 1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "original_text": "900/-\nChip Maintenance Fee (Primary Card), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "91e9f7bf0f4ccdaef68419a1754965d0ff3df4adf132af16d7b6a6dc4e503418", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "740dbe6e-b64f-4406-b96f-34a96b8b9c44", "node_type": "1", "metadata": {"window": "800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "original_text": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1c92c13adf8ee60b2f3b4dbcde54e794e1cd4eb5579ff259d94ce3961a912ef3", "class_name": "RelatedNodeInfo"}}, "hash": "55df867e33852037d0222b0f5e79c91434aa2f953a4de856eac2396fbe4292b1", "text": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "740dbe6e-b64f-4406-b96f-34a96b8b9c44": {"__data__": {"id_": "740dbe6e-b64f-4406-b96f-34a96b8b9c44", "embedding": null, "metadata": {"window": "800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "original_text": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "744a513e-df03-4eca-8b14-bc342b40e2d8", "node_type": "1", "metadata": {"window": "1,000/-\nInstallment Plan, 2% profit/month charged onbooked amoun\nBalance Transfer, 2% profit/month charged onbooked amoun\nInstallment Plan Processing Charges, RS. 800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. ", "original_text": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "55df867e33852037d0222b0f5e79c91434aa2f953a4de856eac2396fbe4292b1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a7582069-b5a6-406c-8b7f-40d1ecf5030c", "node_type": "1", "metadata": {"window": "900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. ", "original_text": "1,475/-\nMonthly Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "36eabcccfc4730261a3834464863db7a2dce580b82d34fa3ff6c21b0b6d4a7cc", "class_name": "RelatedNodeInfo"}}, "hash": "1c92c13adf8ee60b2f3b4dbcde54e794e1cd4eb5579ff259d94ce3961a912ef3", "text": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a7582069-b5a6-406c-8b7f-40d1ecf5030c": {"__data__": {"id_": "a7582069-b5a6-406c-8b7f-40d1ecf5030c", "embedding": null, "metadata": {"window": "900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. ", "original_text": "1,475/-\nMonthly Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "740dbe6e-b64f-4406-b96f-34a96b8b9c44", "node_type": "1", "metadata": {"window": "800/-\nCard conversion/ Upgrade Fee, RS . 900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "original_text": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "1c92c13adf8ee60b2f3b4dbcde54e794e1cd4eb5579ff259d94ce3961a912ef3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "62903189-ff34-416a-b9e4-67cd91fdd049", "node_type": "1", "metadata": {"window": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "original_text": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "e530da01a39a8d96229f8df9071485fa51ce64ecc2db641fb2bfbb9f6648c676", "class_name": "RelatedNodeInfo"}}, "hash": "36eabcccfc4730261a3834464863db7a2dce580b82d34fa3ff6c21b0b6d4a7cc", "text": "1,475/-\nMonthly Fee, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "62903189-ff34-416a-b9e4-67cd91fdd049": {"__data__": {"id_": "62903189-ff34-416a-b9e4-67cd91fdd049", "embedding": null, "metadata": {"window": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "original_text": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a7582069-b5a6-406c-8b7f-40d1ecf5030c", "node_type": "1", "metadata": {"window": "900/-\nChip Maintenance Fee (Primary Card), RS. 1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. ", "original_text": "1,475/-\nMonthly Fee, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "36eabcccfc4730261a3834464863db7a2dce580b82d34fa3ff6c21b0b6d4a7cc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c7f53ddb-7a11-454f-98b4-a371814b5047", "node_type": "1", "metadata": {"window": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "original_text": "1,150/-\nDebit Card Replacement Charges , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "837c7b3ec74e054b7a0a920609d4213fdd405aca93f215fb8236c909e819924e", "class_name": "RelatedNodeInfo"}}, "hash": "e530da01a39a8d96229f8df9071485fa51ce64ecc2db641fb2bfbb9f6648c676", "text": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c7f53ddb-7a11-454f-98b4-a371814b5047": {"__data__": {"id_": "c7f53ddb-7a11-454f-98b4-a371814b5047", "embedding": null, "metadata": {"window": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "original_text": "1,150/-\nDebit Card Replacement Charges , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "62903189-ff34-416a-b9e4-67cd91fdd049", "node_type": "1", "metadata": {"window": "1,100/-\nChip Maintenance Fee (Supplementary Cards), RS. 700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "original_text": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "e530da01a39a8d96229f8df9071485fa51ce64ecc2db641fb2bfbb9f6648c676", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b77db9bf-e17e-4af2-b241-a9cf6ba1b058", "node_type": "1", "metadata": {"window": "1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. ", "original_text": "700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "3ea84033c06e3586332c375a3e7b55750dc2235a3530e6b9f1f02bb04f800c94", "class_name": "RelatedNodeInfo"}}, "hash": "837c7b3ec74e054b7a0a920609d4213fdd405aca93f215fb8236c909e819924e", "text": "1,150/-\nDebit Card Replacement Charges , RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b77db9bf-e17e-4af2-b241-a9cf6ba1b058": {"__data__": {"id_": "b77db9bf-e17e-4af2-b241-a9cf6ba1b058", "embedding": null, "metadata": {"window": "1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. ", "original_text": "700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c7f53ddb-7a11-454f-98b4-a371814b5047", "node_type": "1", "metadata": {"window": "700/-\nSMS ALERTS, nan\nAnnual Fee, RS. 1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "original_text": "1,150/-\nDebit Card Replacement Charges , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "837c7b3ec74e054b7a0a920609d4213fdd405aca93f215fb8236c909e819924e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a43b2900-7b92-40c3-ae2e-69387f349f26", "node_type": "1", "metadata": {"window": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "3d3db93f80663bfd5d99d6eeb131c7d18aed639a07dfac3d35cd1ba968fc8f16", "class_name": "RelatedNodeInfo"}}, "hash": "3ea84033c06e3586332c375a3e7b55750dc2235a3530e6b9f1f02bb04f800c94", "text": "700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a43b2900-7b92-40c3-ae2e-69387f349f26": {"__data__": {"id_": "a43b2900-7b92-40c3-ae2e-69387f349f26", "embedding": null, "metadata": {"window": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b77db9bf-e17e-4af2-b241-a9cf6ba1b058", "node_type": "1", "metadata": {"window": "1,475/-\nMonthly Fee, RS. 145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. ", "original_text": "700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "3ea84033c06e3586332c375a3e7b55750dc2235a3530e6b9f1f02bb04f800c94", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bfef31a4-bbc8-415a-88a0-d2ef2bffb81e", "node_type": "1", "metadata": {"window": "1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "600/-\nSame day cheque clearing , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "4f51b20e98079ca1c09610520c6204cac73daec7d1d0d4b7bb85fdaf9ff6c4dc", "class_name": "RelatedNodeInfo"}}, "hash": "3d3db93f80663bfd5d99d6eeb131c7d18aed639a07dfac3d35cd1ba968fc8f16", "text": "200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bfef31a4-bbc8-415a-88a0-d2ef2bffb81e": {"__data__": {"id_": "bfef31a4-bbc8-415a-88a0-d2ef2bffb81e", "embedding": null, "metadata": {"window": "1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "600/-\nSame day cheque clearing , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a43b2900-7b92-40c3-ae2e-69387f349f26", "node_type": "1", "metadata": {"window": "145/-\nnan, nan\nnan, nan\nnan, nan\nROSHAN DIGITAL ACCOUNT (RDA), Charges\nCard Issuance Charges, NIL\nDebit card annual charges, RS. 1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "3d3db93f80663bfd5d99d6eeb131c7d18aed639a07dfac3d35cd1ba968fc8f16", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3447dcfb-b79c-450f-8e74-5d4068bd816c", "node_type": "1", "metadata": {"window": "700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "500/- (Flat)", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "5280116def19d1035cd4af7ae0cbea8e41b277f162116ffa37acf3c8336c525a", "class_name": "RelatedNodeInfo"}}, "hash": "4f51b20e98079ca1c09610520c6204cac73daec7d1d0d4b7bb85fdaf9ff6c4dc", "text": "600/-\nSame day cheque clearing , RS. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3447dcfb-b79c-450f-8e74-5d4068bd816c": {"__data__": {"id_": "3447dcfb-b79c-450f-8e74-5d4068bd816c", "embedding": null, "metadata": {"window": "700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "500/- (Flat)", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "5c575801-e7bd-4fb3-b570-1817a2498619", "node_type": "4", "metadata": {"file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bfef31a4-bbc8-415a-88a0-d2ef2bffb81e", "node_type": "1", "metadata": {"window": "1,150/-\nDebit Card Replacement Charges , RS. 700/-\nnan, nan\nCHEQUES, Charges\nCheque Return Charges, RS.600/-\nCash Cheques (over the counter), RS. 200/- (Flat)\nIssuance of Cheque Books, RS 19/- Per Leaf\nStop Payment Charges on Cheque, RS. 600/-\nSame day cheque clearing , RS. 500/- (Flat)", "original_text": "600/-\nSame day cheque clearing , RS. ", "file_name": "Statement_Of_Charges.csv", "doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "hash": "4f51b20e98079ca1c09610520c6204cac73daec7d1d0d4b7bb85fdaf9ff6c4dc", "class_name": "RelatedNodeInfo"}}, "hash": "5280116def19d1035cd4af7ae0cbea8e41b277f162116ffa37acf3c8336c525a", "text": "500/- (Flat)", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4c458e23-0ac8-4058-89bf-3aff07661395": {"__data__": {"id_": "4c458e23-0ac8-4058-89bf-3aff07661395", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Wealth Management, Life Plus Investment Certificate, Liability Product, nan\nnan, Wealth Management, Faysal Islamic Barkat Investment Certificate, nan, nan\nnan, Wealth Management, EFU Tahaffuz Takaful, nan, nan\nnan, Wealth Management, EFU Mustaqbil Takaful, nan, nan\nnan, Wealth Management, iForever12, nan, nan\nnan, Wealth Management, Pak Qatar Muhafiz Takaful, nan, nan\nnan, Wealth Management, IGI Rehnuma Takaful, nan, nan\nnan, Wealth Management, Adamjee Life Takaful Taleem, nan, nan\nnan, Wealth Management, IGI Takaful Shield, nan, nan\nnan, Wealth Management, IGI Takaful Live Strong, nan, nan\nnan, Wealth Management, EFU Roshan Mustaqbil Takaful, nan, nan\nnan, Wealth Management, EFU Noor Takaful, nan, nan\nnan, Wealth Management, Jublee Takaful Health Cover, nan, nan\nnan, Wealth Management, Jublee Takaful Family Health Cover, nan, nan\nnan, Wealth Management, TPL Life Takaful Health - Regular, nan, nan\nnan, Wealth Management, TPL Life Takaful Health - High Limit, nan, nan\nnan, Wealth Management, IGI Takaful Comprehensive Health, nan, nan\nnan, Wealth Management, IGI Takaful Critical Illness Cover, nan, nan\nnan, Wealth Management, Allianz EFU Takaful Health Plus, nan, nan\nnan, Wealth Management, EFU Takaful Manzil Asaan, nan, nan\nnan, Wealth Management, TPL Takaful Safar Asaan, nan, nan\nnan, Wealth Management, Faysal Asset Management Funds, nan, nan\nnan, Wealth Management, CPPI Methodology, nan, nan\nnan, Wealth Management, Shariah Compliant Investment in Pakistan Stock Exchange, nan, nan", "original_text": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Wealth Management, Life Plus Investment Certificate, Liability Product, nan\nnan, Wealth Management, Faysal Islamic Barkat Investment Certificate, nan, nan\nnan, Wealth Management, EFU Tahaffuz Takaful, nan, nan\nnan, Wealth Management, EFU Mustaqbil Takaful, nan, nan\nnan, Wealth Management, iForever12, nan, nan\nnan, Wealth Management, Pak Qatar Muhafiz Takaful, nan, nan\nnan, Wealth Management, IGI Rehnuma Takaful, nan, nan\nnan, Wealth Management, Adamjee Life Takaful Taleem, nan, nan\nnan, Wealth Management, IGI Takaful Shield, nan, nan\nnan, Wealth Management, IGI Takaful Live Strong, nan, nan\nnan, Wealth Management, EFU Roshan Mustaqbil Takaful, nan, nan\nnan, Wealth Management, EFU Noor Takaful, nan, nan\nnan, Wealth Management, Jublee Takaful Health Cover, nan, nan\nnan, Wealth Management, Jublee Takaful Family Health Cover, nan, nan\nnan, Wealth Management, TPL Life Takaful Health - Regular, nan, nan\nnan, Wealth Management, TPL Life Takaful Health - High Limit, nan, nan\nnan, Wealth Management, IGI Takaful Comprehensive Health, nan, nan\nnan, Wealth Management, IGI Takaful Critical Illness Cover, nan, nan\nnan, Wealth Management, Allianz EFU Takaful Health Plus, nan, nan\nnan, Wealth Management, EFU Takaful Manzil Asaan, nan, nan\nnan, Wealth Management, TPL Takaful Safar Asaan, nan, nan\nnan, Wealth Management, Faysal Asset Management Funds, nan, nan\nnan, Wealth Management, CPPI Methodology, nan, nan\nnan, Wealth Management, Shariah Compliant Investment in Pakistan Stock Exchange, nan, nan", "file_name": "Wealth Management.csv", "doc_id": "7f857191-0510-48df-a636-f4f7f8118db2"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "7f857191-0510-48df-a636-f4f7f8118db2", "node_type": "4", "metadata": {"file_name": "Wealth Management.csv", "doc_id": "7f857191-0510-48df-a636-f4f7f8118db2"}, "hash": "4c849476252bbc52c6dd8901090d49718db6bda98a278f334f1a2ba9eb6371b6", "class_name": "RelatedNodeInfo"}}, "hash": "4c849476252bbc52c6dd8901090d49718db6bda98a278f334f1a2ba9eb6371b6", "text": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Wealth Management, Life Plus Investment Certificate, Liability Product, nan\nnan, Wealth Management, Faysal Islamic Barkat Investment Certificate, nan, nan\nnan, Wealth Management, EFU Tahaffuz Takaful, nan, nan\nnan, Wealth Management, EFU Mustaqbil Takaful, nan, nan\nnan, Wealth Management, iForever12, nan, nan\nnan, Wealth Management, Pak Qatar Muhafiz Takaful, nan, nan\nnan, Wealth Management, IGI Rehnuma Takaful, nan, nan\nnan, Wealth Management, Adamjee Life Takaful Taleem, nan, nan\nnan, Wealth Management, IGI Takaful Shield, nan, nan\nnan, Wealth Management, IGI Takaful Live Strong, nan, nan\nnan, Wealth Management, EFU Roshan Mustaqbil Takaful, nan, nan\nnan, Wealth Management, EFU Noor Takaful, nan, nan\nnan, Wealth Management, Jublee Takaful Health Cover, nan, nan\nnan, Wealth Management, Jublee Takaful Family Health Cover, nan, nan\nnan, Wealth Management, TPL Life Takaful Health - Regular, nan, nan\nnan, Wealth Management, TPL Life Takaful Health - High Limit, nan, nan\nnan, Wealth Management, IGI Takaful Comprehensive Health, nan, nan\nnan, Wealth Management, IGI Takaful Critical Illness Cover, nan, nan\nnan, Wealth Management, Allianz EFU Takaful Health Plus, nan, nan\nnan, Wealth Management, EFU Takaful Manzil Asaan, nan, nan\nnan, Wealth Management, TPL Takaful Safar Asaan, nan, nan\nnan, Wealth Management, Faysal Asset Management Funds, nan, nan\nnan, Wealth Management, CPPI Methodology, nan, nan\nnan, Wealth Management, Shariah Compliant Investment in Pakistan Stock Exchange, nan, nan", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b7e2a00d-9837-4537-bb23-2ca10344ac4f": {"__data__": {"id_": "b7e2a00d-9837-4537-bb23-2ca10344ac4f", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n", "original_text": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cc924721-c1c2-48c0-870f-4d3607691585", "node_type": "4", "metadata": {"file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "a24df2ffb97c05059c6984ee655c66200a13708a6814c21dabd01c6c20e4ff56", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a62695a1-9bd7-4ea6-a9d9-3ded0ef31948", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "original_text": "nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "3c069546a5f2868857c02f2879678dc1ebf4eaf14883b69182f1b0dfa41e1965", "class_name": "RelatedNodeInfo"}}, "hash": "762d42777a87cff58db5984c5b5803a866c745fae90e44c0108285a753a200e2", "text": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a62695a1-9bd7-4ea6-a9d9-3ded0ef31948": {"__data__": {"id_": "a62695a1-9bd7-4ea6-a9d9-3ded0ef31948", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "original_text": "nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cc924721-c1c2-48c0-870f-4d3607691585", "node_type": "4", "metadata": {"file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "a24df2ffb97c05059c6984ee655c66200a13708a6814c21dabd01c6c20e4ff56", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b7e2a00d-9837-4537-bb23-2ca10344ac4f", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n", "original_text": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "762d42777a87cff58db5984c5b5803a866c745fae90e44c0108285a753a200e2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "06394856-8211-4dac-a95b-30479062ab38", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "However, key charges will be borne by customer.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "class_name": "RelatedNodeInfo"}}, "hash": "3c069546a5f2868857c02f2879678dc1ebf4eaf14883b69182f1b0dfa41e1965", "text": "nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06394856-8211-4dac-a95b-30479062ab38": {"__data__": {"id_": "06394856-8211-4dac-a95b-30479062ab38", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "However, key charges will be borne by customer.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cc924721-c1c2-48c0-870f-4d3607691585", "node_type": "4", "metadata": {"file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "a24df2ffb97c05059c6984ee655c66200a13708a6814c21dabd01c6c20e4ff56", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a62695a1-9bd7-4ea6-a9d9-3ded0ef31948", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "original_text": "nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. ", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "3c069546a5f2868857c02f2879678dc1ebf4eaf14883b69182f1b0dfa41e1965", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "34850369-81f1-4913-843d-4ba72cb9ddc9", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "3aac8260e4ea9c0cff89d7549a8cf36183cd5e9a88865af534cebf70015634b4", "class_name": "RelatedNodeInfo"}}, "hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "text": "However, key charges will be borne by customer.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "34850369-81f1-4913-843d-4ba72cb9ddc9": {"__data__": {"id_": "34850369-81f1-4913-843d-4ba72cb9ddc9", "embedding": null, "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cc924721-c1c2-48c0-870f-4d3607691585", "node_type": "4", "metadata": {"file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "a24df2ffb97c05059c6984ee655c66200a13708a6814c21dabd01c6c20e4ff56", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "06394856-8211-4dac-a95b-30479062ab38", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "However, key charges will be borne by customer.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4055c94c-1efd-425c-961c-938243925a8c", "node_type": "1", "metadata": {"window": "nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "02cb87b838a51eff4e1816889561bb0f24014b30611f4338fec5b9ff8f12bc8e", "class_name": "RelatedNodeInfo"}}, "hash": "3aac8260e4ea9c0cff89d7549a8cf36183cd5e9a88865af534cebf70015634b4", "text": "nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4055c94c-1efd-425c-961c-938243925a8c": {"__data__": {"id_": "4055c94c-1efd-425c-961c-938243925a8c", "embedding": null, "metadata": {"window": "nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "cc924721-c1c2-48c0-870f-4d3607691585", "node_type": "4", "metadata": {"file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "a24df2ffb97c05059c6984ee655c66200a13708a6814c21dabd01c6c20e4ff56", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "34850369-81f1-4913-843d-4ba72cb9ddc9", "node_type": "1", "metadata": {"window": "nan, nan, nan, nan, nan\nnan, Product, Product, FAQs, Response\nnan, Women Banking, Amal Priority Plus Account, Who is eligible for all discounts & offers tagged with Amal Account?, Primary account holder (female) is eligible for all benefits & features available with Faysal Islami Amal Accounts.\n nan, Women Banking, Amal Priority Plus Account, How many discounted lockers customer can avail?, Amal Women Accountholder can avail multiple lockers and will get 50% discount on each locker first year annual fee regardless of any locker size. However, key charges will be borne by customer.\n nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "original_text": "nan, Women Banking, Amal Priority Plus Account, Are there any charges to avail Amal Debit Card & its features?, Debit Card charges will be applied as per updated Bank's Schedule of Charges\nnan, Women Banking, Amal Women Saving Account, What type of Account is Faysal Islami Amal Women Saving?, A Remunerative Saving Account, based on the Shariah principles of Mudarabah\u2013 Actual profit \u2013 Zakat applicable/ Zakat declaration form Required (CZ50)\nnan, Women Banking, Amal Women Saving Account, What is the applicable profit rate in Amal Saving Account?, For updated profit rates in Faysal Islami Amal Women Saving Account, please download declared rates sheet from Faysal Bank website or contact your branch Relationship Manager.\n", "file_name": "Women Banking.csv", "doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "hash": "3aac8260e4ea9c0cff89d7549a8cf36183cd5e9a88865af534cebf70015634b4", "class_name": "RelatedNodeInfo"}}, "hash": "02cb87b838a51eff4e1816889561bb0f24014b30611f4338fec5b9ff8f12bc8e", "text": "nan, Women Banking, Amal Women Saving Account, Who can open Amal Women Saving Account?, The product is specially designed to facilitate Pakistani female population aged 18 years and above by catering to their transactional, saving & investment needs and to enhance financial inclusivity.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "60d5bba2-aa85-410a-850b-47e4190c0778": {"__data__": {"id_": "60d5bba2-aa85-410a-850b-47e4190c0778", "embedding": null, "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n", "original_text": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "ea0aebee3620e35b127faa0cf259468916b955c491c8a6000afc3554c04b12f4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "original_text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "class_name": "RelatedNodeInfo"}}, "hash": "531d946e76d1debc6bc8e26101ba4ca4f9d81722be157ec0688514b6ed8f3602", "text": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420": {"__data__": {"id_": "8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420", "embedding": null, "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "original_text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "ea0aebee3620e35b127faa0cf259468916b955c491c8a6000afc3554c04b12f4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "60d5bba2-aa85-410a-850b-47e4190c0778", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n", "original_text": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "531d946e76d1debc6bc8e26101ba4ca4f9d81722be157ec0688514b6ed8f3602", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "137f8bc5-afb5-4e40-8913-84aee3e2d5c2", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "This account \nis only offered in PKR. \n \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "d2dc13f86d46aa9e1d266c76458e01931c4291bf109eeb87cc5c4c1cc8bc70e5", "class_name": "RelatedNodeInfo"}}, "hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "137f8bc5-afb5-4e40-8913-84aee3e2d5c2": {"__data__": {"id_": "137f8bc5-afb5-4e40-8913-84aee3e2d5c2", "embedding": null, "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "This account \nis only offered in PKR. \n \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "ea0aebee3620e35b127faa0cf259468916b955c491c8a6000afc3554c04b12f4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "original_text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2196c0f9-a857-47ad-bf41-bddb1b680025", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "e99e938943f92e0b02e08042fd527a8b1ccc547902c590d54f2922bb4d9c10a6", "class_name": "RelatedNodeInfo"}}, "hash": "d2dc13f86d46aa9e1d266c76458e01931c4291bf109eeb87cc5c4c1cc8bc70e5", "text": "This account \nis only offered in PKR. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2196c0f9-a857-47ad-bf41-bddb1b680025": {"__data__": {"id_": "2196c0f9-a857-47ad-bf41-bddb1b680025", "embedding": null, "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "ea0aebee3620e35b127faa0cf259468916b955c491c8a6000afc3554c04b12f4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "137f8bc5-afb5-4e40-8913-84aee3e2d5c2", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "This account \nis only offered in PKR. \n \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "d2dc13f86d46aa9e1d266c76458e01931c4291bf109eeb87cc5c4c1cc8bc70e5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a6baa05b-444e-46a0-b3a0-225ec2215e74", "node_type": "1", "metadata": {"window": "This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "Which product has the best features for women? ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "a8102d13a856b8ac9029dbd9266b4496a314204867dfe6eb674af4600e059ae2", "class_name": "RelatedNodeInfo"}}, "hash": "e99e938943f92e0b02e08042fd527a8b1ccc547902c590d54f2922bb4d9c10a6", "text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a6baa05b-444e-46a0-b3a0-225ec2215e74": {"__data__": {"id_": "a6baa05b-444e-46a0-b3a0-225ec2215e74", "embedding": null, "metadata": {"window": "This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "Which product has the best features for women? ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "ea0aebee3620e35b127faa0cf259468916b955c491c8a6000afc3554c04b12f4", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2196c0f9-a857-47ad-bf41-bddb1b680025", "node_type": "1", "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . Which product has the best features for women? ", "original_text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Ease in Banking Services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Current Remunerative Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Free Cheque Book & Pay Orders \n\uf0b7 Free duplicate Account Statement \n\uf0b7 Free Same day / Intercity Clearing of Cheques \n\uf0b7 Free e -Statements \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banking \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 50% discount on first year Locker Fee \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 Free Takaful Coverage of Critical illnesses (minimum balance requirement \u2013 shared below) \n\uf0b7 Free Life Takaful Coverage offering monthly income (minimum balance requirement \u2013 shared below) \n \n \n \n Values in PKR \nMonthly Average Balance Requirement PKR 100k - 250k PKR 250k - 3M PKR 3M & above \nMonthly Income for 3 years in case of \nHusband / Father Demise 15,000 /- 20,000 /- 25,000 /- \nTakaful Coverage for Critical Illness of \nPrimary Accountholder 250,000 /- 375,00 0/- 500,000 /- \n \nSALES PITCH \nScenario 1: \nCustomer : I am a salaried female individual . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "hash": "e99e938943f92e0b02e08042fd527a8b1ccc547902c590d54f2922bb4d9c10a6", "class_name": "RelatedNodeInfo"}}, "hash": "a8102d13a856b8ac9029dbd9266b4496a314204867dfe6eb674af4600e059ae2", "text": "Which product has the best features for women? ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d941f0e9-e48c-43ff-b739-5a9f59eafcbd": {"__data__": {"id_": "d941f0e9-e48c-43ff-b739-5a9f59eafcbd", "embedding": null, "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "original_text": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ed5611de-350c-4f16-8c64-617c2a4bd876", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "original_text": "Customer: What documents do I have to submit? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "3775435dd19fe160604783533260f6d43a780741034c4fa5b250c097486f85ba", "class_name": "RelatedNodeInfo"}}, "hash": "22c8bee81a6151509c9295facf34163fc38499c2848e513571d4dd6f237e0de4", "text": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ed5611de-350c-4f16-8c64-617c2a4bd876": {"__data__": {"id_": "ed5611de-350c-4f16-8c64-617c2a4bd876", "embedding": null, "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "original_text": "Customer: What documents do I have to submit? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d941f0e9-e48c-43ff-b739-5a9f59eafcbd", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "original_text": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "22c8bee81a6151509c9295facf34163fc38499c2848e513571d4dd6f237e0de4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8eb1beaf-1c9d-4e93-bc84-0894c8df850a", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . ", "original_text": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "5de11c9cafcafb99b868420dca635cc8a0bd80235c12064a21aa1f299b03b53a", "class_name": "RelatedNodeInfo"}}, "hash": "3775435dd19fe160604783533260f6d43a780741034c4fa5b250c097486f85ba", "text": "Customer: What documents do I have to submit? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8eb1beaf-1c9d-4e93-bc84-0894c8df850a": {"__data__": {"id_": "8eb1beaf-1c9d-4e93-bc84-0894c8df850a", "embedding": null, "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . ", "original_text": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ed5611de-350c-4f16-8c64-617c2a4bd876", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "original_text": "Customer: What documents do I have to submit? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "3775435dd19fe160604783533260f6d43a780741034c4fa5b250c097486f85ba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d47cbb17-d384-4b63-91a0-f8bad1e03c4a", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "original_text": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "cff950013e764b78d3bed9e97c25018504f5f491d708d5131632b30c969916d7", "class_name": "RelatedNodeInfo"}}, "hash": "5de11c9cafcafb99b868420dca635cc8a0bd80235c12064a21aa1f299b03b53a", "text": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d47cbb17-d384-4b63-91a0-f8bad1e03c4a": {"__data__": {"id_": "d47cbb17-d384-4b63-91a0-f8bad1e03c4a", "embedding": null, "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "original_text": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8eb1beaf-1c9d-4e93-bc84-0894c8df850a", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . ", "original_text": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "5de11c9cafcafb99b868420dca635cc8a0bd80235c12064a21aa1f299b03b53a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d46b8379-34b0-44bd-9ba6-3987004972a8", "node_type": "1", "metadata": {"window": "Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n", "original_text": "Scenario 2: \nCustomer : I am a self-employed female . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "e523e9182931a4f2e13898c5a377ad3465c46adb3d4d35e09fb37d3954d5c217", "class_name": "RelatedNodeInfo"}}, "hash": "cff950013e764b78d3bed9e97c25018504f5f491d708d5131632b30c969916d7", "text": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d46b8379-34b0-44bd-9ba6-3987004972a8": {"__data__": {"id_": "d46b8379-34b0-44bd-9ba6-3987004972a8", "embedding": null, "metadata": {"window": "Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n", "original_text": "Scenario 2: \nCustomer : I am a self-employed female . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d47cbb17-d384-4b63-91a0-f8bad1e03c4a", "node_type": "1", "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "original_text": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "cff950013e764b78d3bed9e97c25018504f5f491d708d5131632b30c969916d7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cf9673ba-d816-4894-b63c-69ccab4d121c", "node_type": "1", "metadata": {"window": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "original_text": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "e0a7f78833b60c91329ba0ba0a7173d7a447717772538e6a6355fe19ceb09c3a", "class_name": "RelatedNodeInfo"}}, "hash": "e523e9182931a4f2e13898c5a377ad3465c46adb3d4d35e09fb37d3954d5c217", "text": "Scenario 2: \nCustomer : I am a self-employed female . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cf9673ba-d816-4894-b63c-69ccab4d121c": {"__data__": {"id_": "cf9673ba-d816-4894-b63c-69ccab4d121c", "embedding": null, "metadata": {"window": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "original_text": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d46b8379-34b0-44bd-9ba6-3987004972a8", "node_type": "1", "metadata": {"window": "Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n", "original_text": "Scenario 2: \nCustomer : I am a self-employed female . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "e523e9182931a4f2e13898c5a377ad3465c46adb3d4d35e09fb37d3954d5c217", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "58dba977-c5e9-45a1-b8d5-56f8a118b2e2", "node_type": "1", "metadata": {"window": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "original_text": "Which product will get me discounted rates on financing? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "class_name": "RelatedNodeInfo"}}, "hash": "e0a7f78833b60c91329ba0ba0a7173d7a447717772538e6a6355fe19ceb09c3a", "text": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "58dba977-c5e9-45a1-b8d5-56f8a118b2e2": {"__data__": {"id_": "58dba977-c5e9-45a1-b8d5-56f8a118b2e2", "embedding": null, "metadata": {"window": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "original_text": "Which product will get me discounted rates on financing? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cf9673ba-d816-4894-b63c-69ccab4d121c", "node_type": "1", "metadata": {"window": "Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "original_text": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "e0a7f78833b60c91329ba0ba0a7173d7a447717772538e6a6355fe19ceb09c3a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1a062026-0144-43a6-a6ff-2c6566d04572", "node_type": "1", "metadata": {"window": "Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "7d0a86216bb040260aea67fe282298634cf0f9d2774922ea3c8ce444a30fdbc3", "class_name": "RelatedNodeInfo"}}, "hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "text": "Which product will get me discounted rates on financing? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1a062026-0144-43a6-a6ff-2c6566d04572": {"__data__": {"id_": "1a062026-0144-43a6-a6ff-2c6566d04572", "embedding": null, "metadata": {"window": "Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "58dba977-c5e9-45a1-b8d5-56f8a118b2e2", "node_type": "1", "metadata": {"window": "If you want exemption from Zakat please also provide CZ -50 as Amal \nWomen Priority Plu s is a Current Remunerative Account. \n Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "original_text": "Which product will get me discounted rates on financing? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b986eaf4-ad2b-4e10-a62a-1b06f7b6294a", "node_type": "1", "metadata": {"window": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "original_text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "c1a931717ba22f501720f79323b4dc107a7de6eea248015ff77c6767a4874574", "class_name": "RelatedNodeInfo"}}, "hash": "7d0a86216bb040260aea67fe282298634cf0f9d2774922ea3c8ce444a30fdbc3", "text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b986eaf4-ad2b-4e10-a62a-1b06f7b6294a": {"__data__": {"id_": "b986eaf4-ad2b-4e10-a62a-1b06f7b6294a", "embedding": null, "metadata": {"window": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "original_text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1a062026-0144-43a6-a6ff-2c6566d04572", "node_type": "1", "metadata": {"window": "Scenario 2: \nCustomer : I am a self-employed female . I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "7d0a86216bb040260aea67fe282298634cf0f9d2774922ea3c8ce444a30fdbc3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f7c96823-4cec-4a54-87ca-85c1d7825c61", "node_type": "1", "metadata": {"window": "Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n", "original_text": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "1717e99a729fcaf59283a138254182c3bbe26908d46f45d7ad81f747149042c9", "class_name": "RelatedNodeInfo"}}, "hash": "c1a931717ba22f501720f79323b4dc107a7de6eea248015ff77c6767a4874574", "text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f7c96823-4cec-4a54-87ca-85c1d7825c61": {"__data__": {"id_": "f7c96823-4cec-4a54-87ca-85c1d7825c61", "embedding": null, "metadata": {"window": "Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n", "original_text": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b986eaf4-ad2b-4e10-a62a-1b06f7b6294a", "node_type": "1", "metadata": {"window": "I want to open an account so I can avail Consumer Finance products such \nas Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "original_text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "c1a931717ba22f501720f79323b4dc107a7de6eea248015ff77c6767a4874574", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3daebd93-33a0-4b4b-98aa-764e88e86137", "node_type": "1", "metadata": {"window": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "original_text": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "0c76a9b66fd9dbc8ab65925a5e11a690e5560cc075eb44b6291aa79e3e204b64", "class_name": "RelatedNodeInfo"}}, "hash": "1717e99a729fcaf59283a138254182c3bbe26908d46f45d7ad81f747149042c9", "text": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3daebd93-33a0-4b4b-98aa-764e88e86137": {"__data__": {"id_": "3daebd93-33a0-4b4b-98aa-764e88e86137", "embedding": null, "metadata": {"window": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "original_text": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f7c96823-4cec-4a54-87ca-85c1d7825c61", "node_type": "1", "metadata": {"window": "Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n", "original_text": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "1717e99a729fcaf59283a138254182c3bbe26908d46f45d7ad81f747149042c9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05008152-1437-43d6-ad14-61b67efe4965", "node_type": "1", "metadata": {"window": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "original_text": "Is joint account allowed in Amal Women Priority Plus Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "eccd513f9d4ee77252556881a9fe58bce53570ddb4c0a438e931db7e96092b0b", "class_name": "RelatedNodeInfo"}}, "hash": "0c76a9b66fd9dbc8ab65925a5e11a690e5560cc075eb44b6291aa79e3e204b64", "text": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05008152-1437-43d6-ad14-61b67efe4965": {"__data__": {"id_": "05008152-1437-43d6-ad14-61b67efe4965", "embedding": null, "metadata": {"window": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "original_text": "Is joint account allowed in Amal Women Priority Plus Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3daebd93-33a0-4b4b-98aa-764e88e86137", "node_type": "1", "metadata": {"window": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Priority Plus \nAccount is ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits \nand most importantly, discounts on Consumer Finance product s such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "original_text": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "0c76a9b66fd9dbc8ab65925a5e11a690e5560cc075eb44b6291aa79e3e204b64", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ef1e512a-efdc-4d5a-acc7-190087f9d4a5", "node_type": "1", "metadata": {"window": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "original_text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "659f52d5195249ca3f2b9d475e26f9bd371811b6bb3cec2d5a9bf8bdcf62d390", "class_name": "RelatedNodeInfo"}}, "hash": "eccd513f9d4ee77252556881a9fe58bce53570ddb4c0a438e931db7e96092b0b", "text": "Is joint account allowed in Amal Women Priority Plus Account? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ef1e512a-efdc-4d5a-acc7-190087f9d4a5": {"__data__": {"id_": "ef1e512a-efdc-4d5a-acc7-190087f9d4a5", "embedding": null, "metadata": {"window": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "original_text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05008152-1437-43d6-ad14-61b67efe4965", "node_type": "1", "metadata": {"window": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "original_text": "Is joint account allowed in Amal Women Priority Plus Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "eccd513f9d4ee77252556881a9fe58bce53570ddb4c0a438e931db7e96092b0b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9", "node_type": "1", "metadata": {"window": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. ", "original_text": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "be4a8cdfb75ca9e03a819437227d365e3da18f8d04cc7b55ada93eda591b6112", "class_name": "RelatedNodeInfo"}}, "hash": "659f52d5195249ca3f2b9d475e26f9bd371811b6bb3cec2d5a9bf8bdcf62d390", "text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9": {"__data__": {"id_": "975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9", "embedding": null, "metadata": {"window": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. ", "original_text": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ef1e512a-efdc-4d5a-acc7-190087f9d4a5", "node_type": "1", "metadata": {"window": "What type of Account is Faysal Islami Amal Women Priority Plus Account ? \n A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "original_text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "659f52d5195249ca3f2b9d475e26f9bd371811b6bb3cec2d5a9bf8bdcf62d390", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff", "node_type": "1", "metadata": {"window": "Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n", "original_text": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "b25ca008d42cc1a995388a56ea4de5a1b41e07257d3d7ed0d213e39e15365403", "class_name": "RelatedNodeInfo"}}, "hash": "be4a8cdfb75ca9e03a819437227d365e3da18f8d04cc7b55ada93eda591b6112", "text": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff": {"__data__": {"id_": "2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff", "embedding": null, "metadata": {"window": "Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n", "original_text": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9", "node_type": "1", "metadata": {"window": "A Current Remunerative Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat \napplicable/ Zakat declaration form Required (CZ50) \n \n2. Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. ", "original_text": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "be4a8cdfb75ca9e03a819437227d365e3da18f8d04cc7b55ada93eda591b6112", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d0b51c73-8741-49c4-9c00-187b8704b13b", "node_type": "1", "metadata": {"window": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "original_text": "4. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "4d0c661884d7fd24fdc2d49fb8cec579043f521b3d5b8a47bcc70cc7dcd086fc", "class_name": "RelatedNodeInfo"}}, "hash": "b25ca008d42cc1a995388a56ea4de5a1b41e07257d3d7ed0d213e39e15365403", "text": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d0b51c73-8741-49c4-9c00-187b8704b13b": {"__data__": {"id_": "d0b51c73-8741-49c4-9c00-187b8704b13b", "embedding": null, "metadata": {"window": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "original_text": "4. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff", "node_type": "1", "metadata": {"window": "Is joint account allowed in Amal Women Priority Plus Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n", "original_text": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "b25ca008d42cc1a995388a56ea4de5a1b41e07257d3d7ed0d213e39e15365403", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "31db50fb-ab26-4ecd-b326-73f723bc56fa", "node_type": "1", "metadata": {"window": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. ", "original_text": "What is the age limit to avail takaful coverage benefits ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "31ad0b3f13f7d46411815418d15303f09312403fd4d36896f2b5956d2f81ae75", "class_name": "RelatedNodeInfo"}}, "hash": "4d0c661884d7fd24fdc2d49fb8cec579043f521b3d5b8a47bcc70cc7dcd086fc", "text": "4. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "31db50fb-ab26-4ecd-b326-73f723bc56fa": {"__data__": {"id_": "31db50fb-ab26-4ecd-b326-73f723bc56fa", "embedding": null, "metadata": {"window": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. ", "original_text": "What is the age limit to avail takaful coverage benefits ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d0b51c73-8741-49c4-9c00-187b8704b13b", "node_type": "1", "metadata": {"window": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n3. What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "original_text": "4. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "4d0c661884d7fd24fdc2d49fb8cec579043f521b3d5b8a47bcc70cc7dcd086fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaf0380a-cb76-4ef7-9ceb-f93490dd66f0", "node_type": "1", "metadata": {"window": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n", "original_text": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "8d18e33caef2514d6c4774243a1ed7f5f1560ebc92f2552ef841f6b7090d09e7", "class_name": "RelatedNodeInfo"}}, "hash": "31ad0b3f13f7d46411815418d15303f09312403fd4d36896f2b5956d2f81ae75", "text": "What is the age limit to avail takaful coverage benefits ? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aaf0380a-cb76-4ef7-9ceb-f93490dd66f0": {"__data__": {"id_": "aaf0380a-cb76-4ef7-9ceb-f93490dd66f0", "embedding": null, "metadata": {"window": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n", "original_text": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "31db50fb-ab26-4ecd-b326-73f723bc56fa", "node_type": "1", "metadata": {"window": "What are the discounts on availing Consumer Financing Products if you are Amal Account holder? \n Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. ", "original_text": "What is the age limit to avail takaful coverage benefits ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "31ad0b3f13f7d46411815418d15303f09312403fd4d36896f2b5956d2f81ae75", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce535f6a-4c5e-430c-bf77-4bb294978c44", "node_type": "1", "metadata": {"window": "4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "original_text": "5. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "class_name": "RelatedNodeInfo"}}, "hash": "8d18e33caef2514d6c4774243a1ed7f5f1560ebc92f2552ef841f6b7090d09e7", "text": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce535f6a-4c5e-430c-bf77-4bb294978c44": {"__data__": {"id_": "ce535f6a-4c5e-430c-bf77-4bb294978c44", "embedding": null, "metadata": {"window": "4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "original_text": "5. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "aaf0380a-cb76-4ef7-9ceb-f93490dd66f0", "node_type": "1", "metadata": {"window": "Amal accountholders can av ail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n", "original_text": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "8d18e33caef2514d6c4774243a1ed7f5f1560ebc92f2552ef841f6b7090d09e7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3505ea08-0b5e-4ef2-89d9-138108b29d1b", "node_type": "1", "metadata": {"window": "What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n", "original_text": "Who is eligible for all discounts & takaful coverages in Amal Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "53984afe1e92e2434c70d5b5205015c640a8c6a50dcd4fa94fff39659bcd464e", "class_name": "RelatedNodeInfo"}}, "hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "text": "5. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3505ea08-0b5e-4ef2-89d9-138108b29d1b": {"__data__": {"id_": "3505ea08-0b5e-4ef2-89d9-138108b29d1b", "embedding": null, "metadata": {"window": "What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n", "original_text": "Who is eligible for all discounts & takaful coverages in Amal Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce535f6a-4c5e-430c-bf77-4bb294978c44", "node_type": "1", "metadata": {"window": "4. What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "original_text": "5. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "92da1111-5ac9-41a0-bfb7-7627e5cb94a2", "node_type": "1", "metadata": {"window": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "original_text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "86838cb4a60ba359eace83d4dfb0f041939b4e98580fa47a9c9dce01d3e3a127", "class_name": "RelatedNodeInfo"}}, "hash": "53984afe1e92e2434c70d5b5205015c640a8c6a50dcd4fa94fff39659bcd464e", "text": "Who is eligible for all discounts & takaful coverages in Amal Account? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "92da1111-5ac9-41a0-bfb7-7627e5cb94a2": {"__data__": {"id_": "92da1111-5ac9-41a0-bfb7-7627e5cb94a2", "embedding": null, "metadata": {"window": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "original_text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3505ea08-0b5e-4ef2-89d9-138108b29d1b", "node_type": "1", "metadata": {"window": "What is the age limit to avail takaful coverage benefits ? \n Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n", "original_text": "Who is eligible for all discounts & takaful coverages in Amal Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "53984afe1e92e2434c70d5b5205015c640a8c6a50dcd4fa94fff39659bcd464e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7671a97f-fb50-459e-8567-5de47d11d78c", "node_type": "1", "metadata": {"window": "5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "How will an Amal Accountholders make claims for critical illness diagnosis? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "aec2df0d02169339832e2efeeb8f23050c801e7fc1f9cae728523b8b3f27ff87", "class_name": "RelatedNodeInfo"}}, "hash": "86838cb4a60ba359eace83d4dfb0f041939b4e98580fa47a9c9dce01d3e3a127", "text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7671a97f-fb50-459e-8567-5de47d11d78c": {"__data__": {"id_": "7671a97f-fb50-459e-8567-5de47d11d78c", "embedding": null, "metadata": {"window": "5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "How will an Amal Accountholders make claims for critical illness diagnosis? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "92da1111-5ac9-41a0-bfb7-7627e5cb94a2", "node_type": "1", "metadata": {"window": "Age limit to avail takaful benefits is from 18 \u2013 65 years. \n \n 5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "original_text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "86838cb4a60ba359eace83d4dfb0f041939b4e98580fa47a9c9dce01d3e3a127", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6bf2f883-8a7d-437f-b565-cbb99dcd4d5d", "node_type": "1", "metadata": {"window": "Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f506f91fb5068b6e8d332d8ab9a63eca2251706ccbdab6801af42285c530ffc6", "class_name": "RelatedNodeInfo"}}, "hash": "aec2df0d02169339832e2efeeb8f23050c801e7fc1f9cae728523b8b3f27ff87", "text": "How will an Amal Accountholders make claims for critical illness diagnosis? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6bf2f883-8a7d-437f-b565-cbb99dcd4d5d": {"__data__": {"id_": "6bf2f883-8a7d-437f-b565-cbb99dcd4d5d", "embedding": null, "metadata": {"window": "Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7671a97f-fb50-459e-8567-5de47d11d78c", "node_type": "1", "metadata": {"window": "5. Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "How will an Amal Accountholders make claims for critical illness diagnosis? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "aec2df0d02169339832e2efeeb8f23050c801e7fc1f9cae728523b8b3f27ff87", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8e2e9de0-d0e1-4cbe-8680-870337ea05b2", "node_type": "1", "metadata": {"window": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "Upon completion ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "d1c121236d2e1c4e46a5119a9e67e7c5654f9dc4c3b61fa86fb3614373e938b8", "class_name": "RelatedNodeInfo"}}, "hash": "f506f91fb5068b6e8d332d8ab9a63eca2251706ccbdab6801af42285c530ffc6", "text": "On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e2e9de0-d0e1-4cbe-8680-870337ea05b2": {"__data__": {"id_": "8e2e9de0-d0e1-4cbe-8680-870337ea05b2", "embedding": null, "metadata": {"window": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "Upon completion ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "81da0f96-1d36-4a7a-b138-03155529eea6", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6bf2f883-8a7d-437f-b565-cbb99dcd4d5d", "node_type": "1", "metadata": {"window": "Who is eligible for all discounts & takaful coverages in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts \n \n6. How will an Amal Accountholders make claims for critical illness diagnosis? \n On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. Upon completion ", "original_text": "On d iagnosis of critical illness or female specific cancer, Amal Accountholder can visit her parent branch and log \nclaim by filling up claim form available at website & by submitting other documents required. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "hash": "f506f91fb5068b6e8d332d8ab9a63eca2251706ccbdab6801af42285c530ffc6", "class_name": "RelatedNodeInfo"}}, "hash": "d1c121236d2e1c4e46a5119a9e67e7c5654f9dc4c3b61fa86fb3614373e938b8", "text": "Upon completion ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8d821dbe-8006-440f-ac1d-aed49d71b7e7": {"__data__": {"id_": "8d821dbe-8006-440f-ac1d-aed49d71b7e7", "embedding": null, "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n", "original_text": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1d455b77-b680-4baa-a63f-25754458aa49", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4d091294-9816-4cf1-88da-3ce2815a7b4f", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "original_text": "7. ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "564e2de40dae7313cff6dbd9f9b8368126892d9f78b2c9b230fb113da5ff4f13", "class_name": "RelatedNodeInfo"}}, "hash": "ce1c32b862e4391594a95a6bd5eff80bc096769ca7d79cc8f7c3703665eecc2a", "text": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4d091294-9816-4cf1-88da-3ce2815a7b4f": {"__data__": {"id_": "4d091294-9816-4cf1-88da-3ce2815a7b4f", "embedding": null, "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "original_text": "7. ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1d455b77-b680-4baa-a63f-25754458aa49", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8d821dbe-8006-440f-ac1d-aed49d71b7e7", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n", "original_text": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "ce1c32b862e4391594a95a6bd5eff80bc096769ca7d79cc8f7c3703665eecc2a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a7e6270b-630c-4b55-9471-2fc7f0fd33cf", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n", "original_text": "How many discounted lockers a customer can avail? \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "138af98e3dd66eb8df6f919e2dc39df99cd14ca76cdcfa3e9c43e15c86b9cf71", "class_name": "RelatedNodeInfo"}}, "hash": "564e2de40dae7313cff6dbd9f9b8368126892d9f78b2c9b230fb113da5ff4f13", "text": "7. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a7e6270b-630c-4b55-9471-2fc7f0fd33cf": {"__data__": {"id_": "a7e6270b-630c-4b55-9471-2fc7f0fd33cf", "embedding": null, "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n", "original_text": "How many discounted lockers a customer can avail? \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1d455b77-b680-4baa-a63f-25754458aa49", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4d091294-9816-4cf1-88da-3ce2815a7b4f", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "original_text": "7. ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "564e2de40dae7313cff6dbd9f9b8368126892d9f78b2c9b230fb113da5ff4f13", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6b7b868b-34a3-4128-88ba-bf7a9e187833", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "16ba31d81d0bd755dbb60415f579ba797dbcc2cfb5862b43a13663f877dfa179", "class_name": "RelatedNodeInfo"}}, "hash": "138af98e3dd66eb8df6f919e2dc39df99cd14ca76cdcfa3e9c43e15c86b9cf71", "text": "How many discounted lockers a customer can avail? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6b7b868b-34a3-4128-88ba-bf7a9e187833": {"__data__": {"id_": "6b7b868b-34a3-4128-88ba-bf7a9e187833", "embedding": null, "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1d455b77-b680-4baa-a63f-25754458aa49", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a7e6270b-630c-4b55-9471-2fc7f0fd33cf", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n", "original_text": "How many discounted lockers a customer can avail? \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "138af98e3dd66eb8df6f919e2dc39df99cd14ca76cdcfa3e9c43e15c86b9cf71", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e608f640-d4ac-414c-ae16-0967b35ea5a0", "node_type": "1", "metadata": {"window": "7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "However, key charges will be borne by customer. \n \n \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "d7643c53cf2a6639f89176752205bc39d95bc15cdb480e42402f5f4ffa8bb30a", "class_name": "RelatedNodeInfo"}}, "hash": "16ba31d81d0bd755dbb60415f579ba797dbcc2cfb5862b43a13663f877dfa179", "text": "Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e608f640-d4ac-414c-ae16-0967b35ea5a0": {"__data__": {"id_": "e608f640-d4ac-414c-ae16-0967b35ea5a0", "embedding": null, "metadata": {"window": "7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "However, key charges will be borne by customer. \n \n \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1d455b77-b680-4baa-a63f-25754458aa49", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6b7b868b-34a3-4128-88ba-bf7a9e187833", "node_type": "1", "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "16ba31d81d0bd755dbb60415f579ba797dbcc2cfb5862b43a13663f877dfa179", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4098601f-59b5-4f31-875f-801568e1f85c", "node_type": "1", "metadata": {"window": "How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "f2e3c11dd739bcad50db91d051deeeed191eb64dc1fb4ebca51fb3e198ed0292", "class_name": "RelatedNodeInfo"}}, "hash": "d7643c53cf2a6639f89176752205bc39d95bc15cdb480e42402f5f4ffa8bb30a", "text": "However, key charges will be borne by customer. \n \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4098601f-59b5-4f31-875f-801568e1f85c": {"__data__": {"id_": "4098601f-59b5-4f31-875f-801568e1f85c", "embedding": null, "metadata": {"window": "How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "1d455b77-b680-4baa-a63f-25754458aa49", "node_type": "4", "metadata": {"page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e608f640-d4ac-414c-ae16-0967b35ea5a0", "node_type": "1", "metadata": {"window": "7. How many discounted lockers a customer can avail? \n Amal Accountholder s can avail multiple lockers and will get 50% discount on each locker first year annual fee \nregardless of any locker size. However, key charges will be borne by customer. \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "However, key charges will be borne by customer. \n \n \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "hash": "d7643c53cf2a6639f89176752205bc39d95bc15cdb480e42402f5f4ffa8bb30a", "class_name": "RelatedNodeInfo"}}, "hash": "f2e3c11dd739bcad50db91d051deeeed191eb64dc1fb4ebca51fb3e198ed0292", "text": "CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f03b7316-c491-417d-9947-c56b8079ce52": {"__data__": {"id_": "f03b7316-c491-417d-9947-c56b8079ce52", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n", "original_text": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8d615f3f-9349-4d04-a976-9355201c9a87", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "original_text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "class_name": "RelatedNodeInfo"}}, "hash": "8ba1dca60a337ef2e4af6cff05375e33f119583da2b29016524e9e78368384bf", "text": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8d615f3f-9349-4d04-a976-9355201c9a87": {"__data__": {"id_": "8d615f3f-9349-4d04-a976-9355201c9a87", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "original_text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f03b7316-c491-417d-9947-c56b8079ce52", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n", "original_text": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "8ba1dca60a337ef2e4af6cff05375e33f119583da2b29016524e9e78368384bf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e17559ec-1519-44f9-b3a9-007a890a9075", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. ", "original_text": "This account is \nonly offered in PKR. \n \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "17b32fc44d88da8896881a6a86b43271beacaf7d4af834bd1b78dc32e0554bb9", "class_name": "RelatedNodeInfo"}}, "hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e17559ec-1519-44f9-b3a9-007a890a9075": {"__data__": {"id_": "e17559ec-1519-44f9-b3a9-007a890a9075", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. ", "original_text": "This account is \nonly offered in PKR. \n \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8d615f3f-9349-4d04-a976-9355201c9a87", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "original_text": "This product is exclusively designed for the banking needs of Pakistani Women . ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a8ad0b5d-fcc9-4718-bc88-6d82450f9a40", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. ", "original_text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "936d8bda02b92b3455ecddc2f60836989c981fd0df453de816cef369fbb4c392", "class_name": "RelatedNodeInfo"}}, "hash": "17b32fc44d88da8896881a6a86b43271beacaf7d4af834bd1b78dc32e0554bb9", "text": "This account is \nonly offered in PKR. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a8ad0b5d-fcc9-4718-bc88-6d82450f9a40": {"__data__": {"id_": "a8ad0b5d-fcc9-4718-bc88-6d82450f9a40", "embedding": null, "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. ", "original_text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e17559ec-1519-44f9-b3a9-007a890a9075", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. ", "original_text": "This account is \nonly offered in PKR. \n \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "17b32fc44d88da8896881a6a86b43271beacaf7d4af834bd1b78dc32e0554bb9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ea64ef47-05f0-4dbf-aa2d-0bdae5120791", "node_type": "1", "metadata": {"window": "This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n", "original_text": "I want to open an account for my personal savings with return on my \ndeposit. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "73dc92dc0ce2fa5b82acfb70ed04ae580b3c5debc808279e61fa04170790a1de", "class_name": "RelatedNodeInfo"}}, "hash": "936d8bda02b92b3455ecddc2f60836989c981fd0df453de816cef369fbb4c392", "text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ea64ef47-05f0-4dbf-aa2d-0bdae5120791": {"__data__": {"id_": "ea64ef47-05f0-4dbf-aa2d-0bdae5120791", "embedding": null, "metadata": {"window": "This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n", "original_text": "I want to open an account for my personal savings with return on my \ndeposit. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a8ad0b5d-fcc9-4718-bc88-6d82450f9a40", "node_type": "1", "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. ", "original_text": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "936d8bda02b92b3455ecddc2f60836989c981fd0df453de816cef369fbb4c392", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a", "node_type": "1", "metadata": {"window": "This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Furthermore, I also would like an account having additional features. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "f8574a03d53acc47c961efc6477af4125b217b60f8d474a5ce3e7e9677288d8e", "class_name": "RelatedNodeInfo"}}, "hash": "73dc92dc0ce2fa5b82acfb70ed04ae580b3c5debc808279e61fa04170790a1de", "text": "I want to open an account for my personal savings with return on my \ndeposit. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a": {"__data__": {"id_": "c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a", "embedding": null, "metadata": {"window": "This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Furthermore, I also would like an account having additional features. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ea64ef47-05f0-4dbf-aa2d-0bdae5120791", "node_type": "1", "metadata": {"window": "This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n", "original_text": "I want to open an account for my personal savings with return on my \ndeposit. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "73dc92dc0ce2fa5b82acfb70ed04ae580b3c5debc808279e61fa04170790a1de", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fa308006-f3c6-4c00-90f0-529f79e7df06", "node_type": "1", "metadata": {"window": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Which account is ideal for me? \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "10216e5eea5e3ff25e1d399500a2ab87db2dbef963531a3133f30022265b8940", "class_name": "RelatedNodeInfo"}}, "hash": "f8574a03d53acc47c961efc6477af4125b217b60f8d474a5ce3e7e9677288d8e", "text": "Furthermore, I also would like an account having additional features. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fa308006-f3c6-4c00-90f0-529f79e7df06": {"__data__": {"id_": "fa308006-f3c6-4c00-90f0-529f79e7df06", "embedding": null, "metadata": {"window": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Which account is ideal for me? \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a", "node_type": "1", "metadata": {"window": "This account is \nonly offered in PKR. \n \n TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Furthermore, I also would like an account having additional features. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "f8574a03d53acc47c961efc6477af4125b217b60f8d474a5ce3e7e9677288d8e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "00b29cae-c0f2-43ba-b9a4-99401d7a5ff4", "node_type": "1", "metadata": {"window": "I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "fe63d497c0afb9f0b02f31b6608732d0a75e9000f09dd24b245a9cfc48bb2698", "class_name": "RelatedNodeInfo"}}, "hash": "10216e5eea5e3ff25e1d399500a2ab87db2dbef963531a3133f30022265b8940", "text": "Which account is ideal for me? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "00b29cae-c0f2-43ba-b9a4-99401d7a5ff4": {"__data__": {"id_": "00b29cae-c0f2-43ba-b9a4-99401d7a5ff4", "embedding": null, "metadata": {"window": "I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "153be904-4211-446a-bb8c-aa5eeec24f29", "node_type": "4", "metadata": {"page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fa308006-f3c6-4c00-90f0-529f79e7df06", "node_type": "1", "metadata": {"window": "TARGET MARKET \nGender Only Female s \nAge 18yrs+ \nOccupation Salaried / Self -employed / Housewives \nFinancial Goal Returns on deposit along with e ase in banking services \n \nMAIN PRODUCT FEATURES \n\uf0b7 Saving Account based on Mudarabah \n\uf0b7 No minimum balance requirement \n\uf0b7 Debit Card with Exclusive Discounts \n\uf0b7 Free online doctor consultations on TPL Life App \n\uf0b7 Discounts at labs and pharmacies across Pakistan \n\uf0b7 Special Rates & Discounts on Auto, Personal, Home Financing Products and Islami Noor Card \n\uf0b7 Attractive Monthly Halal Profit \n\uf0b7 Monthly calculation and payment of Profit based on monthly average balance \n\uf0b7 Free State -of-the-Art DigiBank Mobile App & Internet Banki ng \n\uf0b7 Online Shopping at Faysal Digi Mall \n\uf0b7 Free e -Statement \n\uf0b7 Dedicated Female Branches in main cities \n\uf0b7 On maintaining a monthly average balance of PKR 50,000/ - or more, customer is eligible for: \no Free Cheque Book & Pay Orders \no Free Duplicate Account statement \n \nSALES PITCH \nScenario 1: \nCustomer : I am a self -employed female. I want to open an account for my personal savings with return on my \ndeposit. Furthermore, I also would like an account having additional features. Which account is ideal for me? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "original_text": "Which account is ideal for me? \n", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "hash": "10216e5eea5e3ff25e1d399500a2ab87db2dbef963531a3133f30022265b8940", "class_name": "RelatedNodeInfo"}}, "hash": "fe63d497c0afb9f0b02f31b6608732d0a75e9000f09dd24b245a9cfc48bb2698", "text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides attractive monthly returns as well as Transactional Convenience, Debit \nCard Discounts, Consumer Finance product discounts, Free Online Doctor Consultation through TPL App and much \nmore. \n \n \n \n ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b620053e-bdac-490b-a68c-ec2658cb24ac": {"__data__": {"id_": "b620053e-bdac-490b-a68c-ec2658cb24ac", "embedding": null, "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n", "original_text": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0b7ac666-75f1-4630-ab3f-d07ed0143aec", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "original_text": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "9afd7ce284207cc8f455df3bbf37ca5622e9cb0598639bd33a063ee0f56f0465", "class_name": "RelatedNodeInfo"}}, "hash": "93439e917b69dcc6aaa1249bcb7c3260c71a1a217c33c389215fa71e2c92273e", "text": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0b7ac666-75f1-4630-ab3f-d07ed0143aec": {"__data__": {"id_": "0b7ac666-75f1-4630-ab3f-d07ed0143aec", "embedding": null, "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "original_text": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b620053e-bdac-490b-a68c-ec2658cb24ac", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n", "original_text": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "93439e917b69dcc6aaa1249bcb7c3260c71a1a217c33c389215fa71e2c92273e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6d312337-d00a-4ca4-876f-713f6b05247d", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "original_text": "Which product will get me discounted rates on financing? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "class_name": "RelatedNodeInfo"}}, "hash": "9afd7ce284207cc8f455df3bbf37ca5622e9cb0598639bd33a063ee0f56f0465", "text": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6d312337-d00a-4ca4-876f-713f6b05247d": {"__data__": {"id_": "6d312337-d00a-4ca4-876f-713f6b05247d", "embedding": null, "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "original_text": "Which product will get me discounted rates on financing? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0b7ac666-75f1-4630-ab3f-d07ed0143aec", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "original_text": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "9afd7ce284207cc8f455df3bbf37ca5622e9cb0598639bd33a063ee0f56f0465", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a7c30c87-d70a-4ee4-9c5c-b123365bf6a3", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "03f7ede2ec99b89c5cadb384645e39bd43e82c763154ed3c512340ed55ccc610", "class_name": "RelatedNodeInfo"}}, "hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "text": "Which product will get me discounted rates on financing? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a7c30c87-d70a-4ee4-9c5c-b123365bf6a3": {"__data__": {"id_": "a7c30c87-d70a-4ee4-9c5c-b123365bf6a3", "embedding": null, "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6d312337-d00a-4ca4-876f-713f6b05247d", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "original_text": "Which product will get me discounted rates on financing? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1eb155f3-0d02-4801-8339-09ebf710968e", "node_type": "1", "metadata": {"window": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "original_text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "16db72fcb098b3d4ba79dd6cb4d97db566f31efcc32188b6b35846ec6a6e08e4", "class_name": "RelatedNodeInfo"}}, "hash": "03f7ede2ec99b89c5cadb384645e39bd43e82c763154ed3c512340ed55ccc610", "text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1eb155f3-0d02-4801-8339-09ebf710968e": {"__data__": {"id_": "1eb155f3-0d02-4801-8339-09ebf710968e", "embedding": null, "metadata": {"window": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "original_text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a7c30c87-d70a-4ee4-9c5c-b123365bf6a3", "node_type": "1", "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n", "original_text": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "03f7ede2ec99b89c5cadb384645e39bd43e82c763154ed3c512340ed55ccc610", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9ce3ae74-8fe8-49d8-8e3e-a484f7079591", "node_type": "1", "metadata": {"window": "Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n", "original_text": "What type of Account is Faysal Islami Amal Women Saving Account ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "460241e6c59b37076826c873d37eddd1f8d51ac35d8f3622bbbbc5bee5d820b2", "class_name": "RelatedNodeInfo"}}, "hash": "16db72fcb098b3d4ba79dd6cb4d97db566f31efcc32188b6b35846ec6a6e08e4", "text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9ce3ae74-8fe8-49d8-8e3e-a484f7079591": {"__data__": {"id_": "9ce3ae74-8fe8-49d8-8e3e-a484f7079591", "embedding": null, "metadata": {"window": "Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n", "original_text": "What type of Account is Faysal Islami Amal Women Saving Account ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1eb155f3-0d02-4801-8339-09ebf710968e", "node_type": "1", "metadata": {"window": "I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "original_text": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "16db72fcb098b3d4ba79dd6cb4d97db566f31efcc32188b6b35846ec6a6e08e4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5126b33b-3dd1-48ba-82e1-000a854537f0", "node_type": "1", "metadata": {"window": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n", "original_text": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "c5a2ca9d84c423802c803cfbf6dca309a76e1a05d12c93923f4ca381e8fbebd5", "class_name": "RelatedNodeInfo"}}, "hash": "460241e6c59b37076826c873d37eddd1f8d51ac35d8f3622bbbbc5bee5d820b2", "text": "What type of Account is Faysal Islami Amal Women Saving Account ? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5126b33b-3dd1-48ba-82e1-000a854537f0": {"__data__": {"id_": "5126b33b-3dd1-48ba-82e1-000a854537f0", "embedding": null, "metadata": {"window": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n", "original_text": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9ce3ae74-8fe8-49d8-8e3e-a484f7079591", "node_type": "1", "metadata": {"window": "Which product will get me discounted rates on financing? \n Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n", "original_text": "What type of Account is Faysal Islami Amal Women Saving Account ? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "460241e6c59b37076826c873d37eddd1f8d51ac35d8f3622bbbbc5bee5d820b2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b774ae07-757e-4b3f-aea2-f92c22054047", "node_type": "1", "metadata": {"window": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. ", "original_text": "What is the profit frequency in Amal Women Saving Accounts? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "6d45ff70e5535c77276b77de9fb70be16e67da00d9fc7252f9a22afc35efc03a", "class_name": "RelatedNodeInfo"}}, "hash": "c5a2ca9d84c423802c803cfbf6dca309a76e1a05d12c93923f4ca381e8fbebd5", "text": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b774ae07-757e-4b3f-aea2-f92c22054047": {"__data__": {"id_": "b774ae07-757e-4b3f-aea2-f92c22054047", "embedding": null, "metadata": {"window": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. ", "original_text": "What is the profit frequency in Amal Women Saving Accounts? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5126b33b-3dd1-48ba-82e1-000a854537f0", "node_type": "1", "metadata": {"window": "Relationship Manager : Faysal Bank values the role played by women in our society and would like to promote \nfinancial independence of wome n. Based on your stated requirements, Faysal Islami Amal Women Saving Account \nis ideal for you as this account provides Transactional Convenience, Debit Card Discounts, Health Benefits and \nmost importantly, dis counts on Consumer Finance products such as Home Financing, Auto Financing, Personal \nFinancing and Noor Cards. (Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n", "original_text": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "c5a2ca9d84c423802c803cfbf6dca309a76e1a05d12c93923f4ca381e8fbebd5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1219ed6d-576f-4c37-8582-df7a7549c609", "node_type": "1", "metadata": {"window": "What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n", "original_text": "Profit is paid monthly and is calculated on month ly average balance. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "452a0a6c735cba670dbed5d21cc404321176ddf9b5ad043651e539ed777da4af", "class_name": "RelatedNodeInfo"}}, "hash": "6d45ff70e5535c77276b77de9fb70be16e67da00d9fc7252f9a22afc35efc03a", "text": "What is the profit frequency in Amal Women Saving Accounts? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1219ed6d-576f-4c37-8582-df7a7549c609": {"__data__": {"id_": "1219ed6d-576f-4c37-8582-df7a7549c609", "embedding": null, "metadata": {"window": "What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n", "original_text": "Profit is paid monthly and is calculated on month ly average balance. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b774ae07-757e-4b3f-aea2-f92c22054047", "node_type": "1", "metadata": {"window": "(Details mentioned in FAQs below) \n \nFREQUENTLY ASKED QUESTIONS (FAQ\u2019s) \n1. What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. ", "original_text": "What is the profit frequency in Amal Women Saving Accounts? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "6d45ff70e5535c77276b77de9fb70be16e67da00d9fc7252f9a22afc35efc03a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "093cf14f-c32c-4ace-ab51-b8ca328182ef", "node_type": "1", "metadata": {"window": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "original_text": "3. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "e25e29070c20d03109d4774eaab9d65b90486df036780105f9f39757997b17a2", "class_name": "RelatedNodeInfo"}}, "hash": "452a0a6c735cba670dbed5d21cc404321176ddf9b5ad043651e539ed777da4af", "text": "Profit is paid monthly and is calculated on month ly average balance. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "093cf14f-c32c-4ace-ab51-b8ca328182ef": {"__data__": {"id_": "093cf14f-c32c-4ace-ab51-b8ca328182ef", "embedding": null, "metadata": {"window": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "original_text": "3. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1219ed6d-576f-4c37-8582-df7a7549c609", "node_type": "1", "metadata": {"window": "What type of Account is Faysal Islami Amal Women Saving Account ? \n It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n", "original_text": "Profit is paid monthly and is calculated on month ly average balance. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "452a0a6c735cba670dbed5d21cc404321176ddf9b5ad043651e539ed777da4af", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c21170d5-17b7-4969-bd35-247e64d7ba80", "node_type": "1", "metadata": {"window": "What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "original_text": "Is joint account allowed in Amal Women Saving Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "643a541609c9eb059561bc84d713325f0b21a7633945579774b2197d7fad0c2e", "class_name": "RelatedNodeInfo"}}, "hash": "e25e29070c20d03109d4774eaab9d65b90486df036780105f9f39757997b17a2", "text": "3. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c21170d5-17b7-4969-bd35-247e64d7ba80": {"__data__": {"id_": "c21170d5-17b7-4969-bd35-247e64d7ba80", "embedding": null, "metadata": {"window": "What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "original_text": "Is joint account allowed in Amal Women Saving Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "093cf14f-c32c-4ace-ab51-b8ca328182ef", "node_type": "1", "metadata": {"window": "It is a Saving Account, based on the Shariah principles of Mudarabah \u2013 Actual profit \u2013 Zakat applicable/ Zakat \ndeclaration form Required (CZ50) \n \n2. What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "original_text": "3. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "e25e29070c20d03109d4774eaab9d65b90486df036780105f9f39757997b17a2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "080c671e-0d41-4cae-b1c6-86eae8b9d766", "node_type": "1", "metadata": {"window": "Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "original_text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "40868d18981f3cffcaae5818405cad07564a7df07efba055461ad1d3e04da900", "class_name": "RelatedNodeInfo"}}, "hash": "643a541609c9eb059561bc84d713325f0b21a7633945579774b2197d7fad0c2e", "text": "Is joint account allowed in Amal Women Saving Account? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "080c671e-0d41-4cae-b1c6-86eae8b9d766": {"__data__": {"id_": "080c671e-0d41-4cae-b1c6-86eae8b9d766", "embedding": null, "metadata": {"window": "Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "original_text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c21170d5-17b7-4969-bd35-247e64d7ba80", "node_type": "1", "metadata": {"window": "What is the profit frequency in Amal Women Saving Accounts? \n Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "original_text": "Is joint account allowed in Amal Women Saving Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "643a541609c9eb059561bc84d713325f0b21a7633945579774b2197d7fad0c2e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "435280bb-4f13-43a0-b85d-84b15bf5c068", "node_type": "1", "metadata": {"window": "3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. ", "original_text": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "af4e05bcc025ef5b61ed61b795bdf4bb3bc0baf2a5a8756e891c221787730419", "class_name": "RelatedNodeInfo"}}, "hash": "40868d18981f3cffcaae5818405cad07564a7df07efba055461ad1d3e04da900", "text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "435280bb-4f13-43a0-b85d-84b15bf5c068": {"__data__": {"id_": "435280bb-4f13-43a0-b85d-84b15bf5c068", "embedding": null, "metadata": {"window": "3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. ", "original_text": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "080c671e-0d41-4cae-b1c6-86eae8b9d766", "node_type": "1", "metadata": {"window": "Profit is paid monthly and is calculated on month ly average balance. \n \n 3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "original_text": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "40868d18981f3cffcaae5818405cad07564a7df07efba055461ad1d3e04da900", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "27daf370-2e50-4ec5-b018-5042c377e47a", "node_type": "1", "metadata": {"window": "Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n", "original_text": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "d738dcddd362f5e1d42683e78d3765711ed8ee8e2cf6cca1acd2530ae9d31f88", "class_name": "RelatedNodeInfo"}}, "hash": "af4e05bcc025ef5b61ed61b795bdf4bb3bc0baf2a5a8756e891c221787730419", "text": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "27daf370-2e50-4ec5-b018-5042c377e47a": {"__data__": {"id_": "27daf370-2e50-4ec5-b018-5042c377e47a", "embedding": null, "metadata": {"window": "Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n", "original_text": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "435280bb-4f13-43a0-b85d-84b15bf5c068", "node_type": "1", "metadata": {"window": "3. Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. ", "original_text": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "af4e05bcc025ef5b61ed61b795bdf4bb3bc0baf2a5a8756e891c221787730419", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4e7f176-38ed-4745-aa11-a269276dcf01", "node_type": "1", "metadata": {"window": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "original_text": "5. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "class_name": "RelatedNodeInfo"}}, "hash": "d738dcddd362f5e1d42683e78d3765711ed8ee8e2cf6cca1acd2530ae9d31f88", "text": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4e7f176-38ed-4745-aa11-a269276dcf01": {"__data__": {"id_": "b4e7f176-38ed-4745-aa11-a269276dcf01", "embedding": null, "metadata": {"window": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "original_text": "5. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "27daf370-2e50-4ec5-b018-5042c377e47a", "node_type": "1", "metadata": {"window": "Is joint account allowed in Amal Women Saving Account? \n Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n", "original_text": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "d738dcddd362f5e1d42683e78d3765711ed8ee8e2cf6cca1acd2530ae9d31f88", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "dc57e358-f234-40b4-9349-9ea661334b0b", "node_type": "1", "metadata": {"window": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Who is eligible for all discounts in Amal Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "85351f711b6b3ea17169930e01acd16ab8246e4f73914366f7a58a9e9d566bff", "class_name": "RelatedNodeInfo"}}, "hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "text": "5. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dc57e358-f234-40b4-9349-9ea661334b0b": {"__data__": {"id_": "dc57e358-f234-40b4-9349-9ea661334b0b", "embedding": null, "metadata": {"window": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Who is eligible for all discounts in Amal Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4e7f176-38ed-4745-aa11-a269276dcf01", "node_type": "1", "metadata": {"window": "Yes, joint account is allowed & secondary account holder can be a male or other; however, primary \naccount holder must be a female \n \n4. What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "original_text": "5. ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f", "node_type": "1", "metadata": {"window": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "b74a2ab3a7f978faab1db7b5e01f00764e57b1499c08427923589537c93d3955", "class_name": "RelatedNodeInfo"}}, "hash": "85351f711b6b3ea17169930e01acd16ab8246e4f73914366f7a58a9e9d566bff", "text": "Who is eligible for all discounts in Amal Account? \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f": {"__data__": {"id_": "e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f", "embedding": null, "metadata": {"window": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "dc57e358-f234-40b4-9349-9ea661334b0b", "node_type": "1", "metadata": {"window": "What are the discounts on availing Consume r Financing Products if you are Amal Account holder? \n Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Who is eligible for all discounts in Amal Account? \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "85351f711b6b3ea17169930e01acd16ab8246e4f73914366f7a58a9e9d566bff", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8a63ca49-7601-4028-98e0-db936c72e1d4", "node_type": "1", "metadata": {"window": "5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "f2e3c11dd739bcad50db91d051deeeed191eb64dc1fb4ebca51fb3e198ed0292", "class_name": "RelatedNodeInfo"}}, "hash": "b74a2ab3a7f978faab1db7b5e01f00764e57b1499c08427923589537c93d3955", "text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8a63ca49-7601-4028-98e0-db936c72e1d4": {"__data__": {"id_": "8a63ca49-7601-4028-98e0-db936c72e1d4", "embedding": null, "metadata": {"window": "5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "4003ee33-0bde-4928-8965-650678d2cc39", "node_type": "4", "metadata": {"page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f", "node_type": "1", "metadata": {"window": "Amal accountholders can avail following discounts and offers on Consumer Financing Products: \nHome Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nAuto Finance \n\uf0b7 50% discount on processing fee \n\uf0b7 Discounted rate s \nIslamic Personal Finance \n\uf0b7 Discounted rate s \nIslami Noor Cards \n\uf0b7 100% waiver on annual fee for the first year (limited time offer) \nCustomer can further contact branch on above updated offers. \n \n 5. Who is eligible for all discounts in Amal Account? \n Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "original_text": "Primary account holder (female) is eligible for all benefits & features available in Amal Accounts . \n \n \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "hash": "b74a2ab3a7f978faab1db7b5e01f00764e57b1499c08427923589537c93d3955", "class_name": "RelatedNodeInfo"}}, "hash": "f2e3c11dd739bcad50db91d051deeeed191eb64dc1fb4ebca51fb3e198ed0292", "text": "CONTACT DETAILS OF PRODUCT STAFF FOR ASSISTANCE \nProduct Contact \nPerson Email ID Contact Number \nFaysal Islami Amal Women Priority \nPlus Account Farah Ali farahali@faysalbank.com IP 5689 \n \nPlease refer to the Latest Declared Rates & Schedule of Charges at our website www.faysalbank.com ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "975b98c1-f5fb-440e-af08-f9aa08df44fa": {"__data__": {"id_": "975b98c1-f5fb-440e-af08-f9aa08df44fa", "embedding": null, "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "original_text": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "918a71e3-8253-46fe-890e-859452d989ad", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "original_text": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "6eac2c7ddb1223e0de79100b4b99b241be5aea12c860c6d38aa5aad2c343a3ca", "class_name": "RelatedNodeInfo"}}, "hash": "ae37ff4591ffd33cc680b9cc4295c9884380ffb9bf5bb467c7aa146aeb5a9ccf", "text": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "918a71e3-8253-46fe-890e-859452d989ad": {"__data__": {"id_": "918a71e3-8253-46fe-890e-859452d989ad", "embedding": null, "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "original_text": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "975b98c1-f5fb-440e-af08-f9aa08df44fa", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "original_text": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "ae37ff4591ffd33cc680b9cc4295c9884380ffb9bf5bb467c7aa146aeb5a9ccf", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "82e6c0d2-aa08-4278-95d4-fcb585bba247", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "original_text": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "9d734bf6c91ca7db0ab501c969ccbabf2e5f5e29b593306fadfee5892f232581", "class_name": "RelatedNodeInfo"}}, "hash": "6eac2c7ddb1223e0de79100b4b99b241be5aea12c860c6d38aa5aad2c343a3ca", "text": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "82e6c0d2-aa08-4278-95d4-fcb585bba247": {"__data__": {"id_": "82e6c0d2-aa08-4278-95d4-fcb585bba247", "embedding": null, "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "original_text": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "918a71e3-8253-46fe-890e-859452d989ad", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "original_text": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "6eac2c7ddb1223e0de79100b4b99b241be5aea12c860c6d38aa5aad2c343a3ca", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "952a15c4-2362-45fb-bb35-a92ad0f7a0b6", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "original_text": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb94a6f5a001783149d098cafca7228b56a84d0327ba4deff41c755e8f936ee0", "class_name": "RelatedNodeInfo"}}, "hash": "9d734bf6c91ca7db0ab501c969ccbabf2e5f5e29b593306fadfee5892f232581", "text": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "952a15c4-2362-45fb-bb35-a92ad0f7a0b6": {"__data__": {"id_": "952a15c4-2362-45fb-bb35-a92ad0f7a0b6", "embedding": null, "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "original_text": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "82e6c0d2-aa08-4278-95d4-fcb585bba247", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "original_text": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "9d734bf6c91ca7db0ab501c969ccbabf2e5f5e29b593306fadfee5892f232581", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "df0ece19-6442-41cc-b638-c84ea3ae7f54", "node_type": "1", "metadata": {"window": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "original_text": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "c95608193bf340c9157b955596f849bd503a89d988eeaa6d128c1ad716fbebaa", "class_name": "RelatedNodeInfo"}}, "hash": "eb94a6f5a001783149d098cafca7228b56a84d0327ba4deff41c755e8f936ee0", "text": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "df0ece19-6442-41cc-b638-c84ea3ae7f54": {"__data__": {"id_": "df0ece19-6442-41cc-b638-c84ea3ae7f54", "embedding": null, "metadata": {"window": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "original_text": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "952a15c4-2362-45fb-bb35-a92ad0f7a0b6", "node_type": "1", "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "original_text": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb94a6f5a001783149d098cafca7228b56a84d0327ba4deff41c755e8f936ee0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "757f1bc0-241f-4d29-8cfd-2c7194da0198", "node_type": "1", "metadata": {"window": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "original_text": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "051505aeab9fbb10c2b9500d4b4c939334ac6a054ceec12dfefcb165924da48b", "class_name": "RelatedNodeInfo"}}, "hash": "c95608193bf340c9157b955596f849bd503a89d988eeaa6d128c1ad716fbebaa", "text": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "757f1bc0-241f-4d29-8cfd-2c7194da0198": {"__data__": {"id_": "757f1bc0-241f-4d29-8cfd-2c7194da0198", "embedding": null, "metadata": {"window": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "original_text": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "df0ece19-6442-41cc-b638-c84ea3ae7f54", "node_type": "1", "metadata": {"window": "Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "original_text": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "c95608193bf340c9157b955596f849bd503a89d988eeaa6d128c1ad716fbebaa", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b932defa-5914-474b-becf-f7c8f1e03f39", "node_type": "1", "metadata": {"window": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "original_text": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "a79bcf8e3896626f9732011b6347266938f7ceba67dfde39820705be3d9070b4", "class_name": "RelatedNodeInfo"}}, "hash": "051505aeab9fbb10c2b9500d4b4c939334ac6a054ceec12dfefcb165924da48b", "text": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b932defa-5914-474b-becf-f7c8f1e03f39": {"__data__": {"id_": "b932defa-5914-474b-becf-f7c8f1e03f39", "embedding": null, "metadata": {"window": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "original_text": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "757f1bc0-241f-4d29-8cfd-2c7194da0198", "node_type": "1", "metadata": {"window": "K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n \uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "original_text": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "051505aeab9fbb10c2b9500d4b4c939334ac6a054ceec12dfefcb165924da48b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95624e44-97cb-4a64-b3f7-57d0000fb7cd", "node_type": "1", "metadata": {"window": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "original_text": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "fb30de7c3d3918cd41a7190f93066f99d1a45e58cf4eae558d80d55fc3989453", "class_name": "RelatedNodeInfo"}}, "hash": "a79bcf8e3896626f9732011b6347266938f7ceba67dfde39820705be3d9070b4", "text": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95624e44-97cb-4a64-b3f7-57d0000fb7cd": {"__data__": {"id_": "95624e44-97cb-4a64-b3f7-57d0000fb7cd", "embedding": null, "metadata": {"window": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "original_text": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b932defa-5914-474b-becf-f7c8f1e03f39", "node_type": "1", "metadata": {"window": "\uf0b7 Key person in demonstration of practices and procedures of North Pole, AUSTOS operations, monitored and \napproved by QCAA. \n \uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "original_text": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "a79bcf8e3896626f9732011b6347266938f7ceba67dfde39820705be3d9070b4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c629cd02-cef2-4db2-8a01-a56d0f817ca8", "node_type": "1", "metadata": {"window": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "original_text": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "65f7a99fb3c6ecd1e356c7d9903304f02472e8f95be32fd64a789da07e1b8d4b", "class_name": "RelatedNodeInfo"}}, "hash": "fb30de7c3d3918cd41a7190f93066f99d1a45e58cf4eae558d80d55fc3989453", "text": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c629cd02-cef2-4db2-8a01-a56d0f817ca8": {"__data__": {"id_": "c629cd02-cef2-4db2-8a01-a56d0f817ca8", "embedding": null, "metadata": {"window": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "original_text": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95624e44-97cb-4a64-b3f7-57d0000fb7cd", "node_type": "1", "metadata": {"window": "\uf0b7 Trained over 50 Flight Dispatchers during On-the-Job Training (OJT) sessions at Pakistan International Airlines. \n \uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "original_text": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "fb30de7c3d3918cd41a7190f93066f99d1a45e58cf4eae558d80d55fc3989453", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "84590474-d93e-4d60-a8b7-ac4a3b599c36", "node_type": "1", "metadata": {"window": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "original_text": "\uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "85a24e20781dd6000ba07a419d4db65a852d45073cb5d291a711216fd1ccde35", "class_name": "RelatedNodeInfo"}}, "hash": "65f7a99fb3c6ecd1e356c7d9903304f02472e8f95be32fd64a789da07e1b8d4b", "text": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "84590474-d93e-4d60-a8b7-ac4a3b599c36": {"__data__": {"id_": "84590474-d93e-4d60-a8b7-ac4a3b599c36", "embedding": null, "metadata": {"window": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "original_text": "\uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c629cd02-cef2-4db2-8a01-a56d0f817ca8", "node_type": "1", "metadata": {"window": "\uf0b7 Involved in the initial setup of Flight Watch activation at QR IOC. \n \uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "original_text": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "65f7a99fb3c6ecd1e356c7d9903304f02472e8f95be32fd64a789da07e1b8d4b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "95f19890-4d40-49d4-9a69-3dd44b4e2bc8", "node_type": "1", "metadata": {"window": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "60b1cea086e866bd3b2aee94fa221ba2c557a2d790d125ebd4e308d07fd586fd", "class_name": "RelatedNodeInfo"}}, "hash": "85a24e20781dd6000ba07a419d4db65a852d45073cb5d291a711216fd1ccde35", "text": "\uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95f19890-4d40-49d4-9a69-3dd44b4e2bc8": {"__data__": {"id_": "95f19890-4d40-49d4-9a69-3dd44b4e2bc8", "embedding": null, "metadata": {"window": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "84590474-d93e-4d60-a8b7-ac4a3b599c36", "node_type": "1", "metadata": {"window": "\uf0b7 Extensive hands \u2013 on experience with LIDO, PPS Flight Planning, LEON (ACMS), Jeppesen E-Link, FlySmart++ and \nBoeing OPT. \n \n W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "original_text": "\uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "85a24e20781dd6000ba07a419d4db65a852d45073cb5d291a711216fd1ccde35", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "610edfe5-bcf5-4ac4-8905-d4b7a66cff6c", "node_type": "1", "metadata": {"window": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "\uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "77f73bc03b007a3a535269fd8713c00936fd0a053e17fad515fcf6e5d46746de", "class_name": "RelatedNodeInfo"}}, "hash": "60b1cea086e866bd3b2aee94fa221ba2c557a2d790d125ebd4e308d07fd586fd", "text": "ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "610edfe5-bcf5-4ac4-8905-d4b7a66cff6c": {"__data__": {"id_": "610edfe5-bcf5-4ac4-8905-d4b7a66cff6c", "embedding": null, "metadata": {"window": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "\uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95f19890-4d40-49d4-9a69-3dd44b4e2bc8", "node_type": "1", "metadata": {"window": "W O R K H I S T O R Y \nSenior Flight Dispatcher 4th February 2022 \u2013 June 27th 2022 \nAerotranscargo (ATC) FZE \nSharjah, United Arab Emirates \n \n\uf0b7 Preparing flight plans with information including maximum allowable take-off and landing weights, weather \nreports, field conditions, METARs, TAFs, NOTAMs, PIREPs, and other information required for the safe completion \nof the flight. \n \uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "60b1cea086e866bd3b2aee94fa221ba2c557a2d790d125ebd4e308d07fd586fd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9eab74ab-c2bd-44ee-9710-44a9567a6271", "node_type": "1", "metadata": {"window": "\uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "\uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "55bbda27ed2346d70f2ba71e324ec86cadd3a3facb16c641cd08a514daeadd7a", "class_name": "RelatedNodeInfo"}}, "hash": "77f73bc03b007a3a535269fd8713c00936fd0a053e17fad515fcf6e5d46746de", "text": "\uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9eab74ab-c2bd-44ee-9710-44a9567a6271": {"__data__": {"id_": "9eab74ab-c2bd-44ee-9710-44a9567a6271", "embedding": null, "metadata": {"window": "\uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "\uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0", "node_type": "4", "metadata": {"page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "610edfe5-bcf5-4ac4-8905-d4b7a66cff6c", "node_type": "1", "metadata": {"window": "\uf0b7 Computing the amount of fuel required, distance of flight, maintenance limitations, weather conditions, and other \nfactors affecting safety of flight using company and the concerned aviation authority established guidelines. \n \uf0b7 Request, management and processing of the overflight and landing permits, as well as the coordination and \narrangement of the ground services for non-scheduled operations \n\uf0b7 Maximize the aircraft optimization in coordination with cargo, maintenance and other stakeholders, reducing the \nimpact of the irregularities, ensure an efficient aircraft utilization on day-to-day basis, and after disruptions, the \nreturn to smooth operations through the recommendation of recovery plans. \n ATPL Theory Instructor (Freelance) 1st April 2019 \u2013 4th February 2022 \n Karachi, Pakistan \n\uf0b7 Developed curriculum and courseware to train and teach students in ATPL Theory subjects . \n \uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n \uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "original_text": "\uf0b7 Perform class room and on the job training for students and conducting regular assessments regarding to their \nperformance. \n", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "hash": "77f73bc03b007a3a535269fd8713c00936fd0a053e17fad515fcf6e5d46746de", "class_name": "RelatedNodeInfo"}}, "hash": "55bbda27ed2346d70f2ba71e324ec86cadd3a3facb16c641cd08a514daeadd7a", "text": "\uf0b7 Developed curriculum and courses to teach the following subjects: \no Air Law \no Airframes and systems \no Aerodynamics o Aircraft, Flight Performance and Flight \nPlanning \no Meteorology \no Avionics ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "81f0a75c-c88f-44e2-95e0-d65c4848b977": {"__data__": {"id_": "81f0a75c-c88f-44e2-95e0-d65c4848b977", "embedding": null, "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "original_text": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44a964ec-315d-44bb-bd42-55c5347f08d8", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "original_text": "Manual flight planning for non-schedule operation. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "3f607fd8d07d7a73eb6c6403dd841cb8b3683fd8622bebef2ed158b7e34718c2", "class_name": "RelatedNodeInfo"}}, "hash": "f08b94c98d812cd1e9b2dbd8fefa2115ae6241e4022e8baafed5062dbccf9a02", "text": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "44a964ec-315d-44bb-bd42-55c5347f08d8": {"__data__": {"id_": "44a964ec-315d-44bb-bd42-55c5347f08d8", "embedding": null, "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "original_text": "Manual flight planning for non-schedule operation. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "81f0a75c-c88f-44e2-95e0-d65c4848b977", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "original_text": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "f08b94c98d812cd1e9b2dbd8fefa2115ae6241e4022e8baafed5062dbccf9a02", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f101b150-eff0-493c-b846-1f1ace4069a4", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "original_text": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "56534adffa3f81492850ae3c9599f0b8631bd233a21a59ced71a081a6fde7987", "class_name": "RelatedNodeInfo"}}, "hash": "3f607fd8d07d7a73eb6c6403dd841cb8b3683fd8622bebef2ed158b7e34718c2", "text": "Manual flight planning for non-schedule operation. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f101b150-eff0-493c-b846-1f1ace4069a4": {"__data__": {"id_": "f101b150-eff0-493c-b846-1f1ace4069a4", "embedding": null, "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "original_text": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44a964ec-315d-44bb-bd42-55c5347f08d8", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "original_text": "Manual flight planning for non-schedule operation. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "3f607fd8d07d7a73eb6c6403dd841cb8b3683fd8622bebef2ed158b7e34718c2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "900f3816-8ab2-4331-b248-dc8dd5e9a630", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "original_text": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "1ba8f8426cd9857f27a2374541bcfeb21835297fab41f261e548708967e6649f", "class_name": "RelatedNodeInfo"}}, "hash": "56534adffa3f81492850ae3c9599f0b8631bd233a21a59ced71a081a6fde7987", "text": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "900f3816-8ab2-4331-b248-dc8dd5e9a630": {"__data__": {"id_": "900f3816-8ab2-4331-b248-dc8dd5e9a630", "embedding": null, "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "original_text": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f101b150-eff0-493c-b846-1f1ace4069a4", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "original_text": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "56534adffa3f81492850ae3c9599f0b8631bd233a21a59ced71a081a6fde7987", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f0be9a22-b0f3-4848-8ddc-5bb833c94000", "node_type": "1", "metadata": {"window": "Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "original_text": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "fe87fc22f8bf235c7a10e46d142fdb11b23980c08fab88e7596869a87d587f70", "class_name": "RelatedNodeInfo"}}, "hash": "1ba8f8426cd9857f27a2374541bcfeb21835297fab41f261e548708967e6649f", "text": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f0be9a22-b0f3-4848-8ddc-5bb833c94000": {"__data__": {"id_": "f0be9a22-b0f3-4848-8ddc-5bb833c94000", "embedding": null, "metadata": {"window": "Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "original_text": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "900f3816-8ab2-4331-b248-dc8dd5e9a630", "node_type": "1", "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "original_text": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "1ba8f8426cd9857f27a2374541bcfeb21835297fab41f261e548708967e6649f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3ab118ef-4d1c-465d-bf95-e7535a93bab5", "node_type": "1", "metadata": {"window": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "original_text": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "8ecdcae50390664ac70b2460b907a81a0152ccd24ed9b495453824f13704814b", "class_name": "RelatedNodeInfo"}}, "hash": "fe87fc22f8bf235c7a10e46d142fdb11b23980c08fab88e7596869a87d587f70", "text": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3ab118ef-4d1c-465d-bf95-e7535a93bab5": {"__data__": {"id_": "3ab118ef-4d1c-465d-bf95-e7535a93bab5", "embedding": null, "metadata": {"window": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "original_text": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f0be9a22-b0f3-4848-8ddc-5bb833c94000", "node_type": "1", "metadata": {"window": "Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "original_text": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "fe87fc22f8bf235c7a10e46d142fdb11b23980c08fab88e7596869a87d587f70", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c", "node_type": "1", "metadata": {"window": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "original_text": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "b67a34b485585da96ca75fb61e9d2d5202fb26efa1271fa35136358f06aebf11", "class_name": "RelatedNodeInfo"}}, "hash": "8ecdcae50390664ac70b2460b907a81a0152ccd24ed9b495453824f13704814b", "text": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c": {"__data__": {"id_": "24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c", "embedding": null, "metadata": {"window": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "original_text": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3ab118ef-4d1c-465d-bf95-e7535a93bab5", "node_type": "1", "metadata": {"window": "\uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n \uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "original_text": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "8ecdcae50390664ac70b2460b907a81a0152ccd24ed9b495453824f13704814b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "491e44e0-9273-41fa-9a98-f139fae02194", "node_type": "1", "metadata": {"window": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "original_text": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "a9255cdc91c194ade0f2f86228fd12c88cdb1624320d2010e96aaa7b45d41dd9", "class_name": "RelatedNodeInfo"}}, "hash": "b67a34b485585da96ca75fb61e9d2d5202fb26efa1271fa35136358f06aebf11", "text": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "491e44e0-9273-41fa-9a98-f139fae02194": {"__data__": {"id_": "491e44e0-9273-41fa-9a98-f139fae02194", "embedding": null, "metadata": {"window": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "original_text": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c", "node_type": "1", "metadata": {"window": "\uf0b7 Preparing flight plans with information including, weather reports, field conditions, METARs, TAFs, NOTAMs, \nPIREPs, and other information required for the safe completion of the flight. \n \uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "original_text": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "b67a34b485585da96ca75fb61e9d2d5202fb26efa1271fa35136358f06aebf11", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "85a4e4cc-1359-4fc2-9a57-7838562ae0ec", "node_type": "1", "metadata": {"window": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "original_text": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "f872271904f9d9a6e48d3ff51ededfe639f04f777089b792d59150b3123fab40", "class_name": "RelatedNodeInfo"}}, "hash": "a9255cdc91c194ade0f2f86228fd12c88cdb1624320d2010e96aaa7b45d41dd9", "text": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "85a4e4cc-1359-4fc2-9a57-7838562ae0ec": {"__data__": {"id_": "85a4e4cc-1359-4fc2-9a57-7838562ae0ec", "embedding": null, "metadata": {"window": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "original_text": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "491e44e0-9273-41fa-9a98-f139fae02194", "node_type": "1", "metadata": {"window": "\uf0b7 To ensure that all ATC flight Plans are filed as per regulatory requirements. Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "original_text": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "a9255cdc91c194ade0f2f86228fd12c88cdb1624320d2010e96aaa7b45d41dd9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08", "node_type": "1", "metadata": {"window": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n", "original_text": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "49efe155120adf4fea720e06304cc2d9f78c87370add6eea0c6bb89412969684", "class_name": "RelatedNodeInfo"}}, "hash": "f872271904f9d9a6e48d3ff51ededfe639f04f777089b792d59150b3123fab40", "text": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08": {"__data__": {"id_": "f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08", "embedding": null, "metadata": {"window": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n", "original_text": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "85a4e4cc-1359-4fc2-9a57-7838562ae0ec", "node_type": "1", "metadata": {"window": "Maintain FIC/ADC or necessary \nclearance Number record of each flight. \n \n Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "original_text": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "f872271904f9d9a6e48d3ff51ededfe639f04f777089b792d59150b3123fab40", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "79356976-33a0-4b67-bf8b-112f4f5c720b", "node_type": "1", "metadata": {"window": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n", "original_text": "\uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "21d001095b1429752a3e2229199ea42415993662418df3eff6f03089b29b3e23", "class_name": "RelatedNodeInfo"}}, "hash": "49efe155120adf4fea720e06304cc2d9f78c87370add6eea0c6bb89412969684", "text": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "79356976-33a0-4b67-bf8b-112f4f5c720b": {"__data__": {"id_": "79356976-33a0-4b67-bf8b-112f4f5c720b", "embedding": null, "metadata": {"window": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n", "original_text": "\uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08", "node_type": "1", "metadata": {"window": "Senior Flight Operations Officer 10th September 1998 \u2013 10th June 2007 \nPakistan International Airlines \nKarachi, Pakistan \n \n\uf0b7 Develop, review, authorize issue and revise as required, the Operational Flight Plan for all scheduled and non-\nscheduled flights, inclusive of training and test flight operations, with regards to Safety, Regulatory, Customer \nService, and Corporate fiscal requirements. \n \uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n", "original_text": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "49efe155120adf4fea720e06304cc2d9f78c87370add6eea0c6bb89412969684", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "497e12bb-2b38-45cb-9144-462b90de74a2", "node_type": "1", "metadata": {"window": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "Airbus and Boeing Family. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "e6729adaf867d29decd2981a7b519cd7fc3488687e205a67a37ef3a0e803b7f5", "class_name": "RelatedNodeInfo"}}, "hash": "21d001095b1429752a3e2229199ea42415993662418df3eff6f03089b29b3e23", "text": "\uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "497e12bb-2b38-45cb-9144-462b90de74a2": {"__data__": {"id_": "497e12bb-2b38-45cb-9144-462b90de74a2", "embedding": null, "metadata": {"window": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "Airbus and Boeing Family. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "79356976-33a0-4b67-bf8b-112f4f5c720b", "node_type": "1", "metadata": {"window": "\uf0b7 Perform a route study on daily basis on critical flights (flight time/payload) by checking multiple flight planning \noptions in order to optimize payload/manage flight time. \n \uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n", "original_text": "\uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "21d001095b1429752a3e2229199ea42415993662418df3eff6f03089b29b3e23", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0c93c214-6572-4382-b091-b7b1362ea757", "node_type": "1", "metadata": {"window": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "\uf0b7 LIDO Flight Planning Course. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5852f3fe77fff0a4d4848f33bea5e7815a70df9168c6925427fb3dbb434b630a", "class_name": "RelatedNodeInfo"}}, "hash": "e6729adaf867d29decd2981a7b519cd7fc3488687e205a67a37ef3a0e803b7f5", "text": "Airbus and Boeing Family. \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0c93c214-6572-4382-b091-b7b1362ea757": {"__data__": {"id_": "0c93c214-6572-4382-b091-b7b1362ea757", "embedding": null, "metadata": {"window": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "\uf0b7 LIDO Flight Planning Course. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "497e12bb-2b38-45cb-9144-462b90de74a2", "node_type": "1", "metadata": {"window": "\uf0b7 Perform crew briefing and de-briefing on weather condition en-route and at destination/alternate and on \navailability/serviceability of Radio Navigation and approach aids. \n \n \n Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "Airbus and Boeing Family. \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "e6729adaf867d29decd2981a7b519cd7fc3488687e205a67a37ef3a0e803b7f5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "732b278e-96a1-48a3-8d1c-8dca151836a7", "node_type": "1", "metadata": {"window": "\uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "269f4ee7d24c9f9d49913166e034cc48fd0e5e01e79e9476e0a4e704efb74ab1", "class_name": "RelatedNodeInfo"}}, "hash": "5852f3fe77fff0a4d4848f33bea5e7815a70df9168c6925427fb3dbb434b630a", "text": "\uf0b7 LIDO Flight Planning Course. \n \n", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "732b278e-96a1-48a3-8d1c-8dca151836a7": {"__data__": {"id_": "732b278e-96a1-48a3-8d1c-8dca151836a7", "embedding": null, "metadata": {"window": "\uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "excluded_embed_metadata_keys": ["doc_id", "window", "original_text"], "excluded_llm_metadata_keys": ["file_name", "doc_id", "page_label", "window", "original_text"], "relationships": {"1": {"node_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba", "node_type": "4", "metadata": {"page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0c93c214-6572-4382-b091-b7b1362ea757", "node_type": "1", "metadata": {"window": "Q U A L I F I C A T I O N S A N D P R O F E S S I O N A L T R A I N I N G \n\uf0b7 Bachelor of Business Administration (BBA) September 1991 \u2013 1995 \n Southern Nazarene University, Oklahoma, United States \n\uf0b7 Flight Operations Officer\u2019s License Jan 1997 \u2013 July 1997 \nPakistan Civil Aviation Authority \nValid Flight Operations/Flight Dispatch Certificate. \n \n \uf0b7 Commercial Pilot\u2019s License Dec 1995 \u2013 June 1996 \nFederal Aviation Administration \nFAA CPL License \n\uf0b7 Various courses for Aircraft Familiarization, Aircraft Performance. Airbus and Boeing Family. \n \uf0b7 LIDO Flight Planning Course. \n \n S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "original_text": "\uf0b7 LIDO Flight Planning Course. \n \n", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "hash": "5852f3fe77fff0a4d4848f33bea5e7815a70df9168c6925427fb3dbb434b630a", "class_name": "RelatedNodeInfo"}}, "hash": "269f4ee7d24c9f9d49913166e034cc48fd0e5e01e79e9476e0a4e704efb74ab1", "text": "S K I L L S \n\uf0b7 Flight Planning ( LIDO, SABRE, JEPPESEN E-LINK, PPS, LEON) \n\uf0b7 Operational Performance ( BOEING OPT, AIRBUS FLYMSART++) \n\uf0b7 Excellent communication skills in English \n\uf0b7 Microsoft Office Suite ( Word/Excel/PowerPoint ) \n ", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"a5afa212-fb26-4956-8698-2369aee5db8f": {"node_ids": ["4aa647b2-2bcd-42d1-9f75-003fb6d00a68", "9bf097dd-1a34-46ef-9b61-aad8eb7eb232", "8b610fd6-7e61-427d-b0fe-7c3bf852962d", "b088df32-24ae-4de7-94fb-93e6b66c6033", "9ed279dc-e305-4d87-887e-3bdadd545cb9", "d4b2b46e-2bb9-4ab4-b573-73838af88192", "832ebd8c-769d-466b-ab60-cd790f8e3550", "2718b9a4-e30f-4e4d-b096-ebdf9efc6f30", "b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549", "875c7c03-52f2-4eb6-9b74-e2fcf954c042", "76f31973-ae09-464e-b789-d664a7b74bac", "74b0560a-29cf-42a6-86c0-55ddb56d5e9c", "4828767f-396a-4ae7-a317-5be800ad8cee", "26a37355-9073-432a-8325-d3733769e4f1", "bc737f1d-a3f6-49f0-aff8-0b83215e4d03"], "metadata": {"page_label": "1", "file_name": "Automated Teller Machines ATM.pdf"}}, "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f": {"node_ids": ["2c308184-183c-4c74-abd2-1a872e1a5983", "1ecbacfc-e440-40f6-8b7c-58e7f4430263"], "metadata": {"page_label": "2", "file_name": "Automated Teller Machines ATM.pdf"}}, "76da21fe-c6fc-42cc-9fbd-e4bd818d4842": {"node_ids": ["a84958e5-bbca-40de-bade-ad5d11320792", "b7b5f86c-8904-4d52-b024-5c04c86780d2", "13494a4c-0324-4416-b03a-337a7dc1c76b", "2740ef47-e9c7-4a5c-b6ce-dfb7e239f274", "f9afaaa7-0487-4426-9f43-3c002db815b4", "88a97d57-ef95-413a-acfc-6b167a994455", "dcbddcca-91d1-48bf-8b3f-b414db2fdfea", "07cd0333-976f-4256-805e-68442c8896f3", "26763fc3-940a-45fe-80eb-2d6911758da9", "c540b737-2679-4aaa-a801-621ca99869fd", "65506434-743b-4efe-a798-570d825d90e5", "2c9b6a28-397f-4def-a2ef-1914363194d1", "9578196c-027d-4d45-9671-7aefcd321d26", "7495270a-b0a9-4bab-96f3-da7e66e1b8f3", "20d2318b-b9ab-41d0-9b97-64c6c3c26aa9", "37b9db24-ddfa-423b-912a-ffc7fbe83847", "ecf9117d-66a4-443b-a571-02efd059827d", "2a50f01a-b552-447a-b93f-c2a113e87bb0", "0acf0dc1-f520-44bc-9dfe-b76af39c3667", "04377eda-8915-49f4-85ec-e06de2108bdc", "23386198-87d1-4f74-9e19-d6c7a18fd1de", "bca1fb8b-a7ef-4687-a85a-f7c4969b8557", "5e90c533-8419-49ad-931b-fcb513eaf397", "10203948-ed29-40f6-821a-6ca03dbe07b6", "9e8d185e-0ca8-47b9-8003-4f30fa88b888", "f6f9497b-06b8-4776-9c86-9818419b778a", "7c3b610d-68da-46f7-9680-67c7cb5f9fe2", "79f9fc25-82b4-445f-9a24-0bce12bdec2d", "e7fed734-eda8-4e9b-8db8-cfeeb93b2714", "6a5e2b7a-5212-4096-8e86-6736641fbd63", "2b5c03fc-4aee-45bc-bf30-f748eb040bba", "ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba", "f994e530-0a41-476b-9f94-279c51e851c3"], "metadata": {"file_name": "Branch Banking.csv"}}, "1c68a449-74fd-4fdc-b341-71fb1ef746a9": {"node_ids": ["e0806a92-067d-4401-afa9-1e143b8ca059", "6abeddd5-771d-45ad-985c-b5039f9682eb", "e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730", "09aba15c-8848-4b1d-80d0-fd51aae4770e", "f2731479-2d76-4f37-85d6-4a1261989587", "7f19d8ea-707a-4e49-8493-7c5dcab97c88", "2f9b4a5d-2e04-4c12-bd0e-803a8f375470", "e3b61425-69ba-4332-a437-303643e57eb5", "1fcfe884-f810-46de-a946-090c3c284ad0", "f5240473-1e46-4222-905c-b6b7cd4646ba", "2c419b82-4f82-496f-b4b4-c76141274585", "9fde07da-cd24-4978-a089-d1c54d402ddc", "1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4", "350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98", "ac1e6e13-f279-4928-a284-0c92b66f09ae", "6f5f6064-4f8e-4caf-899c-fd78a65e466b", "1b82111e-b71b-4b1b-b8cf-a8245da5ccf2", "e8234cac-7fe1-411d-80d9-d1c9990edf1f", "5bda07e1-5114-4f2f-9950-844cbe4dc5ff", "2e331ad1-4c67-4d7e-99f8-90636e796855", "04a79d62-85c8-4e48-9cfe-055bcb7584ee", "2715f5d1-3033-4068-98a5-da3aeaea645c", "5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c", "345e778e-a465-4e56-b4a4-79ec02fc488b", "d991d1dd-c851-4eca-9ed5-0ffb73441b06", "18e0b32b-51f2-4e6e-95ad-3ce5159c82b7", "106db2bc-825f-431d-9559-6e1740e5cd7c", "24100721-d6cd-4dfe-b050-30f50e640ba7", "d7017230-d8ce-4c69-8739-0d8ec4f96977", "5f052ab6-717b-424b-b359-0adeb5aaa264", "83846ec5-23a4-4df8-a302-57557e7892f0", "080d0243-4bdc-4328-b9db-6d34dce3f1f8", "bbf248aa-e49f-4f76-85bc-4c70c513eb71", "c2f3d877-ab48-4be7-8373-d67d10c89cc6", "a2d60074-833a-4715-87ee-0424f4dfb3a4", "579f096b-8450-4b53-b5e0-2bb0cb4a3b8e", "18aef834-588b-46cd-b2ee-7bc4c8e8b7bc", "bf20e12a-1f22-4924-bbb5-e54f0067adb0", "2bd1e53a-5f94-474c-a4c9-a5386d802273", "47f10038-136b-4508-9c04-982528ca1633", "d651c02d-b2cc-421d-8431-3af058a15ee0", "ce817407-6bf2-4805-8293-675ef161ed68", "253ca4b8-5bef-420a-8a05-9974885ce61a", "c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0", "fe88573a-4a61-4bd7-a697-1d9100f205dc", "b309486c-2d0c-4225-91b1-6aa14b17c1e3", "56358d3b-53f0-4f3e-a06e-75c9b4cf1fea", "432d8ff8-91a4-4ef8-9197-69b4ffea9a7e", "77073c38-3d34-4b87-909c-b16142a610f0", "ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b", "71534514-ce51-4219-baa4-3bdc0bf2a7b1", "47308108-c00d-4e76-ac1e-1a751fee7390", "6d85b210-c296-4a51-a994-39ed27d505ff", "1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0", "afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589", "89e19391-1500-4af4-bbac-7611c7416784", "ede91f75-ebe7-4b86-baa4-a6ec6018b538", "f82d22d1-316f-4b18-807a-924dd2fab1ed", "cf0b8afe-a302-4034-a8a2-b14d7a56b635", "66097377-c9fb-48a9-8223-b9325ecbaa25", "1f738b02-b8e1-4de2-b537-96b2f5f6e24c", "bef86ef8-4999-42d5-a507-8d8f37263d9f", "3ca4c88a-c14e-4139-80f9-693e3e64abc8", "42616556-b70f-4166-96d3-b2f2c62e1004", "8530fe78-89ba-45f6-bd75-acaf32293ca2", "7ac37dcd-cac1-48db-aba7-a6a821234745", "82680df8-e08e-4b91-8ddd-6d349e4c5705", "9e8028d9-2d6e-4ad8-9652-401ba37f754d", "034b01ea-42bf-4c6a-971e-5341e4263b77", "3de386a0-191f-4355-b5a6-41c5deb75a50", "ed1d808f-3af2-4494-8d50-bfb5b986fd72", "427083ea-5cd2-4687-884b-e27727bc603b", "d54b86e0-e7ab-4346-800b-d613e9ee8bbc", "c3d09c63-cedd-48e4-abee-e2f4065b24ab", "b14fd0da-92e7-4277-b8fa-7b62160fb6e9", "9257befb-5502-49e9-9a18-64a47c3bd267", "13c267a0-e573-40a6-a7b4-dff10708e83f", "48cf3606-fa3d-4300-beff-779408dd78b4", "c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3", "51055fb7-b0a6-4c54-b5c6-e947bc8662ba", "610ef6e2-f0b5-4cfc-a801-3c0561364c39", "77744220-3445-4612-9666-4925739733eb", "2df03af1-4f12-444e-a6fe-2c4713138d17", "5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9", "b424dd93-ebd0-49de-be22-4de534d02f37", "fc9e04b0-61fb-481c-af29-b5bdb89b0cc6", "089da9b0-2701-48dd-954b-346b7e3bdcc3", "3b9086fa-00f2-410e-a25d-beea94b84611", "5f75a35a-64e3-4504-a024-c2f8e0a71acc", "a4fff09d-9522-4478-9af1-0b504fa4c8ee", "9cbe439e-17ff-4956-9b1b-60467873986a", "7d66f518-2159-49aa-8012-6d62f52ad994", "3ac9c49e-8062-4406-b88b-1d61d2f729a7", "da757de5-538d-4be4-b223-ec8234460492", "a9038689-bae1-476d-8d32-1288a1dec308", "c25cf3d9-8924-473a-ba31-59872ac40309", "afdc513d-db48-4fb2-9c1c-e05ef8fd3547", "679f356b-9f19-48a3-ab30-24ddcfc23d02", "464491e3-600f-4781-87f3-7ca2bf35cd8b", "255f4025-fa4a-4a8e-b28f-c7e0f93e2d71", "12527123-5dd7-4c29-9d0a-fbf1348acb13", "c9ace8c7-095a-4acf-bfd3-31a80840043c", "23ca6a2c-b665-4136-8252-4e3511800cb2", "c1bebdb1-8466-485e-ba32-c7f1768afb8f", "0f73fd11-2c9c-4e6d-b14c-891759bb906c", "928e1aee-8009-4b84-a2d4-04ce40ea2924", "ff509074-e8b6-4882-9f11-c685d7c5e74c", "494d5f9c-6173-419a-a5e7-0718065748c6", "76b88ceb-e411-49de-b15f-6194498df861", "6f7369ec-8025-4ce7-a191-15f01c233655", "c0481400-dd05-4a6a-baac-b40c6e8c1d50", "2411ee9f-d339-4712-b254-e0d58f611514", "275f8771-784e-42c2-92a3-09853c9cbb94", "de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5", "74783f0c-6572-4511-bd4b-cc169d680860", "8be9fef9-0ea5-49c1-80dc-d4479f9d6753", "73b11941-77cb-461f-8f5d-4c402a1e065d", "d51c2989-6c02-4177-90f8-2621eb18f70e", "c8da1a27-b4cb-45f6-ac61-b08a9efcb2db", "d5be91d1-922b-4975-977a-e47014b14ab0", "aff522e6-fc31-44bc-aeaa-eb61b2c22633", "5f89e89d-2ee3-41db-b518-29eaeda2f6e2", "3af9b6ee-156f-449c-81de-fa4f1496ea29", "b0ac8be0-ee3c-4bab-9768-1f8544bc9e81", "8f042385-7543-4e74-a866-258cf19b4985", "20cff46b-ef04-4502-b3ed-ecd2d83b19e9", "b1169cf4-c1f1-43e4-ab90-b3842cccf809", "06aa1f30-1513-480b-9263-22dec17c64c8", "4c798ae4-f706-434e-b4c7-4f9cae0cea02", "30a6702a-c993-44e2-88e3-11b88eb70e4f", "441b10f3-90f4-4e9f-badd-47f978799cbf", "9aa8a627-b1b9-46a5-ae82-401cee0b857b", "d7467e86-7e7e-4647-b607-4a320c55fbc7", "3cc85d16-6d47-4c16-9310-4ec7cdd330bb", "2f97dad4-f806-4f54-b0c3-521606100285", "06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920", "95438b3d-056a-4a38-a4b4-0f62b9c28706", "c009c3e0-b9e5-456c-8895-e19854954589", "f286142e-f068-438c-a8f6-3b7cfdcec0d8", "b8d0019d-a626-4836-b618-610195f860f1", "cb652300-398b-4a0b-b978-2a2d5b581b94", "4b325598-53f1-4cb8-bed2-43472c8c0654", "daa9362f-78aa-4236-89ff-ef883e982820", "732c918a-573a-480e-be35-3b8c19620029", "7a3ce206-22e5-4ee4-90a7-16c2e039a1e9", "c96879c8-0057-4738-80d7-d2849a61dc74", "329da4d1-09d4-4ad3-9d5e-516700e48816", "474c0550-3a2d-4433-ac74-7e0918b96bd6", "e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed", "0f278d1f-c471-4e27-a016-523cca2a2011", "a81bf711-6bbd-4f1f-8bd4-5d561dd651ea", "a8e510c1-f8db-43ce-8163-191ce9dbe0c2", "e1f2c72b-5e53-4f1d-a706-f3247aea5665", "8ecefd84-89cb-494e-8720-1428fd006450", "e8d141bd-554e-4a56-8034-547983674384", "08d037cd-c538-4814-b23b-abec75956eeb", "5ea5119e-072c-43a4-bf0b-a30d69d61614", "276a10c7-9d8e-45e6-9563-696a487df770", "9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa", "02100ff2-5693-4c7b-9a36-4e90e119626b", "9dc3ee47-839d-42ee-b7a5-195d0320473a", "0072630f-2f8e-4e95-b735-d99ca1e24f93", "498651a2-d1ea-49d5-ad79-0d8261d02d66", "de2bb666-475e-4ac7-8a74-f8190c53e3bd", "ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd", "7e0646c7-b68e-422f-b779-676e42230080", "8a445d02-4ef9-4ed7-9932-c4820fad81d0", "5a6c28eb-8379-4b37-b9f6-4accc7efa41e", "14caea37-ee7b-44a5-b512-9faa84a17d91", "c407a988-4ad3-4b26-b7dd-e833f7bea7b5", "8b9cfa6c-826c-48a4-8cea-d672b581651c", "a13dd20c-4dce-4fe9-a341-9a06671c50d3", "4d706a21-ad40-4edd-bfb3-b6501a38e7cf", "f886a060-2717-410a-8357-46cb9b373441", "9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9", "d38f5d4d-1338-480c-9bc3-c46b70aa44ff", "c4496cc5-3ea6-4684-8a1b-7f81111ac418", "c95affc4-9657-4cf0-aa11-160836f45bef", "8791d5f4-87af-470d-a241-7429f1682002", "e3ee8490-d895-44c6-a02d-ec4076b07423", "4a19c04f-6222-4a70-aa78-0a41b117a98a", "1540b900-eb6d-4c64-9b79-3ebdb6382881", "cc928f43-ed37-42ce-ad06-9dc52be29b89", "6fafa2e5-6da6-467a-aea2-453aeafa8bd2", "02e510d2-4417-444e-96d1-708394524711", "1305a9a6-2840-4aff-ab75-7c780061df85", "639ee74a-9c31-422b-8ba8-d3d1fb751011", "69def097-1a2d-4a1d-815a-f6b361d41a1d", "e4152376-509c-43e0-983f-26c4704c661b", "f75e1eb4-8a1d-46bf-90bb-d69a417a7c25", "ba2982cb-95f8-415e-9455-83cd9acd75fe", "e4410aaf-abb2-4a8d-bfea-f187562f2bd0", "5aa1408b-b07a-4aa1-8eea-bf887f5b89a3", "87ed0d05-1512-412f-94e4-bfef37c5b2ba", "fc32e430-36a5-4c79-9322-161ad16c6a38", "56c16b6f-844b-4677-bc92-382812d4a5fd", "5ccd8ee4-69c0-4922-b4a7-d8b2b147be81", "6d861597-3dea-4599-8722-522a85f851bc", "8b76c49d-0855-4757-a225-fb12104684c0", "ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276", "0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8", "05409e7b-3828-4a90-8ac6-5f1a971675e7", "eefa4bc9-4088-4277-a7a6-d02eb7aefa9e", "4d4f1aac-9127-46c4-830b-0a632b765c55", "a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13", "90a20c13-3a5a-4ed8-9534-5f03f7b08c31", "375f3d44-baf3-4e91-aa24-d8bea56ec25a", "706a5c3f-650a-48b0-8f97-31957f713ed4", "999bc920-1006-4ea9-b1a0-7682ac468906", "65d92c4a-5a94-452b-9d27-48ace8068769", "a1b858d8-7454-4d72-937a-89d8b0cd3514", "286565bb-97e6-44ca-bffc-9d76a1504336", "05f08375-ea6d-4f8b-b937-e2c629034c8f", "82e0f725-a5e1-4358-8da3-f78e7eeea1c7", "8b65e748-db71-49e1-ae0d-0d4f5a5532f9", "24def6eb-8e69-4d9b-be39-bcfb7fadd1ad", "3bce3dfa-7f5a-4656-b345-80227c0034b7", "f2da6d62-8c19-450c-a515-996c4d4d47d8", "6462c9de-5859-49b2-99eb-6a15229ab991", "2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d"], "metadata": {"file_name": "Consumer Banking.csv"}}, "41c05572-7ece-41f1-b893-135259e23d45": {"node_ids": ["e1293de6-79f5-4f45-95a9-d5a2127a2f48", "99add419-66f8-4b9a-857e-cdeb93a95324", "8fe72806-0403-44e5-b6f0-72437e6f4297", "beeb7bf2-8f14-4d7d-9176-c905856f6ce6", "8d489c1f-8825-44d5-a921-ce683df31c64", "97ad3b2a-bdb8-44ca-a429-cf323cc18abf", "5b385e2c-697d-4cbf-8c3f-ee5184205330", "b4713258-16c1-4a8c-9668-dbc45ec1e83e", "3d906c4b-09ed-40d3-bc68-c1d0fd769e1a", "75c34d7d-f772-4ab5-950d-6f5cc0ab5900", "70de6503-16bd-4c16-88d2-c2121d55b79b", "f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a", "f980eded-6546-4da7-a746-951dcee06c3d", "fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee", "00165cdc-765b-4ce5-906f-011f68d87357", "116da362-b306-4a01-8b63-9ca90ed88538", "f6720996-0050-41b2-978e-cd5d5b1c7351", "f9f42492-39d1-40bb-8a3e-6d96b10cbda2", "63e6a09a-cce4-4aab-9e46-cae05495b3f3", "c8fcefcc-dfa7-41fc-b950-a2a1e67344b6", "29a716cc-b333-43a9-bd9d-3e739a6a6f38", "785d28c3-cf93-4a75-a189-36ba85697e2a", "bac11d45-c3c0-4ec7-8acf-1688137cf753", "94a125e4-583b-4d09-998c-6f7b4fec2aca", "d8e9d331-3eac-4338-8457-5347bb9d967e", "7a66b2b0-429f-417a-9644-101f2360e5d3", "1365ed79-7541-45ac-885e-f0a8ade8bfa0", "29d68e17-7d77-4fc5-92d5-f86cd162066f", "5d1daf16-012e-48ea-bb39-132e8a0e5cef", "58e345da-8dfc-478c-b6bc-857949b978fd", "d8bf818d-de82-42d4-a0fa-42c52c6c0311", "17effb81-f60e-4b4c-83d5-8c34d5a20596", "c2372b8c-bdaf-4b84-b8bd-0b445d627758", "7a0e1fab-2aa9-452d-92d0-aaabf2b064af", "f3133d5d-c651-4597-a0a7-22d8789e4670", "57891ce2-32a1-44f0-8d7f-24b4f6b2806c", "bf8cab73-f2c8-4398-bdfc-dac7494e9c7e", "8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250", "1f33685d-5e46-4065-bdda-c5d1cf3c836e", "43b9c0f1-8423-4a24-a2fe-4434daf2d75a", "ecc3483f-afda-484e-a108-f46b8a58a386", "085023e5-874a-4200-a199-df73a601a34d", "f0ecf047-f69c-49d7-9482-44369e5d23f5", "63ce688e-1569-449a-accd-6a4f92779bfb", "9eee609a-8e10-4a48-86f1-0e87740ab06a", "f8ca29ac-60fc-47c2-a9ec-8e93bcda0598", "bf305abc-a0fe-4e71-bcd9-7e4f50c89247", "c4765729-02a5-4597-bfcd-57f62dbd8701", "bc230ea6-588e-4927-b6b3-4d3ccda9c6ef", "54645dec-d5cf-4406-8519-2caf793a8d55", "2b7191fc-77a4-43e3-b69e-0120173a1ddf", "b67e39a3-2f5e-4ef1-b716-07d219692b03", "203718f9-f181-48af-843d-32d463f4a412", "9241ed6d-bc04-4f24-a195-3b27ac75f5e7", "08c2f405-2ef7-4881-9909-b74222a3fbcc", "648c429b-f7fe-4458-93cf-66c8c125639f", "0b65d9b4-7d7d-4f18-87fb-15c4543c81d9", "a60b23ce-e7cc-4336-bb9c-debac1700529", "fd20aac4-0a33-43a5-bdd1-16c3a6cc535c", "d46c3f2a-a1b9-4d87-94df-504d42d8f00e", "9f65f32f-f262-4e36-b472-019405837437", "9791c9dc-9a08-4018-b29c-e742960e0141", "753cfa89-dec1-4ecc-8d9a-0ec62f0290f0", "87b726d8-91a8-4d85-854c-a41b637e133c", "a6e7c833-5f83-4448-84c6-4a659c803843", "d98827b7-94a1-4dff-a537-9b45a7f5232b", "e2435de1-589b-4f6d-9c4a-f96e20f058fc", "bbe90f1c-132f-4a56-b528-07d0e66fc914", "66641c23-4def-4b61-8473-67323a1372ed", "e12f8265-0301-4266-a07d-df81002d2328", "d2dfe03a-ca03-41d4-a1ae-3a61424182b3", "99f0352b-240f-44d7-b74d-456e90db0a63", "dc87a74e-5142-4dd3-8797-e3235c902f29", "3a1edd39-c69a-4587-939e-7d7698afa334", "d8f1a304-ede3-426d-ad3e-aafced4c4d11", "c9ffce2f-fdd0-4098-8685-dc9bf0261883", "bc837308-679b-4575-963a-690be2caa634", "e3917d84-eb21-4ed3-a124-b81b57e1b2c2", "16c787d1-e70f-418f-a066-07636d894505", "79410707-4bb9-4fe3-b43b-b5d422f5356a", "1d294765-5d66-44bc-a87f-88e86b3660ce", "724f5ba3-cb28-452e-86f2-095b6d97e3fd", "dc89cc24-1635-4a30-be77-34a1af42904c", "77bd88a1-2bf2-4ec9-bf59-5ef03214e438", "2514b96f-7ceb-4548-b1ca-f2bc400a2407", "714013ce-508a-4178-8b28-151587aa02a7", "177dc299-f92e-4a9d-b070-6a0b8a097a5f", "9c2f8726-de3f-4de1-aaf2-f3f39903a8b1", "e70347c1-8d10-4461-85a7-5be699b2f78d", "4d33a4d4-1ab3-420a-a807-77fbd183e918", "977ac93c-dcd8-4eca-85f8-a2662eb38c6d", "f0a17810-6bc2-46f9-9a41-cd45146387e8", "a389b74d-a6d3-4625-a167-9b1c1ed22b3c", "409cc92e-464c-4dde-975a-d1215fbd5a5c", "30fdebdf-516d-48ff-86cf-bfaab3c3ae6d", "2cd98cee-28f6-4a46-ac1f-119dbfe72253", "64cd13c3-afaf-4ce1-8a02-b01610ff8064", "646a7216-2de6-47cd-9da5-e43fdf153863", "69c1c1b8-81ad-408d-87ec-18378846ffbd", "1bdfa5f3-f984-44e4-b8c7-c7629d835d67", "b4272f78-47c9-4800-b59f-194275c2a3af", "293da2cb-41b3-4fa9-8298-6229a8d6d9f7", "083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d", "7db7d3dc-5887-4e5d-b914-551d2639a122", "4592e907-8966-4da4-b3e1-13dd886fce56", "72aba6b4-1ede-483b-9447-21a27d492e54", "93740952-7ce8-43e3-842e-db8c89ff265e", "3de60956-2b5d-4b72-9e4f-419786ed6de4", "7413076b-ec91-49b9-976d-595bacc50aef", "9eabe137-3529-4319-93a1-8108b32b96f7", "4a93d207-dd6a-4048-92b1-6476196ba807", "f77ebba1-1721-4940-bcb2-f682d8dfab85", "00a1b3d9-a95c-4503-a484-4121b3286bee", "bf9eabd6-e35a-4dbf-a5ad-2c3610508656", "28225bcc-12fb-4d78-8636-f61732c31b5f", "4c63c4a5-b606-4b46-969b-655fc2f2065f", "6e8dc8b3-c7b4-4824-88ee-d2255f344963", "8cd61283-b3a2-4e30-b074-30b96757e3cb"], "metadata": {"file_name": "Digital Banking.csv"}}, "4c21e74f-abb3-40e2-ab1b-45cf05feec19": {"node_ids": ["8f6a2f4c-950b-499e-b593-a9b21954e938", "515b26d0-017d-4538-ace9-2a33e1595b19", "6df56e9b-de15-4bbd-b39d-42da20d77446"], "metadata": {"file_name": "Format1.csv"}}, "c1f43592-4f72-4854-aa31-285488c07f40": {"node_ids": ["9006df30-620e-4f43-92e4-0f5bf11e1d78", "a0b4415b-08fa-41ec-8cfa-cbce73491806", "65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed", "b0fcf8a2-c0e4-4e72-8dbe-5782858352f6", "3da3f87e-c670-44c9-800f-fe5dc2f19cfa", "386766c4-8654-41af-954d-7e93a2167f70", "d39ed896-48a3-4bd6-bf9a-39c4d50de442", "f7867c13-c2ac-42ea-a00e-590713751cd0", "a025dd2a-dacc-42ea-826e-de0c9b49bf18", "70f84f63-3ea0-4143-86c1-2a8c5bba9a73", "9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77", "a2ba7158-23a5-44ea-aaf6-ce6347b3570f", "0a0f1352-52c8-4923-b246-808106ab1e3c", "5cc3c626-e526-4278-8966-67871da58de1", "79cbad7f-ddf4-400b-98b9-1a43457b9305", "6f3c2e7c-a885-40f5-87a7-9510dbdab4a7", "4002194f-58eb-4396-94da-c2989c57c87c", "6be42a29-eb9a-416a-96e6-6ed7a73abe67"], "metadata": {"file_name": "Format2.csv"}}, "a77a586b-cfb1-42ed-81b0-a5ac37e35f58": {"node_ids": ["aef387fe-9f00-493f-9a4a-92ef6b5be95e", "6c82ee55-94f9-4445-bf23-dc7a2a6a395a", "5cfdc72f-44ab-4a3b-a8e2-fe3947539ada", "5eb0aebd-f9ba-4fb3-a265-c59ffab89f24", "1f72320b-2338-447a-b1ce-c42e60aa2f5b", "14783564-1fdf-42e0-afc2-19b1a1032a09", "1bab286e-0147-41ce-a5b4-13096c0434be"], "metadata": {"file_name": "Sheet1.csv"}}, "5c575801-e7bd-4fb3-b570-1817a2498619": {"node_ids": ["e1d9f9dc-f710-4835-8f56-dfe018a8328f", "4decafb4-16ce-4258-894b-dbb78124842b", "5de01344-24ec-426a-a5a1-026ab9866710", "74962a78-60ed-49e9-87f6-3ad2fd44a7dc", "ba0ae850-0e05-483c-b73b-8b42ed1cc248", "4f5ca5b2-fadf-4278-90a2-f1c491d90706", "0c44367d-7b8c-4232-bf4d-f4a7767ee3f1", "3dd392ea-d0bc-465c-9fb9-3de0319811f1", "95f30ff0-f47f-4fd8-81de-99a10686d7d2", "69875d39-0933-4e28-880a-6590ba465c43", "5f769bc4-61f0-4b58-b454-615c82bcb039", "f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0", "737216ed-c07c-4049-9134-a34c8c4cf472", "83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a", "8ee590ef-d228-4220-878f-aaf27b9395c7", "e411e136-0b3b-407e-b265-99c95c3610e3", "73d66fb0-55e2-45d8-af34-16e854471bcf", "441471e5-e26f-4f1b-8711-f8e270e5e9b5", "be4a1dbe-dd07-4047-b022-97e99c40608e", "b20e3641-17a5-42a9-816d-4f5ea34072e9", "abe05f1b-6d22-4868-82f5-af5ed94fcbdf", "eb7a9cac-1943-4f3a-a8a4-528815b4ad66", "36c3e911-07d5-4adc-ade4-4cca3b89784b", "5b8e2202-2300-4cac-905b-7dbe5f4b7e81", "dc897430-daff-4f45-83cc-4a7ef7dbf571", "5b9b0813-fc4c-495d-a4f4-f0f1850f19cc", "a69e5a8c-9a09-4730-8fa2-d6391000283b", "972f85ec-ba34-4b4c-bb75-425f8328a112", "9f2acf9d-de30-4340-a625-4e1de579099e", "5fb7152d-4df6-4a74-9b06-7c4e59635423", "a26a1046-a37f-44b7-b1cc-5b364de92307", "68e69dda-875b-4f88-9894-60387b9ecf39", "91f0d751-73bf-406d-9f3b-5bb88615b284", "1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9", "790d77c9-1cbc-4bff-b693-ef2e6deece32", "97017fc9-883f-4e0a-bd1d-3201ba26743b", "c7d60546-fa1f-43ef-99e2-f47a9aa6a194", "cbf79179-1f64-45f2-b817-d1538f8116a5", "63b14d03-f30c-4ae7-93d3-b097f26f5df3", "1e6848cd-69ee-4e1f-8b8c-f5551e92d648", "4292a0a3-8108-44f3-8523-728b66cfb241", "edbf2b56-ad60-4f47-991d-ab4fe98381f7", "5343cc47-3286-4789-bac0-8d2742697b44", "8ef537eb-034e-41cc-9cd8-9f2e88001192", "2bf668cb-3cea-46b3-a5e7-b28e5319bf04", "38d2429d-16cb-46aa-9f45-a035dc6243a8", "ddf95a47-4064-42f5-bb8e-29f3876bdeee", "8e5676d3-a029-477a-8141-54a150162ad5", "f11b4391-8f99-43e7-9d4f-d576065d986b", "7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba", "a7bd30e9-b360-435d-af51-e134f71449c6", "492f8d8d-418f-4359-9646-0671ecd81a0e", "5ecabaa0-43d4-4bae-9473-64ce3f957e02", "afa84609-1657-4af3-a6cb-ca9a98fbcfd5", "e478aa92-7c27-43ad-8a76-5922e080eaca", "0a99ea88-32a0-48cb-ba44-0312b17a6952", "435ab031-332b-4ffe-baae-a9fd1f628d42", "c2f69f30-7241-462f-b5ef-5068418d7c21", "0fae1471-18b6-4379-b766-596ab1c27a57", "3e01adc3-97c3-41b0-a8a5-7b13e8edccf2", "6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d", "744a513e-df03-4eca-8b14-bc342b40e2d8", "740dbe6e-b64f-4406-b96f-34a96b8b9c44", "a7582069-b5a6-406c-8b7f-40d1ecf5030c", "62903189-ff34-416a-b9e4-67cd91fdd049", "c7f53ddb-7a11-454f-98b4-a371814b5047", "b77db9bf-e17e-4af2-b241-a9cf6ba1b058", "a43b2900-7b92-40c3-ae2e-69387f349f26", "bfef31a4-bbc8-415a-88a0-d2ef2bffb81e", "3447dcfb-b79c-450f-8e74-5d4068bd816c"], "metadata": {"file_name": "Statement_Of_Charges.csv"}}, "7f857191-0510-48df-a636-f4f7f8118db2": {"node_ids": ["4c458e23-0ac8-4058-89bf-3aff07661395"], "metadata": {"file_name": "Wealth Management.csv"}}, "cc924721-c1c2-48c0-870f-4d3607691585": {"node_ids": ["b7e2a00d-9837-4537-bb23-2ca10344ac4f", "a62695a1-9bd7-4ea6-a9d9-3ded0ef31948", "06394856-8211-4dac-a95b-30479062ab38", "34850369-81f1-4913-843d-4ba72cb9ddc9", "4055c94c-1efd-425c-961c-938243925a8c"], "metadata": {"file_name": "Women Banking.csv"}}, "d1dfdbf2-5646-4c79-abef-bba1b8b98084": {"node_ids": ["60d5bba2-aa85-410a-850b-47e4190c0778", "8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420", "137f8bc5-afb5-4e40-8913-84aee3e2d5c2", "2196c0f9-a857-47ad-bf41-bddb1b680025", "a6baa05b-444e-46a0-b3a0-225ec2215e74"], "metadata": {"window": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account \nis only offered in PKR. \n \n", "original_text": " \nPage 1 of 3 \n \nFAYSAL ISLAMI \nAMAL WOMEN PRIORITY PLUS ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Priority Plus Account is a Shariah Compliant account aimed at providing today\u2019s women \nwith financial liberty. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}}, "81da0f96-1d36-4a7a-b138-03155529eea6": {"node_ids": ["d941f0e9-e48c-43ff-b739-5a9f59eafcbd", "ed5611de-350c-4f16-8c64-617c2a4bd876", "8eb1beaf-1c9d-4e93-bc84-0894c8df850a", "d47cbb17-d384-4b63-91a0-f8bad1e03c4a", "d46b8379-34b0-44bd-9ba6-3987004972a8", "cf9673ba-d816-4894-b63c-69ccab4d121c", "58dba977-c5e9-45a1-b8d5-56f8a118b2e2", "1a062026-0144-43a6-a6ff-2c6566d04572", "b986eaf4-ad2b-4e10-a62a-1b06f7b6294a", "f7c96823-4cec-4a54-87ca-85c1d7825c61", "3daebd93-33a0-4b4b-98aa-764e88e86137", "05008152-1437-43d6-ad14-61b67efe4965", "ef1e512a-efdc-4d5a-acc7-190087f9d4a5", "975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9", "2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff", "d0b51c73-8741-49c4-9c00-187b8704b13b", "31db50fb-ab26-4ecd-b326-73f723bc56fa", "aaf0380a-cb76-4ef7-9ceb-f93490dd66f0", "ce535f6a-4c5e-430c-bf77-4bb294978c44", "3505ea08-0b5e-4ef2-89d9-138108b29d1b", "92da1111-5ac9-41a0-bfb7-7627e5cb94a2", "7671a97f-fb50-459e-8567-5de47d11d78c", "6bf2f883-8a7d-437f-b565-cbb99dcd4d5d", "8e2e9de0-d0e1-4cbe-8680-870337ea05b2"], "metadata": {"window": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n Customer: What documents do I have to submit? \n Relationship Manager : Ma\u2019am you j ust provide your CNIC copy and your husband\u2019s salary slip/income proof along \nwith a signed Housewife Declaration Form . ", "original_text": " \nPage 2 of 3 \n \nRelationship Manager : Amal Women Priority Plus Accounts is ideal for you as this account offer s a range of \nexclusive features like Lifestyle & Dining discounts, Free Health & Family Takaful Coverages, Free Online Doctor \nConsultations and Discounts at Labs & Pharmacies across Pakistan and many more transactional benefits . \n", "page_label": "2", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}}, "1d455b77-b680-4baa-a63f-25754458aa49": {"node_ids": ["8d821dbe-8006-440f-ac1d-aed49d71b7e7", "4d091294-9816-4cf1-88da-3ce2815a7b4f", "a7e6270b-630c-4b55-9471-2fc7f0fd33cf", "6b7b868b-34a3-4128-88ba-bf7a9e187833", "e608f640-d4ac-414c-ae16-0967b35ea5a0", "4098601f-59b5-4f31-875f-801568e1f85c"], "metadata": {"window": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n 7. How many discounted lockers a customer can avail? \n", "original_text": " \nPage 3 of 3 \n \nof successful claim process by our Takaful partner TPL Life Window Takaful, primary accountholder will receive \nfull claim amount according to the monthly average balance maintained in her account. \n \n \n", "page_label": "3", "file_name": "Faysal Islami Amal Women Priority Plus Account.pdf", "doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}}, "153be904-4211-446a-bb8c-aa5eeec24f29": {"node_ids": ["f03b7316-c491-417d-9947-c56b8079ce52", "8d615f3f-9349-4d04-a976-9355201c9a87", "e17559ec-1519-44f9-b3a9-007a890a9075", "a8ad0b5d-fcc9-4718-bc88-6d82450f9a40", "ea64ef47-05f0-4dbf-aa2d-0bdae5120791", "c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a", "fa308006-f3c6-4c00-90f0-529f79e7df06", "00b29cae-c0f2-43ba-b9a4-99401d7a5ff4"], "metadata": {"window": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. This product is exclusively designed for the banking needs of Pakistani Women . This account is \nonly offered in PKR. \n \n", "original_text": " \nPage 1 of 2 \n \nFAYSAL ISLAMI AMAL WOMEN SAVING ACCOUNT \n \nINTRODUCTION \nFaysal Islami Amal Women Saving Account is a Shariah Compliant account aimed at providing today\u2019s women with \nfinancial liberty. ", "page_label": "1", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}}, "4003ee33-0bde-4928-8965-650678d2cc39": {"node_ids": ["b620053e-bdac-490b-a68c-ec2658cb24ac", "0b7ac666-75f1-4630-ab3f-d07ed0143aec", "6d312337-d00a-4ca4-876f-713f6b05247d", "a7c30c87-d70a-4ee4-9c5c-b123365bf6a3", "1eb155f3-0d02-4801-8339-09ebf710968e", "9ce3ae74-8fe8-49d8-8e3e-a484f7079591", "5126b33b-3dd1-48ba-82e1-000a854537f0", "b774ae07-757e-4b3f-aea2-f92c22054047", "1219ed6d-576f-4c37-8582-df7a7549c609", "093cf14f-c32c-4ace-ab51-b8ca328182ef", "c21170d5-17b7-4969-bd35-247e64d7ba80", "080c671e-0d41-4cae-b1c6-86eae8b9d766", "435280bb-4f13-43a0-b85d-84b15bf5c068", "27daf370-2e50-4ec5-b018-5042c377e47a", "b4e7f176-38ed-4745-aa11-a269276dcf01", "dc57e358-f234-40b4-9349-9ea661334b0b", "e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f", "8a63ca49-7601-4028-98e0-db936c72e1d4"], "metadata": {"window": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . I want to open an account so I can avail Consumer Finance products \nsuch as Auto Financing, Home Financing and etc. Which product will get me discounted rates on financing? \n", "original_text": " \nPage 2 of 2 \n \nScenario 2: \nCustomer : I am a salaried female individual . ", "page_label": "2", "file_name": "Faysal Islami Amal Women Saving Account.pdf", "doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}}, "2dd6f138-0d98-45a2-aa77-a5ad049209f0": {"node_ids": ["975b98c1-f5fb-440e-af08-f9aa08df44fa", "918a71e3-8253-46fe-890e-859452d989ad", "82e6c0d2-aa08-4278-95d4-fcb585bba247", "952a15c4-2362-45fb-bb35-a92ad0f7a0b6", "df0ece19-6442-41cc-b638-c84ea3ae7f54", "757f1bc0-241f-4d29-8cfd-2c7194da0198", "b932defa-5914-474b-becf-f7c8f1e03f39", "95624e44-97cb-4a64-b3f7-57d0000fb7cd", "c629cd02-cef2-4db2-8a01-a56d0f817ca8", "84590474-d93e-4d60-a8b7-ac4a3b599c36", "95f19890-4d40-49d4-9a69-3dd44b4e2bc8", "610edfe5-bcf5-4ac4-8905-d4b7a66cff6c", "9eab74ab-c2bd-44ee-9710-44a9567a6271"], "metadata": {"window": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. Well-versed in maintaining liaison with IOC, Government Authorities, Airport \nManagement, ATC, MET Office, Crew Resource, Flight Ops Engineering, ATM and other agencies to expedite the functions \nand operations related to flight dispatch and safety. \n K E Y A C H I E V E M E N T S \n\uf0b7 Played an integral role in integrating TOPS with LIDO, AIMS and other systems for Qatar Airways, making sure the \nsystems are implemented thoroughly. \n", "original_text": "AKBAR AHMED SAEED \nO P E R A T I O N S C O N T R O L L E R / S E N I O R F L I G H T D I P A T C H E R \nKarachi, Pakistan \uf077 +92 334-5579500 \uf077+971 509318257 \uf077 a380ali@ yahoo.com \uf077 DOB: 27/12/1968 \n \nP E R S O N A L S T A T E M E N T \n22+ years of experience with proven skills in managing a Flight Dispatch team and Flight Watch activities through excellent \ncommunication and technical ability. ", "page_label": "1", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}}, "0df09d39-f2d0-4d11-9a88-3824c2f56aba": {"node_ids": ["81f0a75c-c88f-44e2-95e0-d65c4848b977", "44a964ec-315d-44bb-bd42-55c5347f08d8", "f101b150-eff0-493c-b846-1f1ace4069a4", "900f3816-8ab2-4331-b248-dc8dd5e9a630", "f0be9a22-b0f3-4848-8ddc-5bb833c94000", "3ab118ef-4d1c-465d-bf95-e7535a93bab5", "24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c", "491e44e0-9273-41fa-9a98-f139fae02194", "85a4e4cc-1359-4fc2-9a57-7838562ae0ec", "f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08", "79356976-33a0-4b67-bf8b-112f4f5c720b", "497e12bb-2b38-45cb-9144-462b90de74a2", "0c93c214-6572-4382-b091-b7b1362ea757", "732b278e-96a1-48a3-8d1c-8dca151836a7"], "metadata": {"window": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . Manual flight planning for non-schedule operation. \n \uf0b7 Plan ETOPS / Transatlantic/UPR/AUSTOS routes. \n", "original_text": "o Aircraft Engines \no ATC Procedures \no Instrumentation, VFR/IFR \nCommunications o Human Performance and Limitations \no Mass and Balance \nSenior Flight Dispatcher 1st February 2011 \u2013 11th February 2019 \nFlight Watch Specialist 10th June 2007 \u2013 1st February 2011 \n Qatar Airways \n Doha, Qatar \n \n\uf0b7 Computerized Flight plannin g on LIDO, SABER . ", "page_label": "2", "file_name": "RESUME_AKBAR_2022.pdf", "doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}}}, "docstore/metadata": {"4aa647b2-2bcd-42d1-9f75-003fb6d00a68": {"doc_hash": "397bed1f9ef99038bae4f49c37df32763faa9c6a49e2be37688c15086f8027ca", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "9bf097dd-1a34-46ef-9b61-aad8eb7eb232": {"doc_hash": "270abbafd7e5a63bcc67f07b1749fc82a2588948e2cb00ed098957ccf7b69f0e", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "8b610fd6-7e61-427d-b0fe-7c3bf852962d": {"doc_hash": "6847305a1385e2d520267d2de5850824f23b4c03d4ee79d50e249f7a2dc45ee2", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "b088df32-24ae-4de7-94fb-93e6b66c6033": {"doc_hash": "efc68b2ef7303930a03601692e7d0648d97e3442996c74c95ee19c526eef1055", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "9ed279dc-e305-4d87-887e-3bdadd545cb9": {"doc_hash": "05af54a03c62bed14b115b2c80d63e5a854de1953be5174c5e644d261716fc81", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "d4b2b46e-2bb9-4ab4-b573-73838af88192": {"doc_hash": "4eb4b7607d947440db20b289e3ca2f8f5d86ec86bc241e3e4b0c7f54436876ae", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "832ebd8c-769d-466b-ab60-cd790f8e3550": {"doc_hash": "430432c35e2c01d3981507757396893e299ac3d1bdf169ab68ab993356005f0d", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "2718b9a4-e30f-4e4d-b096-ebdf9efc6f30": {"doc_hash": "38dd0bf869d9db578cd9d01bc54d99558b438dc80417d2a12aa361e697a5797e", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549": {"doc_hash": "1e841f56ff11ad1e24a99a4bce4711e1bbf6b94766ae9cff46494839217ac35e", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "875c7c03-52f2-4eb6-9b74-e2fcf954c042": {"doc_hash": "a08eb3a8a1eae7bca6bf85e09d41cbe93fd3d33ad8229968fee3886cd01ee729", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "76f31973-ae09-464e-b789-d664a7b74bac": {"doc_hash": "400413bbf391bcff8b72b42ef812a1595b47e8db47797300e64d8c75b7f17ed8", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "74b0560a-29cf-42a6-86c0-55ddb56d5e9c": {"doc_hash": "6032ace395bf66e81dd45d7fff673736c59ea569f5eac5aca2f6595372662ccb", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "4828767f-396a-4ae7-a317-5be800ad8cee": {"doc_hash": "f99f6c30afe6313e8b7ec993891ba457aff589333cc85d8f4fbfc0f1438c931d", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "26a37355-9073-432a-8325-d3733769e4f1": {"doc_hash": "4b4769c2be01465d4d7a5af57f8cfc0fb3e0924e75bd66f23c8cba94ae67ffe7", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "bc737f1d-a3f6-49f0-aff8-0b83215e4d03": {"doc_hash": "1fddc19ec3c267e9a2b3884d8e018b281ed51f706541d2d2287ede023b05b79a", "ref_doc_id": "a5afa212-fb26-4956-8698-2369aee5db8f"}, "a5afa212-fb26-4956-8698-2369aee5db8f": {"doc_hash": "7b5b91c9d8edd96d82dfd5932a3c3a0639205fa1cd49a915c0e031ea749fb737"}, "2c308184-183c-4c74-abd2-1a872e1a5983": {"doc_hash": "bd053b610c7c4857f89584f5efe74bc34bb8ab9642bb7c51f59258de934a7b92", "ref_doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "1ecbacfc-e440-40f6-8b7c-58e7f4430263": {"doc_hash": "be62596489198557a2617e81646ede59e2c838a5042185b2bf364eca8a689bb8", "ref_doc_id": "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f"}, "5c5fa1bf-ebc4-43bf-936f-9fdf7615f96f": {"doc_hash": "da15638c94622e518f22f2143d216942b8c7b93471b2b7e0afbe81e08f703fcd"}, "a84958e5-bbca-40de-bade-ad5d11320792": {"doc_hash": "c25e0bc9539163dbda39242e9a31c9aa35a78f8a024247eb881d19df4ae6d06b", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "b7b5f86c-8904-4d52-b024-5c04c86780d2": {"doc_hash": "a46df4b7a745a3b685d6f5ccab600a16e53541d18df66855822b25050607529b", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "13494a4c-0324-4416-b03a-337a7dc1c76b": {"doc_hash": "92b1618749bdf44d77ac1cdb2c2b664dc030c3ab5b3aa8f0638817a6339cbdda", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "2740ef47-e9c7-4a5c-b6ce-dfb7e239f274": {"doc_hash": "41bba171831465e1fad5323042201588768017e987aed955a1333639e9e118cf", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "f9afaaa7-0487-4426-9f43-3c002db815b4": {"doc_hash": "da0156b40f1607c6c0fa75934f4cc163de78c8e05e789600d027a7f3b7b799fb", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "88a97d57-ef95-413a-acfc-6b167a994455": {"doc_hash": "2c6bcbf1453ad3795696283242ae7f2e80650d5b7be037bb91839de05a2b42b6", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "dcbddcca-91d1-48bf-8b3f-b414db2fdfea": {"doc_hash": "ea07e80fc0238c7becead2eb65d1687b18c00d356cf3ede08192181209f14c2d", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "07cd0333-976f-4256-805e-68442c8896f3": {"doc_hash": "487a19ad2f3dd0fcb8b8335b548465d1040bb6b1c49234a31d640d1a1d24b6a4", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "26763fc3-940a-45fe-80eb-2d6911758da9": {"doc_hash": "6d4250e92e889493489d583883af2b466d640294cb1bb1017913a081515a00c5", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "c540b737-2679-4aaa-a801-621ca99869fd": {"doc_hash": "412a7af607a18f82dc62584ae4863861b9d588c124ddf6730e34dd500d4b4e4b", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "65506434-743b-4efe-a798-570d825d90e5": {"doc_hash": "dba7d439c103ced2b2838e02fc9def4cd0a5000d62c18d92f1830cd5188fc4fc", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "2c9b6a28-397f-4def-a2ef-1914363194d1": {"doc_hash": "151c5282952519d5f3e1b48cbf8bcd5f445f5e96973d50ac6a7a487988313776", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "9578196c-027d-4d45-9671-7aefcd321d26": {"doc_hash": "c289a52ed7bdb773fc0dff2013acbe287d9c9f49af9149e1c0965e70cee83778", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "7495270a-b0a9-4bab-96f3-da7e66e1b8f3": {"doc_hash": "32afae6468a2263ccab722af0c5e2eeb96d1e54320085b3290af2b5cd9ff4399", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "20d2318b-b9ab-41d0-9b97-64c6c3c26aa9": {"doc_hash": "4177a3d848484c0ec70d5452cd5a52001f474e4474719db62da4e4bff8e79795", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "37b9db24-ddfa-423b-912a-ffc7fbe83847": {"doc_hash": "9726338d750fd913d77d8a0f2d1ba5e1efd73ce3f06ec6d1b34f7f887172c79c", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "ecf9117d-66a4-443b-a571-02efd059827d": {"doc_hash": "bab40a98a81f66600acdebefc624aa28c675eaf721e2f4bb21c464e064ffbfbb", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "2a50f01a-b552-447a-b93f-c2a113e87bb0": {"doc_hash": "ce79ea9b2d0993595e39f0b6a37594032ba6c43a1d42975c8aa0c855d7c2ce0b", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "0acf0dc1-f520-44bc-9dfe-b76af39c3667": {"doc_hash": "a61e33cccd80bc54a43f79da1e966b4177073511a79b2999272eea6ba05212c4", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "04377eda-8915-49f4-85ec-e06de2108bdc": {"doc_hash": "1de0fe67a9d92fbf3d12cffc7d98caadd594728ef49cb55b9699564bda637888", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "23386198-87d1-4f74-9e19-d6c7a18fd1de": {"doc_hash": "d404c120f36ff504396167035e3428e9d7b059eee05b4ae78b0d7cd18826e763", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "bca1fb8b-a7ef-4687-a85a-f7c4969b8557": {"doc_hash": "afd1543aae4d74cf6346d43ab40d9fe1ea46f9500102cb2fa36f7c07878f1df2", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "5e90c533-8419-49ad-931b-fcb513eaf397": {"doc_hash": "45adf35baba61e7145458aff9b56e6cca20fcc9a24cb319412cd186c2c597000", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "10203948-ed29-40f6-821a-6ca03dbe07b6": {"doc_hash": "5d182af8f0f297c9758132d6183fed32025891b662dc12ad2f6d0ab2ff7c9bef", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "9e8d185e-0ca8-47b9-8003-4f30fa88b888": {"doc_hash": "52e8245f8f0628df9edded252f02815f60ae9a77322993226ae54e91e781f689", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "f6f9497b-06b8-4776-9c86-9818419b778a": {"doc_hash": "1473b8c717616284dfd9ba0686f3755e354e0b038b325bf934a25663b7bb69de", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "7c3b610d-68da-46f7-9680-67c7cb5f9fe2": {"doc_hash": "cd79027774b24a5e7242718913524cf03851fff7ffbe054e979cfcde392d5ef7", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "79f9fc25-82b4-445f-9a24-0bce12bdec2d": {"doc_hash": "06738ff2fc8a2a9d41543a1dd7fecb9c76e3556f9517188ef41bf7f9981b7488", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "e7fed734-eda8-4e9b-8db8-cfeeb93b2714": {"doc_hash": "f6e100e88170fdd2e2e9a56fd78150390b05d3579afcd0645f5fef99ae737198", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "6a5e2b7a-5212-4096-8e86-6736641fbd63": {"doc_hash": "6c28bd56c7fc5ec2094060cdbf87a398ef9d0215716bd43b74b990e650ff263f", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "2b5c03fc-4aee-45bc-bf30-f748eb040bba": {"doc_hash": "020635284a2b592369bc1453f45c61461acf2fc756336aafce0203ff22afe838", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba": {"doc_hash": "6289a3934179293fa9eb7b369ca6176cabe917cbbd6969bb28ca19f3e8b170b5", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "f994e530-0a41-476b-9f94-279c51e851c3": {"doc_hash": "96680185b9ed05994deb3a7fabe1de9c83edc05057cd9da7c287c6d925c42ff3", "ref_doc_id": "76da21fe-c6fc-42cc-9fbd-e4bd818d4842"}, "76da21fe-c6fc-42cc-9fbd-e4bd818d4842": {"doc_hash": "c2f2d8b16d591d10cf3ce05a11a3674e7eaba187b3a82440af16e0fab7c30252"}, "e0806a92-067d-4401-afa9-1e143b8ca059": {"doc_hash": "58c6b43cb50086dd7de2622e113658303e50dbf156cd7140b617c05e23b0b308", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6abeddd5-771d-45ad-985c-b5039f9682eb": {"doc_hash": "473d0e31353eff740d583b5b3c07360643f86178cf3465277ebcb1f3d8d3e888", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730": {"doc_hash": "edfc0d55ebabcaddc78990b22a4970760e105c1222d474a33b40b21449627a43", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "09aba15c-8848-4b1d-80d0-fd51aae4770e": {"doc_hash": "04dad85951175eed62efec11da6b91a0626a7b4b2b8127344c51faa15b0b0513", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f2731479-2d76-4f37-85d6-4a1261989587": {"doc_hash": "e82e40f497dc394c422ce57f1192f1114b48b320d8136cccf1dc375628ddea73", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "7f19d8ea-707a-4e49-8493-7c5dcab97c88": {"doc_hash": "f40f5cf6b4419c2b40d7b52c987a1513d0c94a84033fbab05b9e12bb9b4a5e83", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2f9b4a5d-2e04-4c12-bd0e-803a8f375470": {"doc_hash": "d235d7452e6be3824dd2b0b73d1043718cb46a2cda1d61f5813666b4fc0ebda0", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e3b61425-69ba-4332-a437-303643e57eb5": {"doc_hash": "fba98eb2e305cc68fba469960388a1502e7217b8fba3de27ed5f66c89e8b3b17", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1fcfe884-f810-46de-a946-090c3c284ad0": {"doc_hash": "f5b27082066b785ed8de7bbd1ac52452d3344e826efa9f85897b661427ff8692", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f5240473-1e46-4222-905c-b6b7cd4646ba": {"doc_hash": "b32fda9aaa6d4bd9eb6393aac14a04485c207ee673661ee249a19662a3d04e4c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2c419b82-4f82-496f-b4b4-c76141274585": {"doc_hash": "f86155937ffb6ec91b41c96a9cbdf48a6961953a4e52e11a004f02602c373a1b", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9fde07da-cd24-4978-a089-d1c54d402ddc": {"doc_hash": "f55a674a4803566b1d9afa374b151997dac6643569bafecfd5f970d9a85bf8bf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4": {"doc_hash": "c82f0e6517369544961bbaf84168d9d3cfaa5bbebe4dd26126dba5011879ea19", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98": {"doc_hash": "57a45d9c684e26a023084983e18b3ee4a4b70e5fa5a27d2b3b56ee647fd4913f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ac1e6e13-f279-4928-a284-0c92b66f09ae": {"doc_hash": "ac81843fab49ea73067d0a93d72fe0d106bb0f0550e087b9dc9f9f509b91e8a7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6f5f6064-4f8e-4caf-899c-fd78a65e466b": {"doc_hash": "cddeeab2c0829edfd654f09e7fba3dc467e469bcd9cfd7b4543212321fa991ea", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1b82111e-b71b-4b1b-b8cf-a8245da5ccf2": {"doc_hash": "64c41f192039f08605896228f77751f0fba0babc112f7cb268726dde0476acff", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e8234cac-7fe1-411d-80d9-d1c9990edf1f": {"doc_hash": "1f741a7cf026ecd2f7a1ffdc04ec253d1f7b430aa5ae64d1b10fb10eeab39321", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5bda07e1-5114-4f2f-9950-844cbe4dc5ff": {"doc_hash": "9f01468f0bb85fd0fc4e1cb6df0c197ef29a422595a7472eaaf14a334ab7a44d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2e331ad1-4c67-4d7e-99f8-90636e796855": {"doc_hash": "918631a58e8e48339f32bf707e07ed3f311b75f85c284efba7ca706dfffeff3c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "04a79d62-85c8-4e48-9cfe-055bcb7584ee": {"doc_hash": "bd94761ab1077d000383e7f6ef7d413fda47bf65feb94d5a8a08dade8f7c4b7a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2715f5d1-3033-4068-98a5-da3aeaea645c": {"doc_hash": "bd734901733332d09de9e3e8a0fc8b4b3ce49b920049bd21372f6d9be34c67fe", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c": {"doc_hash": "aad37c79e00883c1fed8c79517b88897f6fc8011578b64ca76f7f77b8fa29725", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "345e778e-a465-4e56-b4a4-79ec02fc488b": {"doc_hash": "cddc7cfbdbea9931a3d7f2115cbb82573249065e6e3aca95494549710ef9e7cd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d991d1dd-c851-4eca-9ed5-0ffb73441b06": {"doc_hash": "929cd20bbfc0a9f86aea79cdaaf58f9c4552b8d6b03074101668543e7fb8d074", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "18e0b32b-51f2-4e6e-95ad-3ce5159c82b7": {"doc_hash": "d5682bcf25834da76872ebdbbf1c47245e2ba4fa4da15d39c1d1be6ed72b9051", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "106db2bc-825f-431d-9559-6e1740e5cd7c": {"doc_hash": "861c9d7a35d8f92f6cbd529d7d08270e1e82938f881868c7c420617fb722a6d2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "24100721-d6cd-4dfe-b050-30f50e640ba7": {"doc_hash": "6626294ea0e9682026721a774f80800405faedaf20486eb28fa38d38641d1c62", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d7017230-d8ce-4c69-8739-0d8ec4f96977": {"doc_hash": "d32a3446320db77a427b62454062bd9722d7aa57ec39f2810221773932e7b5e2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5f052ab6-717b-424b-b359-0adeb5aaa264": {"doc_hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "83846ec5-23a4-4df8-a302-57557e7892f0": {"doc_hash": "0c5117e8df178e7b71c4cf7a44dc0bad5176c1fb6da43bcd1da5e7e19b271991", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "080d0243-4bdc-4328-b9db-6d34dce3f1f8": {"doc_hash": "de74c95b3e74e46b78068b8561ba75bf39404d92f3472ece69e739db8329a600", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "bbf248aa-e49f-4f76-85bc-4c70c513eb71": {"doc_hash": "7eacfeeef5f03f5e11f7d64c45e351dcf6165c0534f218463ed72cd208a24028", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c2f3d877-ab48-4be7-8373-d67d10c89cc6": {"doc_hash": "716f59229f801772b2dd84a17f8c930adca8e180b352238bfaf0635f65d68351", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a2d60074-833a-4715-87ee-0424f4dfb3a4": {"doc_hash": "82f649c64364c71522786f16fbb4f7c8b61315a07b88ac50caa5a279c8fd1080", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "579f096b-8450-4b53-b5e0-2bb0cb4a3b8e": {"doc_hash": "ea0702e2d3f7cd6f687f8ffe1a68bc068bb3fda5d267e895da1d6dd9b01ab33c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "18aef834-588b-46cd-b2ee-7bc4c8e8b7bc": {"doc_hash": "c8e5170b4d6d2b93e7029539507c633ea971e4a175833700a065f6c35e1a4368", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "bf20e12a-1f22-4924-bbb5-e54f0067adb0": {"doc_hash": "53e9a1c0f3bdaea9f4d35889cb2c2d3899da2aa097ecf2e972bdebb2bd1dd5ab", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2bd1e53a-5f94-474c-a4c9-a5386d802273": {"doc_hash": "a7d3c22775373602ecfd7be1b2c47fcaf6125843a278629207fe9831e3413bb7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "47f10038-136b-4508-9c04-982528ca1633": {"doc_hash": "21d8603f0edf751ea02ce364cec774265cf7bc47480a3e43c9cbe06a813de502", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d651c02d-b2cc-421d-8431-3af058a15ee0": {"doc_hash": "22bec7cc76b3efd63dca2d6723d44fbdccd5e24a4ac8de962dd21ddaf7119474", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ce817407-6bf2-4805-8293-675ef161ed68": {"doc_hash": "6b3cad1e3fcec78a9daf982e708404d11169cdfdd5eca1f2d5ef5af1e3719da6", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "253ca4b8-5bef-420a-8a05-9974885ce61a": {"doc_hash": "3eca01382fc2f783a89351faa8833960312db94e210ae0da5661e1fcabda5fca", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0": {"doc_hash": "02fdefdab098349a818ab8ebc60483a3806d8613c2e8923b5dd1c09149258762", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "fe88573a-4a61-4bd7-a697-1d9100f205dc": {"doc_hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "b309486c-2d0c-4225-91b1-6aa14b17c1e3": {"doc_hash": "132761480610df82b1d73178e210a5807d0cd23248c7133468f81276be68baeb", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "56358d3b-53f0-4f3e-a06e-75c9b4cf1fea": {"doc_hash": "933a01215d5e97d69ea2693d9617a6f7ffae9db27681cc5f2c716ee56bf9e16e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "432d8ff8-91a4-4ef8-9197-69b4ffea9a7e": {"doc_hash": "ced66d42ba7c3871ff26b4855baa50629ab1c1fefa50ce8688b307a4ecd8c1c1", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "77073c38-3d34-4b87-909c-b16142a610f0": {"doc_hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b": {"doc_hash": "45ada246d8219958c4c601a3a129d1698e8d667863f65349b971ddabe3985e61", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "71534514-ce51-4219-baa4-3bdc0bf2a7b1": {"doc_hash": "ccab1f511759b40d47361c63990a8844c015613100fe320103031bd9ffd44108", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "47308108-c00d-4e76-ac1e-1a751fee7390": {"doc_hash": "9ae5c6b487d364dc863cc21e45f2e31d839ce698b2af1b00bf0cd6e2d65b2397", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6d85b210-c296-4a51-a994-39ed27d505ff": {"doc_hash": "4c87e5cfd636c79bcd46247f0d132afbc48812a64a108ac9af7c920195f16a0b", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0": {"doc_hash": "d7a1db68fcede76e7727f0bc864df64e38b4bd886124824ed7a7e3f3baac9927", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589": {"doc_hash": "7df7d413ca66037119e469216a68f18e38b345fbab344707604a5daba07e2df1", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "89e19391-1500-4af4-bbac-7611c7416784": {"doc_hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ede91f75-ebe7-4b86-baa4-a6ec6018b538": {"doc_hash": "27a492a9486c1bbbb24d304e5dbfde3953778e86258c43152ccbd896df84a9e0", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f82d22d1-316f-4b18-807a-924dd2fab1ed": {"doc_hash": "697f60008c4a3939e066df99108ab3c5b6df9694d880d715a8f5a846d8a7382b", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "cf0b8afe-a302-4034-a8a2-b14d7a56b635": {"doc_hash": "f7deab8cb0abbb1b16115b2a38ba0e059f6426a93be587fb7275d7c37e4927b0", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "66097377-c9fb-48a9-8223-b9325ecbaa25": {"doc_hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1f738b02-b8e1-4de2-b537-96b2f5f6e24c": {"doc_hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "bef86ef8-4999-42d5-a507-8d8f37263d9f": {"doc_hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3ca4c88a-c14e-4139-80f9-693e3e64abc8": {"doc_hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "42616556-b70f-4166-96d3-b2f2c62e1004": {"doc_hash": "db19f4225c2877e5c9f9a09aa00ee198e18bf0a53937cde004d30c4330dbeef9", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8530fe78-89ba-45f6-bd75-acaf32293ca2": {"doc_hash": "a167a7d09a0d465bc69466630ff95b32d9fe02b7734cd1b23b4b2ce297a14862", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "7ac37dcd-cac1-48db-aba7-a6a821234745": {"doc_hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "82680df8-e08e-4b91-8ddd-6d349e4c5705": {"doc_hash": "b383fe8a635ba712c3055b6074bb32bcb041a616cebadba4b434ffa564c97b1f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9e8028d9-2d6e-4ad8-9652-401ba37f754d": {"doc_hash": "cdc2ae0fa8ceb0d112f3bae78fa08dc1d6c00a33f5aa50263d2297935132db3c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "034b01ea-42bf-4c6a-971e-5341e4263b77": {"doc_hash": "bacfa454c9869b89ce3fd3b80d87795187085602dc707596879d90a41888d5cd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3de386a0-191f-4355-b5a6-41c5deb75a50": {"doc_hash": "32d335d3f36d8424c28765dc349a80e9b94745cd70a5976148eed4fcf9ce62cd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ed1d808f-3af2-4494-8d50-bfb5b986fd72": {"doc_hash": "a81f2af19712aafa29cfc5390846d0694bc20b03bfde554e40b56b86b8d37724", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "427083ea-5cd2-4687-884b-e27727bc603b": {"doc_hash": "4d295df98a8328b3cb6ddc81c40a4e132c417e25f2d1ae4cd7986af3617a6eea", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d54b86e0-e7ab-4346-800b-d613e9ee8bbc": {"doc_hash": "7aa7c9835792f0977ff33e31ce7ec44203bc41b73982e9457a86bbf4b892afef", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c3d09c63-cedd-48e4-abee-e2f4065b24ab": {"doc_hash": "8d8c027bb4712adc935c4ba9fc921e249e68f8880c6e3aa1dd1d7156967c8056", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "b14fd0da-92e7-4277-b8fa-7b62160fb6e9": {"doc_hash": "fdd0f9d06105ec16b01e60561bac36b84db6a76c5b591370837447272e40a003", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9257befb-5502-49e9-9a18-64a47c3bd267": {"doc_hash": "e8a696856dfe443952e4e88e28d01d2c3ee965034794f5c7058cbdc0e21f0282", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "13c267a0-e573-40a6-a7b4-dff10708e83f": {"doc_hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "48cf3606-fa3d-4300-beff-779408dd78b4": {"doc_hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3": {"doc_hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "51055fb7-b0a6-4c54-b5c6-e947bc8662ba": {"doc_hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "610ef6e2-f0b5-4cfc-a801-3c0561364c39": {"doc_hash": "41ae066aac516f226b26eeb15b071ba3d634bc9dac94de4b1e834511e11468cf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "77744220-3445-4612-9666-4925739733eb": {"doc_hash": "67b002c9d4e32bdd8fb66e9d8a3eca0e3dcce2e031eb5e1aa620e2b415c9f72d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2df03af1-4f12-444e-a6fe-2c4713138d17": {"doc_hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9": {"doc_hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "b424dd93-ebd0-49de-be22-4de534d02f37": {"doc_hash": "90f83533b414da201d7a6760c3d672e9454074a06fb375309eceffc9d68911cb", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "fc9e04b0-61fb-481c-af29-b5bdb89b0cc6": {"doc_hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "089da9b0-2701-48dd-954b-346b7e3bdcc3": {"doc_hash": "f2b73e7c7b3384c654e50387955c0b120ba8838e2eadd4049a61f9d694c60d2a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3b9086fa-00f2-410e-a25d-beea94b84611": {"doc_hash": "a3b4e38ad5347386ed79f0792c4767659b9e12270f82e885ed6779bf7ee55811", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5f75a35a-64e3-4504-a024-c2f8e0a71acc": {"doc_hash": "94d88b8b68c0e63953899a5a24c403f783bb8a4cb4a37089d660cf98e43aad47", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a4fff09d-9522-4478-9af1-0b504fa4c8ee": {"doc_hash": "d18fd2c430c7d293ac2d381e70f568590b744f74c26db8d0c931684c34681279", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9cbe439e-17ff-4956-9b1b-60467873986a": {"doc_hash": "e135e35b5445c461e9c62513653c1beb0df20ba76588a29090dc168760701fd4", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "7d66f518-2159-49aa-8012-6d62f52ad994": {"doc_hash": "0c1d3f432a85f9e20e3fd778c29384af0c9c2bf6401d32c1c71ab5ef49c141cf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3ac9c49e-8062-4406-b88b-1d61d2f729a7": {"doc_hash": "6f49aa1eccfcae186afd62c515222b6a6e637a388e1a43750310292fe05c846e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "da757de5-538d-4be4-b223-ec8234460492": {"doc_hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a9038689-bae1-476d-8d32-1288a1dec308": {"doc_hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c25cf3d9-8924-473a-ba31-59872ac40309": {"doc_hash": "2d44e9a62165e36e20fa76cd41cd83c58779533017c44ee987d155a384bdec99", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "afdc513d-db48-4fb2-9c1c-e05ef8fd3547": {"doc_hash": "4a72644cf4a3405f349ad7f8c121b3945932551c66c2a86cf8ba5f8d89ee8693", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "679f356b-9f19-48a3-ab30-24ddcfc23d02": {"doc_hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "464491e3-600f-4781-87f3-7ca2bf35cd8b": {"doc_hash": "824b92e94676ea1050825ed090d3ea14cc138288c138829c68cc7159f015f333", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "255f4025-fa4a-4a8e-b28f-c7e0f93e2d71": {"doc_hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "12527123-5dd7-4c29-9d0a-fbf1348acb13": {"doc_hash": "9c1612500fd938c66b12e71ea85c4f2e5c7a7db63d0c1a20a726ae60c01fb980", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c9ace8c7-095a-4acf-bfd3-31a80840043c": {"doc_hash": "7902feb8b4db35f30615048a8a6a0f7bcaf69cf5a2bbfb51495136e3ae829a26", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "23ca6a2c-b665-4136-8252-4e3511800cb2": {"doc_hash": "32cbe40525ae385befb0672b83d9405815cc44a6fc63e9d418d60b8542a93d6d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c1bebdb1-8466-485e-ba32-c7f1768afb8f": {"doc_hash": "1a2dc23404d75999350703fa863a80d22aea5dbf016fa7d2eb555ce9dbc323aa", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "0f73fd11-2c9c-4e6d-b14c-891759bb906c": {"doc_hash": "d5e30a1deff320dadeceaeed83d04b359cf147d63734f8a30216333436e99c4c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "928e1aee-8009-4b84-a2d4-04ce40ea2924": {"doc_hash": "7ec11d53b42ced0cbab593f1693736ee7249dc6fa9cacd5919d5a4eb8943f933", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ff509074-e8b6-4882-9f11-c685d7c5e74c": {"doc_hash": "da45923193ae19186009d3e93dbb27b000b0043c32ec701400930afddd88e09d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "494d5f9c-6173-419a-a5e7-0718065748c6": {"doc_hash": "13c533fa7242f0f82dad4a3dab24d4af3e3f2c15293f0d61a1cb5c360f5f6131", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "76b88ceb-e411-49de-b15f-6194498df861": {"doc_hash": "c5e0d9398b7b441d61b9ad485a5ff4aa8944dc8fe37b19700664dceb27a4634c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6f7369ec-8025-4ce7-a191-15f01c233655": {"doc_hash": "1e16827003345d5347f7b755d654070e2bdb524408434c12b804604b9c57686f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c0481400-dd05-4a6a-baac-b40c6e8c1d50": {"doc_hash": "69fdf7ca530c9ef8ed37d74402c420fc90c4dff93ff69439007f5a1f8587dbdc", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2411ee9f-d339-4712-b254-e0d58f611514": {"doc_hash": "c55fb38adb3e6b4d3c57567d0f2e8b401f8ff42e543be43cb05a42322f4234f6", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "275f8771-784e-42c2-92a3-09853c9cbb94": {"doc_hash": "9b0ef0a4998dc9ef79b56483815738ec02a59047f9ce2ea41003307aa9c2a37a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5": {"doc_hash": "8bcb453dca97f91de3a4ea7977772af151168ced345c8a3eb96ef9c61ab16824", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "74783f0c-6572-4511-bd4b-cc169d680860": {"doc_hash": "de47edd0430214b6061abe21cff46fd7feacf4bbfa794302313acc2027caa251", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8be9fef9-0ea5-49c1-80dc-d4479f9d6753": {"doc_hash": "126fba81d044abcac9229e21373c0e0d4219a1405a90b6cfe20ad3c7cf4eb262", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "73b11941-77cb-461f-8f5d-4c402a1e065d": {"doc_hash": "da283268218db42c8685a5be561a69b8a9b7e2eaa409aa423e986ed55e8fe7c2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d51c2989-6c02-4177-90f8-2621eb18f70e": {"doc_hash": "10881c8a0bdbbcc1f3dc7f3ce29b9fef6ab4884bea22228e97e0242af92884cd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c8da1a27-b4cb-45f6-ac61-b08a9efcb2db": {"doc_hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d5be91d1-922b-4975-977a-e47014b14ab0": {"doc_hash": "09abd53c8cf8fb8d8e3d0ca84c2627c335b46d97247d61dc41748bbb7469a8ab", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "aff522e6-fc31-44bc-aeaa-eb61b2c22633": {"doc_hash": "8637e537ac319380873981461999358dcf320ae886f6729ce15a94f97d37d23a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5f89e89d-2ee3-41db-b518-29eaeda2f6e2": {"doc_hash": "300f82d68385f028ff5ce43d76c61483763f7012d8babf1838b2becd4f9ca370", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3af9b6ee-156f-449c-81de-fa4f1496ea29": {"doc_hash": "bb0b988e03b982c65e13d73796c2c9c5a3c0459833ddb1381dac327188651d95", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "b0ac8be0-ee3c-4bab-9768-1f8544bc9e81": {"doc_hash": "f275607f2d0627bdf9d5fb32aa3aafdc6c59b0061e85438f9ab6f5c34447ce2c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8f042385-7543-4e74-a866-258cf19b4985": {"doc_hash": "0a349f15f537a9ee3894f3d7e17ec8f251420cfb676fb17ff42506e1d57722bd", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "20cff46b-ef04-4502-b3ed-ecd2d83b19e9": {"doc_hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "b1169cf4-c1f1-43e4-ab90-b3842cccf809": {"doc_hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "06aa1f30-1513-480b-9263-22dec17c64c8": {"doc_hash": "4eff09bb83a7763318891c5db8e95d956d838983a619de1bf6244f15b8b2e763", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "4c798ae4-f706-434e-b4c7-4f9cae0cea02": {"doc_hash": "9dd08fa6f291130174aa63d424bd7b409f20046a5d3f181046057ac17f060891", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "30a6702a-c993-44e2-88e3-11b88eb70e4f": {"doc_hash": "45ca0a90d25da40d0a0ecc2e2a61085d9c50c5c1843e61415f73684bbb1896a3", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "441b10f3-90f4-4e9f-badd-47f978799cbf": {"doc_hash": "048d4d3859f50b9f243b49dbf4d47e236c13e5d262ec613f1f8c6ff9222c7ec1", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9aa8a627-b1b9-46a5-ae82-401cee0b857b": {"doc_hash": "fa7984e636d598edde31f2aff3b6a9ce4b3a79e514c94c2b2d14ba843af7113e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d7467e86-7e7e-4647-b607-4a320c55fbc7": {"doc_hash": "a6b04f78ee5ddcf9def76014c3bcc8c7e4e5a325d53ac3dac40e577021e12289", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3cc85d16-6d47-4c16-9310-4ec7cdd330bb": {"doc_hash": "4e516336c645322854f5c3c87d80ef03a65dbb4e405c8ec48d226e8e456f2d16", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2f97dad4-f806-4f54-b0c3-521606100285": {"doc_hash": "b63cf1e161add9428b6f4fa16461f28c3ae1e86e1412c3b9753e5bcc9f33bb22", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920": {"doc_hash": "4cfeca2e743523a3bb90e11e52d547d7714506fe3f8851579081611c98613dde", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "95438b3d-056a-4a38-a4b4-0f62b9c28706": {"doc_hash": "949a3fe4d970e2cc780ab767fbe5e46e71c352cae6598e3d35fdf0a59d5f1713", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c009c3e0-b9e5-456c-8895-e19854954589": {"doc_hash": "09ab1c7227f34ef6beb0ee6a3ce3ac110ebd9dc8a9e9440c6e587937b6a7bf8f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f286142e-f068-438c-a8f6-3b7cfdcec0d8": {"doc_hash": "edc73bda897aded8a5e7c596a70dc1a14dbcec05c649afcb73c46ce6c034a2f4", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "b8d0019d-a626-4836-b618-610195f860f1": {"doc_hash": "989910fa0ab14316d9c469daa9cb1d761af67e7f1bcc1718c72ab6dc42e7a667", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "cb652300-398b-4a0b-b978-2a2d5b581b94": {"doc_hash": "66bc424a63deb6c7e6197653607f96694674f3ce20f8cf88b12c7fca631d8e18", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "4b325598-53f1-4cb8-bed2-43472c8c0654": {"doc_hash": "e26be80cce5b143ea8bf1b8bacd39ed44fc424255b5bdab30a73adff03173367", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "daa9362f-78aa-4236-89ff-ef883e982820": {"doc_hash": "efb1731e0866212ef5a3479dd065574a9aeb8540ba3565690289ce8b87194fc3", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "732c918a-573a-480e-be35-3b8c19620029": {"doc_hash": "3b0add67052c34a58946d6f19bf0e6bd2d92e6bc2df60cd1b1aaec9a4e3ea16d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "7a3ce206-22e5-4ee4-90a7-16c2e039a1e9": {"doc_hash": "0ffb4b74944ecdba581d32dad7a468082caa09fa58a344b46a67b13dd4bccb44", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c96879c8-0057-4738-80d7-d2849a61dc74": {"doc_hash": "ebe77b0d25fa31572628ad3e58b10eb823f9ad3040b23c72267b838ea7b72827", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "329da4d1-09d4-4ad3-9d5e-516700e48816": {"doc_hash": "ae791a13b987593f519cb9e6c17d1f8f509b598fd4f35b34d49009ea2cfd0fcf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "474c0550-3a2d-4433-ac74-7e0918b96bd6": {"doc_hash": "f0c7c7725d5f8eb6cd6797b8b80f342bbb2727fc771bf747ac174115ec718b93", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed": {"doc_hash": "836e69d791c7849e6238ef035fb9be8e7d81656817da5e5c5fe353a54ee0ad46", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "0f278d1f-c471-4e27-a016-523cca2a2011": {"doc_hash": "7ac650b44be81d6be78cd26a4978f4c99efbc20ae165ead8297bcc60e2c35c78", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a81bf711-6bbd-4f1f-8bd4-5d561dd651ea": {"doc_hash": "6525bb0409f2ea0ad6b4de9d8111524ed8a0a7ab27393fca307be8a1de679c06", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a8e510c1-f8db-43ce-8163-191ce9dbe0c2": {"doc_hash": "e7aca5e5c33b2eedebda842c8724a1a80b59ad72d4f9c11cbf3e3f2b73956250", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e1f2c72b-5e53-4f1d-a706-f3247aea5665": {"doc_hash": "d41ba80772877544ee8387b0e5c0db761cbe30e98c25601393607d2c567b97dc", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8ecefd84-89cb-494e-8720-1428fd006450": {"doc_hash": "b6d50cc186e35b86516c78c0ca4f11d28bb9529bfb5b783c55b4ae480b02d510", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e8d141bd-554e-4a56-8034-547983674384": {"doc_hash": "6250256243ce2a1afdc0556d274cc679139edc21d2a799da4b930534d9a6327a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "08d037cd-c538-4814-b23b-abec75956eeb": {"doc_hash": "8b810e6475cfce91523b772ecf5cd53e027218326c79f8aeb903ad2c158947eb", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5ea5119e-072c-43a4-bf0b-a30d69d61614": {"doc_hash": "d2d8d9f6a2780a181cfaf85f33f26d008b18448c580e995b2b9733768b89c349", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "276a10c7-9d8e-45e6-9563-696a487df770": {"doc_hash": "65c76af08002f9bb6d33407052d08af2e32e5304a3e6548e3ec613f230a97199", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa": {"doc_hash": "6b0ee7719a16a3f1d1950ed226bb16217f037b1a64e285e5961e0fd14b7f7170", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "02100ff2-5693-4c7b-9a36-4e90e119626b": {"doc_hash": "70f837b975c5f44ef8b23341470fbe90fa5bce859851b391be18802aff9877f2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9dc3ee47-839d-42ee-b7a5-195d0320473a": {"doc_hash": "f9ccd742ef0fbe6f2c67562a3453d71f4a1bcaddd8e4a846f21f02e2c88c2f3b", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "0072630f-2f8e-4e95-b735-d99ca1e24f93": {"doc_hash": "9c26e0611034dc3cdaf823810e0d651987691100bade9a3c3925f048ce799680", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "498651a2-d1ea-49d5-ad79-0d8261d02d66": {"doc_hash": "acb85ace1f5d387281cf9d619f678fa186647f6f8250739718cb3c82a88ad3f4", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "de2bb666-475e-4ac7-8a74-f8190c53e3bd": {"doc_hash": "c295c43eca1c776ce716ec854dacf25f7813a8d84e8ff20b2c1c0783fa311dc7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd": {"doc_hash": "13f27eb9eafe337e152ba6aa184689d75e2d49af402b7d37e442ed5e37cbec26", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "7e0646c7-b68e-422f-b779-676e42230080": {"doc_hash": "4d913ce8c4b17892e9c124f0b11c642b450783563994942e890bb9d3543661d7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8a445d02-4ef9-4ed7-9932-c4820fad81d0": {"doc_hash": "297d490c71ece175a565d71f027ca23e34fe69eba989e0fedc6cb71119b6dd91", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5a6c28eb-8379-4b37-b9f6-4accc7efa41e": {"doc_hash": "be7f99feafa4fe8de1661a8797fc566a7d8493782d1e53ee94965f79b162590d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "14caea37-ee7b-44a5-b512-9faa84a17d91": {"doc_hash": "7677963cd116c1a048ea2979c20e0606cfca9d21f1e4d7e87af0d10f86205e98", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c407a988-4ad3-4b26-b7dd-e833f7bea7b5": {"doc_hash": "3dde15d7281b8fad02f14bc76176f63d0f39492234c2ace2a9218f559c257f1d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8b9cfa6c-826c-48a4-8cea-d672b581651c": {"doc_hash": "715df66c020561c485240b8c16d9a31b71ebe492a6b2045165d2da6fe4e8286e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a13dd20c-4dce-4fe9-a341-9a06671c50d3": {"doc_hash": "838dd385efc38213930d5534a8d48e248928ded06f6fe04be31c4b5e2d33a60b", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "4d706a21-ad40-4edd-bfb3-b6501a38e7cf": {"doc_hash": "b3b9dfee0736c9fbbdf740bfba95e7ba118b310bb5fc96f5a5d7b300f1265b94", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f886a060-2717-410a-8357-46cb9b373441": {"doc_hash": "45ea28ec117675fd791dcaae3f35cc246e5367284dbd00fd22de33676a0625e5", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9": {"doc_hash": "748a517ff0e013cf4fa2a4be857545d08a4767ef1e5008f963dbc03e2416ba5b", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "d38f5d4d-1338-480c-9bc3-c46b70aa44ff": {"doc_hash": "35d1382cc158e1c460ff391c79675a8102513aa9507170f1c31abc2ec48a77a8", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c4496cc5-3ea6-4684-8a1b-7f81111ac418": {"doc_hash": "71098ed8e904739120af397457d453cfd2175c99fe97a9e63f8cab7acc3ec36f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "c95affc4-9657-4cf0-aa11-160836f45bef": {"doc_hash": "d99219db18d0063f53035ce68584b55199585d329ea1936f59c6ac9f77de498f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8791d5f4-87af-470d-a241-7429f1682002": {"doc_hash": "3dbec475840d18a53665f93061248ff23fc10ef938804c7107b14dd47537f071", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e3ee8490-d895-44c6-a02d-ec4076b07423": {"doc_hash": "29fb1ea279985151eed4dd69ed058f7333895bb212a4f2ed0d5a9029650b8adc", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "4a19c04f-6222-4a70-aa78-0a41b117a98a": {"doc_hash": "04b4dd067baf22596fd7d2de8a68781e4355c710f1a9ed73a5867e8d3ecee55c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1540b900-eb6d-4c64-9b79-3ebdb6382881": {"doc_hash": "6f5d7a48c77f3d458e3b8be4777516255004bd8bedd1ae9431979c9c3b961b02", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "cc928f43-ed37-42ce-ad06-9dc52be29b89": {"doc_hash": "0acc19db95f4ea42c66fc9557dfb48f1c0bfe91f7c57af038f86407f43487c32", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6fafa2e5-6da6-467a-aea2-453aeafa8bd2": {"doc_hash": "2f4e26c70cc08a2873ab24a1adbe9baed7b7e05dbb176de599804ef9d45841bf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "02e510d2-4417-444e-96d1-708394524711": {"doc_hash": "f3db11716289bd2bd185df95ae65b6602bfaefb4f02a9bd7e93ee2cbc87ba6be", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1305a9a6-2840-4aff-ab75-7c780061df85": {"doc_hash": "5c268fce743f8ec68478e05e65324778a38952c7df1d707b8bad0878fdd4e9b2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "639ee74a-9c31-422b-8ba8-d3d1fb751011": {"doc_hash": "56f9273e470dae2050a92148b6f497b6f63dd6f36e3da0dcc058059840b08754", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "69def097-1a2d-4a1d-815a-f6b361d41a1d": {"doc_hash": "ded75ed29b7396485b3d635742f082f1461f07a973f61de8d250757089dff4e7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e4152376-509c-43e0-983f-26c4704c661b": {"doc_hash": "c9d0a5237691d297a464a838ff64fb03e685de53fac3e1a9fc7dabcc65fd8da5", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f75e1eb4-8a1d-46bf-90bb-d69a417a7c25": {"doc_hash": "c17b3933e9656470acfb4711b9469bd4b230985c5a172f7276b834be6f8160b7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ba2982cb-95f8-415e-9455-83cd9acd75fe": {"doc_hash": "339d4c1d4441389833a02acf1a91c51fd85706960e4be7e494590a6ac9d1c4b9", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "e4410aaf-abb2-4a8d-bfea-f187562f2bd0": {"doc_hash": "9cb6eabc0a3121f9ad91ba2d68bce76d74c25158a546d6357352dbeda03db44e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5aa1408b-b07a-4aa1-8eea-bf887f5b89a3": {"doc_hash": "7617f44ff5852c60f0278f01321b11d1712c89336ff83243e00463b4a1be6da6", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "87ed0d05-1512-412f-94e4-bfef37c5b2ba": {"doc_hash": "550d843e3c210013c2231c8b48bf15970ed9e03ae94464eab0aae788a6cdc3ab", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "fc32e430-36a5-4c79-9322-161ad16c6a38": {"doc_hash": "d201c0a25184e5af4f4ab8684370a8deb0f1302506321382afedceb768fa4cbf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "56c16b6f-844b-4677-bc92-382812d4a5fd": {"doc_hash": "671b1eaffb4a670a44cb02302d024284efc1b30a089b5c2601cf483b8300f01e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "5ccd8ee4-69c0-4922-b4a7-d8b2b147be81": {"doc_hash": "db6d08aa53c82ac115b34ba26d1ec11bd72495c1ef1b2a0fc9662c44792b541a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6d861597-3dea-4599-8722-522a85f851bc": {"doc_hash": "0c97bd793de09348ee4e78180378751d12ded2fc5efd496183fcc69b1e668472", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8b76c49d-0855-4757-a225-fb12104684c0": {"doc_hash": "3307bf3821db7c47f033fa89e689e245ebc98731f8e9bf86760b77b5f407ccb2", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276": {"doc_hash": "1042c6099db7c205fb6b7bc4905e66ff80816475e758b2736cd2aaffcf68a7c9", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8": {"doc_hash": "2efb2b505ec393e18776b95eab389f4e9c25df255925a699c878ff61a1fe418c", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "05409e7b-3828-4a90-8ac6-5f1a971675e7": {"doc_hash": "6329f2bf94a78f0d84b547aecaa6ec8cd833453da29c433b18edb252bcb00a9e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "eefa4bc9-4088-4277-a7a6-d02eb7aefa9e": {"doc_hash": "5917e0169420ff30f9586ff4ce91c85210cb11217c9059e6f59f161bfe647c1e", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "4d4f1aac-9127-46c4-830b-0a632b765c55": {"doc_hash": "3c2ae7a39d52e8b3e02f3fad163378543db94ddd564e55b2ee12aff9103cf52d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13": {"doc_hash": "2797fef426ebfa2772fb46c486592963cd7b5114a81f81139844e7eef18a5d2d", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "90a20c13-3a5a-4ed8-9534-5f03f7b08c31": {"doc_hash": "1c02960f8ce3796a9aafbb71c54f3ba811b7a4194f00894efc3532b862a8472f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "375f3d44-baf3-4e91-aa24-d8bea56ec25a": {"doc_hash": "41c1a2ea0bc4ed7171b8e8da67446b977348a313cbaaf80d12a43a8cbbe46dbe", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "706a5c3f-650a-48b0-8f97-31957f713ed4": {"doc_hash": "c73bd8df0769fe14068af830d90b7833f1f42be61362bc2bdb5d66e388ac17cf", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "999bc920-1006-4ea9-b1a0-7682ac468906": {"doc_hash": "b7cb23eb240d5c2024878165ac1286aaf450f29d3631252efa49bcc255e81b3f", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "65d92c4a-5a94-452b-9d27-48ace8068769": {"doc_hash": "a8c9fa1c037fab2429bc2acd288abade05e38ecd182f3497d09907d7edcfe994", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "a1b858d8-7454-4d72-937a-89d8b0cd3514": {"doc_hash": "6f62484643af43d2de4b43933982f6e2f5ee9c8b53477c75c136abccc4080f84", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "286565bb-97e6-44ca-bffc-9d76a1504336": {"doc_hash": "09fc9d1954e3270231d687a6ea44e539b81c632efb16cadd8c5530bcff290772", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "05f08375-ea6d-4f8b-b937-e2c629034c8f": {"doc_hash": "83a46932e9134b776e4c9ba2f638dcbccaccd4e04ff935b5ad457a1142898ef5", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "82e0f725-a5e1-4358-8da3-f78e7eeea1c7": {"doc_hash": "7255579715628b6446c1421a8e4a526909673394500b0e3bc8537e939b2db3e4", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "8b65e748-db71-49e1-ae0d-0d4f5a5532f9": {"doc_hash": "79a7f8cfed5f2066a1c6e0e7b754b5a4d75324792cf1b13ae0c9a82febcc68e7", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "24def6eb-8e69-4d9b-be39-bcfb7fadd1ad": {"doc_hash": "f831e3f3237c98e4fa7cf319e4e9778e8c34023177484dfed5049e90a1fb9c13", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "3bce3dfa-7f5a-4656-b345-80227c0034b7": {"doc_hash": "0a06fdc71ece61084d13806885bdb94fb4bad8df925fc112190e45963297cc08", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "f2da6d62-8c19-450c-a515-996c4d4d47d8": {"doc_hash": "8f8c4aacb0661c6686dcb958c6cd3101785e8658ee4fa9c42c367d1ae5eaa1e4", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "6462c9de-5859-49b2-99eb-6a15229ab991": {"doc_hash": "3de92337673fe489a9736f56124edf2863f4544ad183696e627d3c16f8e27927", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d": {"doc_hash": "37dfaa6c7ad26d50e8c54aabec342197b5dfa0bd13f393d2d285d1859b3ba15a", "ref_doc_id": "1c68a449-74fd-4fdc-b341-71fb1ef746a9"}, "1c68a449-74fd-4fdc-b341-71fb1ef746a9": {"doc_hash": "a74f2f1935816db338e70e3fde67815e0ea524787276e0e401e644b1de86c996"}, "e1293de6-79f5-4f45-95a9-d5a2127a2f48": {"doc_hash": "1ce6c4ab6e5439563610a7f7990360f1864f0196ff5b1638f73f3ae1b71e02cc", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "99add419-66f8-4b9a-857e-cdeb93a95324": {"doc_hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "8fe72806-0403-44e5-b6f0-72437e6f4297": {"doc_hash": "23f69685755b4c2f30c9ea65585bebbcf521a6ddf6a7a708bc352feb29a81f05", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "beeb7bf2-8f14-4d7d-9176-c905856f6ce6": {"doc_hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "8d489c1f-8825-44d5-a921-ce683df31c64": {"doc_hash": "f59978e9ffa3d9f2d70b4f0d1b0f3c33f8cdcbec040372aac23428b39310e2f7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "97ad3b2a-bdb8-44ca-a429-cf323cc18abf": {"doc_hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "5b385e2c-697d-4cbf-8c3f-ee5184205330": {"doc_hash": "81f59bc1c356b1a4b39508730a1517639497df50fd93fab161cf2d8b4358870a", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "b4713258-16c1-4a8c-9668-dbc45ec1e83e": {"doc_hash": "9f3a9939a763c1ad6827e8157c733b1281b09489ef92a301e054e96694eab0a9", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "3d906c4b-09ed-40d3-bc68-c1d0fd769e1a": {"doc_hash": "4e78e06f1b4d00f80391cd212cecb1fbd0ae3ef36deb1ae792d6d4588d3345b1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "75c34d7d-f772-4ab5-950d-6f5cc0ab5900": {"doc_hash": "a961b839c7fbab737e5b1c8594e4237bcc20cf4e0aa3481a26075914c18d2086", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "70de6503-16bd-4c16-88d2-c2121d55b79b": {"doc_hash": "7c6ab1d3ea5cdc2644af7ce58fbd70512d82194745722c2e63fc103759c297db", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a": {"doc_hash": "ef0a9736cea77a3d1c19a10f9fbec665f99a000221cb317579560163d996e7b8", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f980eded-6546-4da7-a746-951dcee06c3d": {"doc_hash": "dd6f5e99fa609c212d609e50ed48ccf6d539f91df1d1349727f3c95320b7cb73", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee": {"doc_hash": "80c9a161b6cf84d30a3a22603ded9cfb8cc7716e1eda1cb4fba9d3703409c055", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "00165cdc-765b-4ce5-906f-011f68d87357": {"doc_hash": "b43dbdb37f7da40296433552a183bd1b1c41253e7755ceb936b81e5f8433c6b3", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "116da362-b306-4a01-8b63-9ca90ed88538": {"doc_hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f6720996-0050-41b2-978e-cd5d5b1c7351": {"doc_hash": "857731b0a7246cff2750e961fd7da4a8b007db25302d8c403fef422bfac24033", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f9f42492-39d1-40bb-8a3e-6d96b10cbda2": {"doc_hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "63e6a09a-cce4-4aab-9e46-cae05495b3f3": {"doc_hash": "bc16b8156a1298f2e49a0d2b86f55e9ba6c8caf8989d0b3b09363305841951f9", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "c8fcefcc-dfa7-41fc-b950-a2a1e67344b6": {"doc_hash": "7546a8cef6ed06d117ab64b3cebad5479c10f7c18f309d20f8435a19191d9be7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "29a716cc-b333-43a9-bd9d-3e739a6a6f38": {"doc_hash": "7d1cfd90ce75070a5535baa045ca1ee5265f076116f247c994e2ec18223b9282", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "785d28c3-cf93-4a75-a189-36ba85697e2a": {"doc_hash": "78def80c1cc3ac12a1ea1aa0ad85f48fe2e1f1809d31d8defa3fd1180bbda3e1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bac11d45-c3c0-4ec7-8acf-1688137cf753": {"doc_hash": "3d221e9fb1ad221a4db65b15f11a242ef2aac1fda361fd665cec8927212adc73", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "94a125e4-583b-4d09-998c-6f7b4fec2aca": {"doc_hash": "db5536eb0ec384094b3ed108eeb54cbfd09a1dd76e15230aba93df885874bf6d", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "d8e9d331-3eac-4338-8457-5347bb9d967e": {"doc_hash": "f70ba154d350f5c4d8ae205f9fc9631325e5a0533977e24b1053753dc63fa651", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "7a66b2b0-429f-417a-9644-101f2360e5d3": {"doc_hash": "6ae5176a3e2cae29eeac34a12375fae007ea680c298c02d107c985e2a5791575", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "1365ed79-7541-45ac-885e-f0a8ade8bfa0": {"doc_hash": "718b82d97b22361743b7b9874f6151c44f5131f4631404e03aff72d344a7ca97", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "29d68e17-7d77-4fc5-92d5-f86cd162066f": {"doc_hash": "c504254dda95bdc4fb5dde8e86cc593d7ce6740bcee2cd032ce03b2ac0be8a8f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "5d1daf16-012e-48ea-bb39-132e8a0e5cef": {"doc_hash": "37e510ffa1c26cd00874621d7456b70e428d017929e254030569622c4c320d10", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "58e345da-8dfc-478c-b6bc-857949b978fd": {"doc_hash": "2b08bd9a869774f884e9067a2a1e450fa901db9eb7c060c4f6c869e5636326c3", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "d8bf818d-de82-42d4-a0fa-42c52c6c0311": {"doc_hash": "3e7cb14e2af97446f3a1510100180ed2fed95a0c024aab013e69c9fb81525381", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "17effb81-f60e-4b4c-83d5-8c34d5a20596": {"doc_hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "c2372b8c-bdaf-4b84-b8bd-0b445d627758": {"doc_hash": "306ceb306f8f674fccd4aa92209768675b76493c008cd7874769ee09babc78e5", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "7a0e1fab-2aa9-452d-92d0-aaabf2b064af": {"doc_hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f3133d5d-c651-4597-a0a7-22d8789e4670": {"doc_hash": "a0965bf98f2267cc4ec8166a7f3756f89b6d5fda9efc66e91df5dce362a72d77", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "57891ce2-32a1-44f0-8d7f-24b4f6b2806c": {"doc_hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bf8cab73-f2c8-4398-bdfc-dac7494e9c7e": {"doc_hash": "91588dcc6da8441ba404695d94331d14e20e58f400a67096701f52a2b06ca535", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250": {"doc_hash": "83fc38797d1dbedd9d25cd75889293d24d5baa9a3dd4d64b473104f2e151dc31", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "1f33685d-5e46-4065-bdda-c5d1cf3c836e": {"doc_hash": "eae91ef8d7094d636d620fd4ec68a8d20ae3ad04bbbdc53a1aa79a3cd2a9ed29", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "43b9c0f1-8423-4a24-a2fe-4434daf2d75a": {"doc_hash": "0ed503882c1efad03e6ff2ce3a9e23b806ce46832f6d8ce76443936d0a79881d", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "ecc3483f-afda-484e-a108-f46b8a58a386": {"doc_hash": "45e7f0f838fff49030d3bb639681125c296543d8ee3a72e912b494652505c4ac", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "085023e5-874a-4200-a199-df73a601a34d": {"doc_hash": "1287e449705fd2fefed55678e9ee6e438bdfe3535cecfdbc4bd02ecaa0e3d427", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f0ecf047-f69c-49d7-9482-44369e5d23f5": {"doc_hash": "63f2b4dc1db14f7e39f8bd84b9de01b807b219e17df9acd738254cb3c42694c1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "63ce688e-1569-449a-accd-6a4f92779bfb": {"doc_hash": "6ba55021ab47be5c3e578bced436479eb26324e9409be8c0ac9d14d9ee7d6833", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "9eee609a-8e10-4a48-86f1-0e87740ab06a": {"doc_hash": "45d31a3051f8cc21b1f84c65369e6284cef65de0fee20f1db7951739c1af802a", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f8ca29ac-60fc-47c2-a9ec-8e93bcda0598": {"doc_hash": "a23268fad4032e0445e3f54563de5dbffaa091fff423a3682828acffc3fd5319", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bf305abc-a0fe-4e71-bcd9-7e4f50c89247": {"doc_hash": "8b3a5ca930521658b48016e4e8724fd33ff7e407d7c99994c03fd8d47fd617d1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "c4765729-02a5-4597-bfcd-57f62dbd8701": {"doc_hash": "18ae8efaa39326a93017671eb81bb34cbfd3fce4e9a46609798ccf861cc4103f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bc230ea6-588e-4927-b6b3-4d3ccda9c6ef": {"doc_hash": "7e115520be884a6878d482effd9e0157ea19de7bca52e48028b2215850358755", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "54645dec-d5cf-4406-8519-2caf793a8d55": {"doc_hash": "7b9479b3611e1287dd898c5e7501553cc37676c653b812311d65505fa924a9fe", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "2b7191fc-77a4-43e3-b69e-0120173a1ddf": {"doc_hash": "e076fc2b1fc8b4f094cfab04db00b1a8858b64b75213bfe998c0eb6b9ced594c", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "b67e39a3-2f5e-4ef1-b716-07d219692b03": {"doc_hash": "80493aef1a33fca673ff73ca101b6a709e9e143dd05524fd3c14329f58cdabc6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "203718f9-f181-48af-843d-32d463f4a412": {"doc_hash": "55e620853d9ebddd114fbdccf3c9c91e4ca68837bd6feafc8f5067c9613a9e52", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "9241ed6d-bc04-4f24-a195-3b27ac75f5e7": {"doc_hash": "e6ad5789c25923bf0c58844b796315805d716ef1fd7be1a081af60efb070439f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "08c2f405-2ef7-4881-9909-b74222a3fbcc": {"doc_hash": "17dd19b2a607941b1c9c841996c9c57d5b6363c9849afa03022cb8558a3d1fd2", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "648c429b-f7fe-4458-93cf-66c8c125639f": {"doc_hash": "3aa4188dc40982f03b8ee4696d126d14089f58e71b31ae62f23e2b6ecd229723", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "0b65d9b4-7d7d-4f18-87fb-15c4543c81d9": {"doc_hash": "4583b7877cc5c0605e65e514e766bdc120943e4261d7630e26360bee7a73f76a", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "a60b23ce-e7cc-4336-bb9c-debac1700529": {"doc_hash": "d53cfd6cf0ada2715d2a81b56b4ca574603261eecbd4653f049f69bf65d9b71f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "fd20aac4-0a33-43a5-bdd1-16c3a6cc535c": {"doc_hash": "ef426d0ec2d78eedb62b7e93d5abe4ec3c4d5df88748ce69e2eb96a90f24afd1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "d46c3f2a-a1b9-4d87-94df-504d42d8f00e": {"doc_hash": "1d8ae28c650dda6bdda6cac3e513ba2df98b5f8bc6de71439e35d75d05ca7eb6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "9f65f32f-f262-4e36-b472-019405837437": {"doc_hash": "1e6f3b34f746750e8238685e9af033b8e87664cf47c24125a09aeedf6b3d1f90", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "9791c9dc-9a08-4018-b29c-e742960e0141": {"doc_hash": "faba2abe92044698501d6ee44385002bfd4f97f90263df591a86fdb7810bb549", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "753cfa89-dec1-4ecc-8d9a-0ec62f0290f0": {"doc_hash": "84a4a85c00ef3c58c46f9c82f70447d08cf95bebe38f1b3593150763d43935f1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "87b726d8-91a8-4d85-854c-a41b637e133c": {"doc_hash": "23900dbf4063f2b92969c9325784c9f6d08f8777328c009974d4b0d1bcb6a3e3", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "a6e7c833-5f83-4448-84c6-4a659c803843": {"doc_hash": "ff4fa0e777077a16b97f87cc58fda3f89f0f0e1d88034713f83265fc453f77e4", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "d98827b7-94a1-4dff-a537-9b45a7f5232b": {"doc_hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "e2435de1-589b-4f6d-9c4a-f96e20f058fc": {"doc_hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bbe90f1c-132f-4a56-b528-07d0e66fc914": {"doc_hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "66641c23-4def-4b61-8473-67323a1372ed": {"doc_hash": "40e0e412b92ffa3c74940fd9819f505d9286663908fa9bb70b38cb9dea14afc5", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "e12f8265-0301-4266-a07d-df81002d2328": {"doc_hash": "445ff3499bdcc6f7801a3e223b7544c0f4d1bbc3925e5b6c6e7fd7a40b8f7118", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "d2dfe03a-ca03-41d4-a1ae-3a61424182b3": {"doc_hash": "4336d541477f37788a6623141b578babbd3a0463c4f7224e6f2bffdf2f5494f3", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "99f0352b-240f-44d7-b74d-456e90db0a63": {"doc_hash": "5cd6a177e427cd3d90d459e26316b639cb31ff799b13628ceedac0ff71952e74", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "dc87a74e-5142-4dd3-8797-e3235c902f29": {"doc_hash": "26f7b7537f2f72bdae3fc8ffd79758ea17f698c045e74bdf9a337324c4ab59f1", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "3a1edd39-c69a-4587-939e-7d7698afa334": {"doc_hash": "759175ddd6d7f3482a4253a131dec512a7392a449e75708f394d1da06d65835b", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "d8f1a304-ede3-426d-ad3e-aafced4c4d11": {"doc_hash": "4093447f9dd91a643fe3f72c4f83bc823c5a970734915c59ca66f4fc7f8afd86", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "c9ffce2f-fdd0-4098-8685-dc9bf0261883": {"doc_hash": "d569b852313acacdc6a7e9b7385bde95e4eba98b6139f47245c1c0d34d71e6c0", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bc837308-679b-4575-963a-690be2caa634": {"doc_hash": "ce0989a0a600ac5177878580bdaf6525eac4f6142fb096cd765b7e8260c66b36", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "e3917d84-eb21-4ed3-a124-b81b57e1b2c2": {"doc_hash": "258d8a6d4929a98c725d15d07bc80208e77d15b5430c6639ae8efe89a9642ec6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "16c787d1-e70f-418f-a066-07636d894505": {"doc_hash": "a16e894e851503bfff5ae9d593bafc5e5db7f0156df164905c452eca6c613d4d", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "79410707-4bb9-4fe3-b43b-b5d422f5356a": {"doc_hash": "4e9ed57aec19eec727edfc04766ef500cc21fe18270001821b0fdd211bca64de", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "1d294765-5d66-44bc-a87f-88e86b3660ce": {"doc_hash": "03f586978cfb9142f2523ab53353b647a622b3c4b4c57e8874594062c4046ec7", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "724f5ba3-cb28-452e-86f2-095b6d97e3fd": {"doc_hash": "f13182c6be6e33c43b16d6a53852d7430350a9811c719f8faa1a00b0d5fe34fa", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "dc89cc24-1635-4a30-be77-34a1af42904c": {"doc_hash": "426b503ababd84614b640d1130b03286b71e6288ac1d5a206c9a5adf116a964b", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "77bd88a1-2bf2-4ec9-bf59-5ef03214e438": {"doc_hash": "134fac228cd1c8ed043a91a63136a722c6af5d01856ed44c569fafdde9855ef5", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "2514b96f-7ceb-4548-b1ca-f2bc400a2407": {"doc_hash": "0c6e89f60438a95014a5c22b5d356ef9765a290dcd37221ec6a003a61b8f3236", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "714013ce-508a-4178-8b28-151587aa02a7": {"doc_hash": "5953587173f77289858407556f96c593524bf11bab307c90a60d5f84e3a70897", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "177dc299-f92e-4a9d-b070-6a0b8a097a5f": {"doc_hash": "d38a4cde2ab752bec3efa84766ab6849cf43a210914a30d04467570ec77f1efe", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "9c2f8726-de3f-4de1-aaf2-f3f39903a8b1": {"doc_hash": "d0baef580ffb344814909965c944aa2f2f304b7683ea5bb7d3d17235b7bcd3bf", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "e70347c1-8d10-4461-85a7-5be699b2f78d": {"doc_hash": "42b38c3467a081a6bd179fbc543e841f2fed1e0782fbe7c37c047d7d3e3bab59", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "4d33a4d4-1ab3-420a-a807-77fbd183e918": {"doc_hash": "55f4368d7c138aeef5e7cfc137914234f3fe7c788904173626c930ddbfa83778", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "977ac93c-dcd8-4eca-85f8-a2662eb38c6d": {"doc_hash": "44f07763db65b11b3207c32fe5909f38167bf290974456dbc6e75086559fb157", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f0a17810-6bc2-46f9-9a41-cd45146387e8": {"doc_hash": "1a7c778c366fbc7407cd9ed7f019bcde0f722963c7b0b0035fb35680a68cd918", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "a389b74d-a6d3-4625-a167-9b1c1ed22b3c": {"doc_hash": "0a471b8b58f02a3c0ddb8f1d0c51c16c253328d3b83f3143bfdb65bd73b74e58", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "409cc92e-464c-4dde-975a-d1215fbd5a5c": {"doc_hash": "9a2a3a55b6b5d1224cc61daacf315bad77e91f4520dd71c96ff698402a2e81ac", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "30fdebdf-516d-48ff-86cf-bfaab3c3ae6d": {"doc_hash": "7410558d8572ea510542dcf30c8474c71d5a86a6fc1787baa4c2fc1b70c507f6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "2cd98cee-28f6-4a46-ac1f-119dbfe72253": {"doc_hash": "06f67df0d5170613aeedd5c2a114d2e9f14f932799699bde88fc5d5f2efe8e3d", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "64cd13c3-afaf-4ce1-8a02-b01610ff8064": {"doc_hash": "68cb452f54fe21efbdfdb65550e1773254bddcd4bbda89304d27e13b30bdf0ae", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "646a7216-2de6-47cd-9da5-e43fdf153863": {"doc_hash": "f717bc4936799566dbe4761fdebb9ee215af93ffc370437c8e212fae9079191a", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "69c1c1b8-81ad-408d-87ec-18378846ffbd": {"doc_hash": "4e7e807cc483e4704184932a02110a4d6188f5a150cbee7cab32245157464aab", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "1bdfa5f3-f984-44e4-b8c7-c7629d835d67": {"doc_hash": "228ec47c4c2f07042dd12e41bb7974cc9e8a6b6e16fc8179d1bc25863dbc76bf", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "b4272f78-47c9-4800-b59f-194275c2a3af": {"doc_hash": "cab604bbebeab4710ba3bc8ecfab395f5075888c4b9a9fc6d19fa26d0336256f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "293da2cb-41b3-4fa9-8298-6229a8d6d9f7": {"doc_hash": "de6378ba2154426b5129443e54119860c511e50e31681b19a15364023c0ef504", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d": {"doc_hash": "f4e3e3ab9b0c11ad9be41e753904b302488c01bc6210c9ef61064bb37271d2e9", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "7db7d3dc-5887-4e5d-b914-551d2639a122": {"doc_hash": "02c565e1118c4c2abafb5173e9b2846ebe61e589485cf668591676d34c591356", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "4592e907-8966-4da4-b3e1-13dd886fce56": {"doc_hash": "1e0f8283ccb2ec24c92961555ff618286a334f25968af4a161eadea68868e65a", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "72aba6b4-1ede-483b-9447-21a27d492e54": {"doc_hash": "17f09fb6db2b48d59f6ca7e2d838910e6b43cf1d4a7d7936db510ebb850d5540", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "93740952-7ce8-43e3-842e-db8c89ff265e": {"doc_hash": "1d29df4d3eba7419337e0302303fd39eae74c4468b8196c522ac53179469241e", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "3de60956-2b5d-4b72-9e4f-419786ed6de4": {"doc_hash": "8a59f79235882a0fc526b9716e369ae0a9096563fe4f3d8460f80da1593614b6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "7413076b-ec91-49b9-976d-595bacc50aef": {"doc_hash": "684229718b809525ada561d28c471ec9bf7e6f0ce611ffa101313f4b5577800e", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "9eabe137-3529-4319-93a1-8108b32b96f7": {"doc_hash": "21029394e3fa0afe8c4f128db85c83ab80a0db6c6f326a62189b7a70128c56c6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "4a93d207-dd6a-4048-92b1-6476196ba807": {"doc_hash": "3741bdaa11ec4656cd6ebce94e1e597a0b9879a113cebe85f5f6151afef7a32c", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "f77ebba1-1721-4940-bcb2-f682d8dfab85": {"doc_hash": "d590b5de17d133a6229c6070f2c567e5ac23cc52f517549c0dcde699f300a1e8", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "00a1b3d9-a95c-4503-a484-4121b3286bee": {"doc_hash": "91342230349dfee0e1537873ff3abf230e82229d02601e9c0a64864f42d881d6", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "bf9eabd6-e35a-4dbf-a5ad-2c3610508656": {"doc_hash": "cfcb882f2dfd4fc31f7878c5ed3b304363dd29ac2bb45024eb28c29e8f87f0bb", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "28225bcc-12fb-4d78-8636-f61732c31b5f": {"doc_hash": "c95fa521bc414b2ce648496dafb43407932ea805ec9243c553e8afd147f6804f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "4c63c4a5-b606-4b46-969b-655fc2f2065f": {"doc_hash": "d1303b943ff200acf306cf8af0a405c27b2f2c4361c303fd7d803a79a23ef88f", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "6e8dc8b3-c7b4-4824-88ee-d2255f344963": {"doc_hash": "2be0179a11f4a6174bc4034eb0af89dc4cbfef59440b84f83d1ce467f7685cc4", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "8cd61283-b3a2-4e30-b074-30b96757e3cb": {"doc_hash": "8a8bd80cd0c7d50fc0cbdcffa40a2b242081acff6e810a4757cad7edfc2d8892", "ref_doc_id": "41c05572-7ece-41f1-b893-135259e23d45"}, "41c05572-7ece-41f1-b893-135259e23d45": {"doc_hash": "9fc54ab88737b502d6c0610547f8ee7779a8c5d31c19d184f169b22918eff5f7"}, "8f6a2f4c-950b-499e-b593-a9b21954e938": {"doc_hash": "ab9ac6e6eee59e76a34ef690f3d914c1e2fe7b524898446aef3210113ebdb764", "ref_doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "515b26d0-017d-4538-ace9-2a33e1595b19": {"doc_hash": "ed0fa89ad8d89e685e50c2c4b4693998da7df4d348b9c43d63a3f233e9fa67e7", "ref_doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "6df56e9b-de15-4bbd-b39d-42da20d77446": {"doc_hash": "a773b756efa3c86b72428aa19ef3a97d846cf67f7328a3f0362cac438f83ed85", "ref_doc_id": "4c21e74f-abb3-40e2-ab1b-45cf05feec19"}, "4c21e74f-abb3-40e2-ab1b-45cf05feec19": {"doc_hash": "6a0aa64f8a84f66a8ff96bcd329f3c1a552e15641c5801dbb41d311dc51578e3"}, "9006df30-620e-4f43-92e4-0f5bf11e1d78": {"doc_hash": "a9d9fb7556210884221e771726349028a71c51bf9f6d96b51f2a0da4ee48de64", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "a0b4415b-08fa-41ec-8cfa-cbce73491806": {"doc_hash": "ce5047111cdee79afe5b030e2c1b3f7e9ea96dad650d9d0606f20ab9a24ca270", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed": {"doc_hash": "1eb161cbbcb7108a3ca6036959c355e76487d522a3b52d2281742767d078633f", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "b0fcf8a2-c0e4-4e72-8dbe-5782858352f6": {"doc_hash": "3b44ea37e20a2c9210b021f93ef98555b47c5447551be1fab9c04fdfba291351", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "3da3f87e-c670-44c9-800f-fe5dc2f19cfa": {"doc_hash": "157412375a789ef0066c581ea659e381c3dc2297182ddc83e8a3930bc08b313c", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "386766c4-8654-41af-954d-7e93a2167f70": {"doc_hash": "65acb73cf7425566e9b3d88d4fe9ac23eff09b53293265ded79a7711623242a0", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "d39ed896-48a3-4bd6-bf9a-39c4d50de442": {"doc_hash": "62efa22102ca373b929039540a5bbd0db085b17274d6a037da8644b18be3af44", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "f7867c13-c2ac-42ea-a00e-590713751cd0": {"doc_hash": "864b214d01effb8fbbe0e0f5f46210d41d9b30746600b1381aed32ed1b08cfcc", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "a025dd2a-dacc-42ea-826e-de0c9b49bf18": {"doc_hash": "ef3bf0e274d4dc41709e07d9d9977896daccee2ef25d4a0e0e3389cd10f75938", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "70f84f63-3ea0-4143-86c1-2a8c5bba9a73": {"doc_hash": "9fe08c53127c219f2e55808b9e0cd709ec7d4edfcdb65deab5b9b6b255dbbb08", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77": {"doc_hash": "c746c13e78221c089f158f67b8148ce0fe86caa0fe1b60dcaaf289cc49334c3d", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "a2ba7158-23a5-44ea-aaf6-ce6347b3570f": {"doc_hash": "eb6ec0ef34f339188bcdea0f39f98ec4b752403ac73574a295fc3c5f14c5661d", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "0a0f1352-52c8-4923-b246-808106ab1e3c": {"doc_hash": "2841528cb9e228168f0dd34b32cd86eec1c470bf41da37a9ec04d38ad40b59c6", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "5cc3c626-e526-4278-8966-67871da58de1": {"doc_hash": "8cbeef5fa04a0a10cbdfad89cf03166a06a141e28a3a2769930ebd79481a1d3d", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "79cbad7f-ddf4-400b-98b9-1a43457b9305": {"doc_hash": "d66ef3fa34881b95a884b99b246aa239b628e19dcecf4895e2102dc6982e5f50", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "6f3c2e7c-a885-40f5-87a7-9510dbdab4a7": {"doc_hash": "7a08d1e083c8645bf0e452cb4c648bbe414a82c79dd3638c464d8f687992da33", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "4002194f-58eb-4396-94da-c2989c57c87c": {"doc_hash": "0e28d4629752b02961a40967eb584c81ca8a69e558fc2f31ffee70538e31fdd1", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "6be42a29-eb9a-416a-96e6-6ed7a73abe67": {"doc_hash": "ec45724043268ef7bb5343130071453383b53ab746bd10f9f2ac325c9db04c21", "ref_doc_id": "c1f43592-4f72-4854-aa31-285488c07f40"}, "c1f43592-4f72-4854-aa31-285488c07f40": {"doc_hash": "e3f2a4a8678e3493f105b03b818e362bfeb4ab7c4d7d17b69f658a2bc78df684"}, "aef387fe-9f00-493f-9a4a-92ef6b5be95e": {"doc_hash": "574390836b674519624bb4a4446ac0bf28249b5a8423bd1caa513633f1a3fece", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "6c82ee55-94f9-4445-bf23-dc7a2a6a395a": {"doc_hash": "d0aa85759752c95e6dd96a7ce85f67536bfe7ed85b589739f35ca54c47f1b0eb", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "5cfdc72f-44ab-4a3b-a8e2-fe3947539ada": {"doc_hash": "a9a25291fe94c0b5c74320b58b4373ff685c16a4bab2c1db54f477ac4ed3b3e3", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "5eb0aebd-f9ba-4fb3-a265-c59ffab89f24": {"doc_hash": "93233213b4b4399dbc09e99cc935a391844b3d770e7809bbf5a59eb3d6bc6e5c", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "1f72320b-2338-447a-b1ce-c42e60aa2f5b": {"doc_hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "14783564-1fdf-42e0-afc2-19b1a1032a09": {"doc_hash": "df41934f6d7f49567030bcd8117a65d2cf4e6c4cf01e3fe4e7e8ba7dcf50ba1a", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "1bab286e-0147-41ce-a5b4-13096c0434be": {"doc_hash": "a67e895a308a01d80d6323a4cae89f157b041e3ad912b061e778dd5acc0acab8", "ref_doc_id": "a77a586b-cfb1-42ed-81b0-a5ac37e35f58"}, "a77a586b-cfb1-42ed-81b0-a5ac37e35f58": {"doc_hash": "a5cfdf7fbbb4509bf8821814def18a2f3ec281e772f587ec1ce6ee66000c66b8"}, "e1d9f9dc-f710-4835-8f56-dfe018a8328f": {"doc_hash": "6d3b1d3b8be5e529eedad2778c6b5b64acea4ddc11469f43707deff8ec6a375d", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "4decafb4-16ce-4258-894b-dbb78124842b": {"doc_hash": "6c39670846f0153b883aff265118a2de7cce684bfa17c4a1af78e6b1dd7c3892", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5de01344-24ec-426a-a5a1-026ab9866710": {"doc_hash": "6dbea95910497eb891141496635ce9ba3d32c648d230cc5a1e00ec18eb4124df", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "74962a78-60ed-49e9-87f6-3ad2fd44a7dc": {"doc_hash": "333e6093f083fc17f86f7983a1390e4da1be719f40600812620f9fb51f66a55a", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "ba0ae850-0e05-483c-b73b-8b42ed1cc248": {"doc_hash": "098a9cc9cc474a893da712d373dc08989e727dad9a0910f9ca73eb424f43b1c9", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "4f5ca5b2-fadf-4278-90a2-f1c491d90706": {"doc_hash": "297d132c4f17ac90aa865ba08e80c58acf592ce4f23b7736a8df231270bca76c", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "0c44367d-7b8c-4232-bf4d-f4a7767ee3f1": {"doc_hash": "2ac3eb5f5f735fb8d4e8169b34cbf3cb090a8336f0fb5133aa83033ef93041c1", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "3dd392ea-d0bc-465c-9fb9-3de0319811f1": {"doc_hash": "9517e82dea82165ee1f740744b0eb4c644ae451cf011d5a1e329e3da98ea7cb8", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "95f30ff0-f47f-4fd8-81de-99a10686d7d2": {"doc_hash": "96fa13fb1dc27247d2f63e9b9b2752e0924f754494ceb2498650be27ad8f7cb9", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "69875d39-0933-4e28-880a-6590ba465c43": {"doc_hash": "34d66f706f9f68ed9d694533bceaba2c745e43d1a2de246b61c26eb7c38fa03d", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5f769bc4-61f0-4b58-b454-615c82bcb039": {"doc_hash": "832f4f2a199a37aa1ab5f3821c526cfe6693ee0472f97323cfa3c4223e06a280", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0": {"doc_hash": "1f1b3b6d4c5b0d662b3b1b58bfbe9900e24a43abad8015ea38e59a56f9d1c9d1", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "737216ed-c07c-4049-9134-a34c8c4cf472": {"doc_hash": "c4898ac4130018dde6998a13588312a8d1fa05a114625ff3a14ecceadfbae7d1", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a": {"doc_hash": "765f93b31e953de2fac45df87a6a023b541fdc214edc87bfb2bdebcd9deab161", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "8ee590ef-d228-4220-878f-aaf27b9395c7": {"doc_hash": "e0fa60e59e9f541d321637a0f9e00577baeda809cc0fd00eef0488c856906e2b", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "e411e136-0b3b-407e-b265-99c95c3610e3": {"doc_hash": "f4573fc62ac62fcdeba14cec152b1741deb8095b2724e1e51bd34d0d0885bd8c", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "73d66fb0-55e2-45d8-af34-16e854471bcf": {"doc_hash": "2c0afadeb9bd5465425c03dbb2fe0228b7837127070ca7482c69fecbc7f657f1", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "441471e5-e26f-4f1b-8711-f8e270e5e9b5": {"doc_hash": "933e0912928aa463a21bdcfa8bed2f8cea9fe9e1cf6cd70aac57f7566da874b2", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "be4a1dbe-dd07-4047-b022-97e99c40608e": {"doc_hash": "341439513d83a9d3452f9e60984a8aa84f6e540b697be6ccfd77cceab4166866", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "b20e3641-17a5-42a9-816d-4f5ea34072e9": {"doc_hash": "e5f4f212e7b627faec703cd11e45422925c5e8e07d26fa79894ae715197cd412", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "abe05f1b-6d22-4868-82f5-af5ed94fcbdf": {"doc_hash": "156b2a7f99df6e8cf71334319a6c2501c84f60cf4e9aa841bceffacbd09936c5", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "eb7a9cac-1943-4f3a-a8a4-528815b4ad66": {"doc_hash": "17b3866fc7189b4c21a492e54b780b12eb309ac2d0efffd31a47c78d1aecc8ee", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "36c3e911-07d5-4adc-ade4-4cca3b89784b": {"doc_hash": "cadfaec4a6c597f4d790c50a38f2993ab81818f9c51f0a1b9b385702a7a359d7", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5b8e2202-2300-4cac-905b-7dbe5f4b7e81": {"doc_hash": "724fd5bab6bb43407bcb32128af7b925235c4d16c1f88870308c801073f1377f", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "dc897430-daff-4f45-83cc-4a7ef7dbf571": {"doc_hash": "1c7809e267b891d5e640c4ad77c2b78063b9484d8740418e73548e4ee9f20aa7", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5b9b0813-fc4c-495d-a4f4-f0f1850f19cc": {"doc_hash": "fb11864d7d9bb7ba8c70dfa847b11ff748667d4b92f4e570769996946e8a6499", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "a69e5a8c-9a09-4730-8fa2-d6391000283b": {"doc_hash": "b120d12609779d294e95689621ab0b96e744f0ef2780ed16f867cd5f33d5970d", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "972f85ec-ba34-4b4c-bb75-425f8328a112": {"doc_hash": "44ec999a70493ff3bb6a17754ebf9fd5874c3b39daa82788a70f6feec2071c29", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "9f2acf9d-de30-4340-a625-4e1de579099e": {"doc_hash": "4aa2e786f1d5f03e720bc5262b6ea175607e4f985359c115b4e7ee6625a71200", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5fb7152d-4df6-4a74-9b06-7c4e59635423": {"doc_hash": "b96ecf201653a9a92f85c2f6c91f4543b2381080350b68134fe7731d59a5c0fb", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "a26a1046-a37f-44b7-b1cc-5b364de92307": {"doc_hash": "606d92024ce3ac797f963af6cd7f1478d3474d3e5dc03ca07426dec1858ffb85", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "68e69dda-875b-4f88-9894-60387b9ecf39": {"doc_hash": "32b8fb6517ca543b4168b57c9d80bad422d2b66d80fe80bc4f9d8480ae36b9ce", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "91f0d751-73bf-406d-9f3b-5bb88615b284": {"doc_hash": "29f544a88cc48de28be37649db8d48bee5b10a4c70a3709f5536731406182cc3", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9": {"doc_hash": "c13df48b79301dea01ce31158ee4d756117136c4fdbdba9feaa126f0701f83b0", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "790d77c9-1cbc-4bff-b693-ef2e6deece32": {"doc_hash": "449db45495b067732aaa12212dbb750bf6b50f03f8326ed2d00db156d1d44715", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "97017fc9-883f-4e0a-bd1d-3201ba26743b": {"doc_hash": "7928b2c76e0c8d5e17d3bdff99bf5506dba2b98ca927aee971aeb3c40b45919e", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "c7d60546-fa1f-43ef-99e2-f47a9aa6a194": {"doc_hash": "8156bbe12c3046eba68853a694971a1a89c014ba02752eef4e500b999b303a1f", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "cbf79179-1f64-45f2-b817-d1538f8116a5": {"doc_hash": "ea9357273faea0448555c5a7a3f36f2f6135ee9bfd667597560bc467dd5c7f07", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "63b14d03-f30c-4ae7-93d3-b097f26f5df3": {"doc_hash": "1b3227695ad9e67533f0e0c9f29e4a364555d845fae0a6565f14bcf9eabfab3c", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "1e6848cd-69ee-4e1f-8b8c-f5551e92d648": {"doc_hash": "30cd2e2c9fc90c016aac1090e7c1c940271521bbc658f8dfa4be9379eb2c07c4", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "4292a0a3-8108-44f3-8523-728b66cfb241": {"doc_hash": "06dadb6c651c3cb809899168df63f33e7a73405c35037c0b3df24271afea590c", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "edbf2b56-ad60-4f47-991d-ab4fe98381f7": {"doc_hash": "a29c463c3dd3a43484d020aee56022c59cb3ff08a1cd3fdd75d3ffb985b5995b", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5343cc47-3286-4789-bac0-8d2742697b44": {"doc_hash": "11291eb1b059846f960dba7be0aa0044b7a43354ebae4b80e8ae5bf80f73a6be", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "8ef537eb-034e-41cc-9cd8-9f2e88001192": {"doc_hash": "6a2d79fb8aedd92962fe4ef03c4602b3c9954d9c05e7de41589be4eb25b9d85e", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "2bf668cb-3cea-46b3-a5e7-b28e5319bf04": {"doc_hash": "b8a56e44b603afb99e22c4ee30244fee100ea9878c322e48e839a000e1e61048", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "38d2429d-16cb-46aa-9f45-a035dc6243a8": {"doc_hash": "835fccff5c1dc31e80ee9fe5d63b8d1f79f42c5e34125fa3ca155297d3c7b0dd", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "ddf95a47-4064-42f5-bb8e-29f3876bdeee": {"doc_hash": "a1288d6deb4bd35c0d0119deeb7c87856a5e7ece82e78fe2dd0edf011941c0be", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "8e5676d3-a029-477a-8141-54a150162ad5": {"doc_hash": "8774898986437192b5214596d30fc0b5842fe95dfc0e0ff70687a942953353ca", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "f11b4391-8f99-43e7-9d4f-d576065d986b": {"doc_hash": "b174a0bb7de5793ad4c19feec9ad2971cf9977a3725d76b8352147ee689783f2", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba": {"doc_hash": "838de44605bc39bd83b49609fda5cd1c54b0311223611ca5703c7be8bab2e12d", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "a7bd30e9-b360-435d-af51-e134f71449c6": {"doc_hash": "bc3adf454761bb363b4200ceecb426b52e0df52f04aca04aa7286978080f3ea4", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "492f8d8d-418f-4359-9646-0671ecd81a0e": {"doc_hash": "caa414713cb1846dde7975063141b7155e5dc026cdcf747b15dbd286e621edbb", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5ecabaa0-43d4-4bae-9473-64ce3f957e02": {"doc_hash": "ee0d4018cbb073715e45b3786cd7d4d9e4efd1e3bce6f28c2668f8d152337efd", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "afa84609-1657-4af3-a6cb-ca9a98fbcfd5": {"doc_hash": "6676b8a92d4c87c91e8c7a665e165412c24c1b85a6a78f198ffd6b1b13ea7b57", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "e478aa92-7c27-43ad-8a76-5922e080eaca": {"doc_hash": "00ea16a04b2d6e443fc6f398df32cf9b55f18566aeaf5bcdf20d3989151a7fec", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "0a99ea88-32a0-48cb-ba44-0312b17a6952": {"doc_hash": "c530ce600a9c745d7207e7827ad4a85a8d890fd846aba0cc08db54c0efcbd4ae", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "435ab031-332b-4ffe-baae-a9fd1f628d42": {"doc_hash": "6f38371e097565e6afb081de110ac367e25605bf478cc77e44a516d9e9e175ab", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "c2f69f30-7241-462f-b5ef-5068418d7c21": {"doc_hash": "60ff5f70c597cc2b4ef4798d48eedc849c815529303c075b63a8e6213f14f13c", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "0fae1471-18b6-4379-b766-596ab1c27a57": {"doc_hash": "4a22ec1033a5b1febfb9a00c1db8fdbb4243b5920d72888ac1fb6c3cb7c4fff4", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "3e01adc3-97c3-41b0-a8a5-7b13e8edccf2": {"doc_hash": "c5756eea6e3c242566ddd72a75c1c284bef8602d6472aba9ccb014189343ff05", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d": {"doc_hash": "91e9f7bf0f4ccdaef68419a1754965d0ff3df4adf132af16d7b6a6dc4e503418", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "744a513e-df03-4eca-8b14-bc342b40e2d8": {"doc_hash": "55df867e33852037d0222b0f5e79c91434aa2f953a4de856eac2396fbe4292b1", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "740dbe6e-b64f-4406-b96f-34a96b8b9c44": {"doc_hash": "1c92c13adf8ee60b2f3b4dbcde54e794e1cd4eb5579ff259d94ce3961a912ef3", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "a7582069-b5a6-406c-8b7f-40d1ecf5030c": {"doc_hash": "36eabcccfc4730261a3834464863db7a2dce580b82d34fa3ff6c21b0b6d4a7cc", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "62903189-ff34-416a-b9e4-67cd91fdd049": {"doc_hash": "e530da01a39a8d96229f8df9071485fa51ce64ecc2db641fb2bfbb9f6648c676", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "c7f53ddb-7a11-454f-98b4-a371814b5047": {"doc_hash": "837c7b3ec74e054b7a0a920609d4213fdd405aca93f215fb8236c909e819924e", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "b77db9bf-e17e-4af2-b241-a9cf6ba1b058": {"doc_hash": "3ea84033c06e3586332c375a3e7b55750dc2235a3530e6b9f1f02bb04f800c94", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "a43b2900-7b92-40c3-ae2e-69387f349f26": {"doc_hash": "3d3db93f80663bfd5d99d6eeb131c7d18aed639a07dfac3d35cd1ba968fc8f16", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "bfef31a4-bbc8-415a-88a0-d2ef2bffb81e": {"doc_hash": "4f51b20e98079ca1c09610520c6204cac73daec7d1d0d4b7bb85fdaf9ff6c4dc", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "3447dcfb-b79c-450f-8e74-5d4068bd816c": {"doc_hash": "5280116def19d1035cd4af7ae0cbea8e41b277f162116ffa37acf3c8336c525a", "ref_doc_id": "5c575801-e7bd-4fb3-b570-1817a2498619"}, "5c575801-e7bd-4fb3-b570-1817a2498619": {"doc_hash": "bcc4a700d57fa305e7f1d9b09cef5b771b8c7174daa251d143b4737307e3a14b"}, "4c458e23-0ac8-4058-89bf-3aff07661395": {"doc_hash": "4c849476252bbc52c6dd8901090d49718db6bda98a278f334f1a2ba9eb6371b6", "ref_doc_id": "7f857191-0510-48df-a636-f4f7f8118db2"}, "7f857191-0510-48df-a636-f4f7f8118db2": {"doc_hash": "4c849476252bbc52c6dd8901090d49718db6bda98a278f334f1a2ba9eb6371b6"}, "b7e2a00d-9837-4537-bb23-2ca10344ac4f": {"doc_hash": "762d42777a87cff58db5984c5b5803a866c745fae90e44c0108285a753a200e2", "ref_doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "a62695a1-9bd7-4ea6-a9d9-3ded0ef31948": {"doc_hash": "3c069546a5f2868857c02f2879678dc1ebf4eaf14883b69182f1b0dfa41e1965", "ref_doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "06394856-8211-4dac-a95b-30479062ab38": {"doc_hash": "2f95e13db26fa31ffcb6472d1e1ee7fb7302018073f60ef7271345b749830beb", "ref_doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "34850369-81f1-4913-843d-4ba72cb9ddc9": {"doc_hash": "3aac8260e4ea9c0cff89d7549a8cf36183cd5e9a88865af534cebf70015634b4", "ref_doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "4055c94c-1efd-425c-961c-938243925a8c": {"doc_hash": "02cb87b838a51eff4e1816889561bb0f24014b30611f4338fec5b9ff8f12bc8e", "ref_doc_id": "cc924721-c1c2-48c0-870f-4d3607691585"}, "cc924721-c1c2-48c0-870f-4d3607691585": {"doc_hash": "a24df2ffb97c05059c6984ee655c66200a13708a6814c21dabd01c6c20e4ff56"}, "60d5bba2-aa85-410a-850b-47e4190c0778": {"doc_hash": "531d946e76d1debc6bc8e26101ba4ca4f9d81722be157ec0688514b6ed8f3602", "ref_doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420": {"doc_hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "ref_doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "137f8bc5-afb5-4e40-8913-84aee3e2d5c2": {"doc_hash": "d2dc13f86d46aa9e1d266c76458e01931c4291bf109eeb87cc5c4c1cc8bc70e5", "ref_doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "2196c0f9-a857-47ad-bf41-bddb1b680025": {"doc_hash": "e99e938943f92e0b02e08042fd527a8b1ccc547902c590d54f2922bb4d9c10a6", "ref_doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "a6baa05b-444e-46a0-b3a0-225ec2215e74": {"doc_hash": "a8102d13a856b8ac9029dbd9266b4496a314204867dfe6eb674af4600e059ae2", "ref_doc_id": "d1dfdbf2-5646-4c79-abef-bba1b8b98084"}, "d1dfdbf2-5646-4c79-abef-bba1b8b98084": {"doc_hash": "ea0aebee3620e35b127faa0cf259468916b955c491c8a6000afc3554c04b12f4"}, "d941f0e9-e48c-43ff-b739-5a9f59eafcbd": {"doc_hash": "22c8bee81a6151509c9295facf34163fc38499c2848e513571d4dd6f237e0de4", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "ed5611de-350c-4f16-8c64-617c2a4bd876": {"doc_hash": "3775435dd19fe160604783533260f6d43a780741034c4fa5b250c097486f85ba", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "8eb1beaf-1c9d-4e93-bc84-0894c8df850a": {"doc_hash": "5de11c9cafcafb99b868420dca635cc8a0bd80235c12064a21aa1f299b03b53a", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "d47cbb17-d384-4b63-91a0-f8bad1e03c4a": {"doc_hash": "cff950013e764b78d3bed9e97c25018504f5f491d708d5131632b30c969916d7", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "d46b8379-34b0-44bd-9ba6-3987004972a8": {"doc_hash": "e523e9182931a4f2e13898c5a377ad3465c46adb3d4d35e09fb37d3954d5c217", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "cf9673ba-d816-4894-b63c-69ccab4d121c": {"doc_hash": "e0a7f78833b60c91329ba0ba0a7173d7a447717772538e6a6355fe19ceb09c3a", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "58dba977-c5e9-45a1-b8d5-56f8a118b2e2": {"doc_hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "1a062026-0144-43a6-a6ff-2c6566d04572": {"doc_hash": "7d0a86216bb040260aea67fe282298634cf0f9d2774922ea3c8ce444a30fdbc3", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "b986eaf4-ad2b-4e10-a62a-1b06f7b6294a": {"doc_hash": "c1a931717ba22f501720f79323b4dc107a7de6eea248015ff77c6767a4874574", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "f7c96823-4cec-4a54-87ca-85c1d7825c61": {"doc_hash": "1717e99a729fcaf59283a138254182c3bbe26908d46f45d7ad81f747149042c9", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "3daebd93-33a0-4b4b-98aa-764e88e86137": {"doc_hash": "0c76a9b66fd9dbc8ab65925a5e11a690e5560cc075eb44b6291aa79e3e204b64", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "05008152-1437-43d6-ad14-61b67efe4965": {"doc_hash": "eccd513f9d4ee77252556881a9fe58bce53570ddb4c0a438e931db7e96092b0b", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "ef1e512a-efdc-4d5a-acc7-190087f9d4a5": {"doc_hash": "659f52d5195249ca3f2b9d475e26f9bd371811b6bb3cec2d5a9bf8bdcf62d390", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9": {"doc_hash": "be4a8cdfb75ca9e03a819437227d365e3da18f8d04cc7b55ada93eda591b6112", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff": {"doc_hash": "b25ca008d42cc1a995388a56ea4de5a1b41e07257d3d7ed0d213e39e15365403", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "d0b51c73-8741-49c4-9c00-187b8704b13b": {"doc_hash": "4d0c661884d7fd24fdc2d49fb8cec579043f521b3d5b8a47bcc70cc7dcd086fc", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "31db50fb-ab26-4ecd-b326-73f723bc56fa": {"doc_hash": "31ad0b3f13f7d46411815418d15303f09312403fd4d36896f2b5956d2f81ae75", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "aaf0380a-cb76-4ef7-9ceb-f93490dd66f0": {"doc_hash": "8d18e33caef2514d6c4774243a1ed7f5f1560ebc92f2552ef841f6b7090d09e7", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "ce535f6a-4c5e-430c-bf77-4bb294978c44": {"doc_hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "3505ea08-0b5e-4ef2-89d9-138108b29d1b": {"doc_hash": "53984afe1e92e2434c70d5b5205015c640a8c6a50dcd4fa94fff39659bcd464e", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "92da1111-5ac9-41a0-bfb7-7627e5cb94a2": {"doc_hash": "86838cb4a60ba359eace83d4dfb0f041939b4e98580fa47a9c9dce01d3e3a127", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "7671a97f-fb50-459e-8567-5de47d11d78c": {"doc_hash": "aec2df0d02169339832e2efeeb8f23050c801e7fc1f9cae728523b8b3f27ff87", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "6bf2f883-8a7d-437f-b565-cbb99dcd4d5d": {"doc_hash": "f506f91fb5068b6e8d332d8ab9a63eca2251706ccbdab6801af42285c530ffc6", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "8e2e9de0-d0e1-4cbe-8680-870337ea05b2": {"doc_hash": "d1c121236d2e1c4e46a5119a9e67e7c5654f9dc4c3b61fa86fb3614373e938b8", "ref_doc_id": "81da0f96-1d36-4a7a-b138-03155529eea6"}, "81da0f96-1d36-4a7a-b138-03155529eea6": {"doc_hash": "f3e02e45fdc550c974ab4cd6ad323df5d068414d59347eb0d6223519b242ba00"}, "8d821dbe-8006-440f-ac1d-aed49d71b7e7": {"doc_hash": "ce1c32b862e4391594a95a6bd5eff80bc096769ca7d79cc8f7c3703665eecc2a", "ref_doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "4d091294-9816-4cf1-88da-3ce2815a7b4f": {"doc_hash": "564e2de40dae7313cff6dbd9f9b8368126892d9f78b2c9b230fb113da5ff4f13", "ref_doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "a7e6270b-630c-4b55-9471-2fc7f0fd33cf": {"doc_hash": "138af98e3dd66eb8df6f919e2dc39df99cd14ca76cdcfa3e9c43e15c86b9cf71", "ref_doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "6b7b868b-34a3-4128-88ba-bf7a9e187833": {"doc_hash": "16ba31d81d0bd755dbb60415f579ba797dbcc2cfb5862b43a13663f877dfa179", "ref_doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "e608f640-d4ac-414c-ae16-0967b35ea5a0": {"doc_hash": "d7643c53cf2a6639f89176752205bc39d95bc15cdb480e42402f5f4ffa8bb30a", "ref_doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "4098601f-59b5-4f31-875f-801568e1f85c": {"doc_hash": "f2e3c11dd739bcad50db91d051deeeed191eb64dc1fb4ebca51fb3e198ed0292", "ref_doc_id": "1d455b77-b680-4baa-a63f-25754458aa49"}, "1d455b77-b680-4baa-a63f-25754458aa49": {"doc_hash": "b57c72fed5b1e1549bfe7c112ca8d2edc878b4e9de9df3926909579c9f96af93"}, "f03b7316-c491-417d-9947-c56b8079ce52": {"doc_hash": "8ba1dca60a337ef2e4af6cff05375e33f119583da2b29016524e9e78368384bf", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "8d615f3f-9349-4d04-a976-9355201c9a87": {"doc_hash": "7259fc4f1109919134ff081a6b1383114971888cd8d4791f45a453fd562f274f", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "e17559ec-1519-44f9-b3a9-007a890a9075": {"doc_hash": "17b32fc44d88da8896881a6a86b43271beacaf7d4af834bd1b78dc32e0554bb9", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "a8ad0b5d-fcc9-4718-bc88-6d82450f9a40": {"doc_hash": "936d8bda02b92b3455ecddc2f60836989c981fd0df453de816cef369fbb4c392", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "ea64ef47-05f0-4dbf-aa2d-0bdae5120791": {"doc_hash": "73dc92dc0ce2fa5b82acfb70ed04ae580b3c5debc808279e61fa04170790a1de", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a": {"doc_hash": "f8574a03d53acc47c961efc6477af4125b217b60f8d474a5ce3e7e9677288d8e", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "fa308006-f3c6-4c00-90f0-529f79e7df06": {"doc_hash": "10216e5eea5e3ff25e1d399500a2ab87db2dbef963531a3133f30022265b8940", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "00b29cae-c0f2-43ba-b9a4-99401d7a5ff4": {"doc_hash": "fe63d497c0afb9f0b02f31b6608732d0a75e9000f09dd24b245a9cfc48bb2698", "ref_doc_id": "153be904-4211-446a-bb8c-aa5eeec24f29"}, "153be904-4211-446a-bb8c-aa5eeec24f29": {"doc_hash": "90d01ae6c48f60e38f98695ac084c4ffb364a683b27287cdd88ed423c7dbbac5"}, "b620053e-bdac-490b-a68c-ec2658cb24ac": {"doc_hash": "93439e917b69dcc6aaa1249bcb7c3260c71a1a217c33c389215fa71e2c92273e", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "0b7ac666-75f1-4630-ab3f-d07ed0143aec": {"doc_hash": "9afd7ce284207cc8f455df3bbf37ca5622e9cb0598639bd33a063ee0f56f0465", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "6d312337-d00a-4ca4-876f-713f6b05247d": {"doc_hash": "8f0192aec7f07476e3aef3094646d608eda6fadc7b766a371fa0285853acf637", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "a7c30c87-d70a-4ee4-9c5c-b123365bf6a3": {"doc_hash": "03f7ede2ec99b89c5cadb384645e39bd43e82c763154ed3c512340ed55ccc610", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "1eb155f3-0d02-4801-8339-09ebf710968e": {"doc_hash": "16db72fcb098b3d4ba79dd6cb4d97db566f31efcc32188b6b35846ec6a6e08e4", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "9ce3ae74-8fe8-49d8-8e3e-a484f7079591": {"doc_hash": "460241e6c59b37076826c873d37eddd1f8d51ac35d8f3622bbbbc5bee5d820b2", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "5126b33b-3dd1-48ba-82e1-000a854537f0": {"doc_hash": "c5a2ca9d84c423802c803cfbf6dca309a76e1a05d12c93923f4ca381e8fbebd5", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "b774ae07-757e-4b3f-aea2-f92c22054047": {"doc_hash": "6d45ff70e5535c77276b77de9fb70be16e67da00d9fc7252f9a22afc35efc03a", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "1219ed6d-576f-4c37-8582-df7a7549c609": {"doc_hash": "452a0a6c735cba670dbed5d21cc404321176ddf9b5ad043651e539ed777da4af", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "093cf14f-c32c-4ace-ab51-b8ca328182ef": {"doc_hash": "e25e29070c20d03109d4774eaab9d65b90486df036780105f9f39757997b17a2", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "c21170d5-17b7-4969-bd35-247e64d7ba80": {"doc_hash": "643a541609c9eb059561bc84d713325f0b21a7633945579774b2197d7fad0c2e", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "080c671e-0d41-4cae-b1c6-86eae8b9d766": {"doc_hash": "40868d18981f3cffcaae5818405cad07564a7df07efba055461ad1d3e04da900", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "435280bb-4f13-43a0-b85d-84b15bf5c068": {"doc_hash": "af4e05bcc025ef5b61ed61b795bdf4bb3bc0baf2a5a8756e891c221787730419", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "27daf370-2e50-4ec5-b018-5042c377e47a": {"doc_hash": "d738dcddd362f5e1d42683e78d3765711ed8ee8e2cf6cca1acd2530ae9d31f88", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "b4e7f176-38ed-4745-aa11-a269276dcf01": {"doc_hash": "d4b4ca2c618100636ac1e8da93a9b982520cd1af659506d7db8ab3c38439f575", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "dc57e358-f234-40b4-9349-9ea661334b0b": {"doc_hash": "85351f711b6b3ea17169930e01acd16ab8246e4f73914366f7a58a9e9d566bff", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f": {"doc_hash": "b74a2ab3a7f978faab1db7b5e01f00764e57b1499c08427923589537c93d3955", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "8a63ca49-7601-4028-98e0-db936c72e1d4": {"doc_hash": "f2e3c11dd739bcad50db91d051deeeed191eb64dc1fb4ebca51fb3e198ed0292", "ref_doc_id": "4003ee33-0bde-4928-8965-650678d2cc39"}, "4003ee33-0bde-4928-8965-650678d2cc39": {"doc_hash": "140ea91acf96b68f1583e3b3ba1f74b64e137d086c9d1f016e4b82fe29899f9f"}, "975b98c1-f5fb-440e-af08-f9aa08df44fa": {"doc_hash": "ae37ff4591ffd33cc680b9cc4295c9884380ffb9bf5bb467c7aa146aeb5a9ccf", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "918a71e3-8253-46fe-890e-859452d989ad": {"doc_hash": "6eac2c7ddb1223e0de79100b4b99b241be5aea12c860c6d38aa5aad2c343a3ca", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "82e6c0d2-aa08-4278-95d4-fcb585bba247": {"doc_hash": "9d734bf6c91ca7db0ab501c969ccbabf2e5f5e29b593306fadfee5892f232581", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "952a15c4-2362-45fb-bb35-a92ad0f7a0b6": {"doc_hash": "eb94a6f5a001783149d098cafca7228b56a84d0327ba4deff41c755e8f936ee0", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "df0ece19-6442-41cc-b638-c84ea3ae7f54": {"doc_hash": "c95608193bf340c9157b955596f849bd503a89d988eeaa6d128c1ad716fbebaa", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "757f1bc0-241f-4d29-8cfd-2c7194da0198": {"doc_hash": "051505aeab9fbb10c2b9500d4b4c939334ac6a054ceec12dfefcb165924da48b", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "b932defa-5914-474b-becf-f7c8f1e03f39": {"doc_hash": "a79bcf8e3896626f9732011b6347266938f7ceba67dfde39820705be3d9070b4", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "95624e44-97cb-4a64-b3f7-57d0000fb7cd": {"doc_hash": "fb30de7c3d3918cd41a7190f93066f99d1a45e58cf4eae558d80d55fc3989453", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "c629cd02-cef2-4db2-8a01-a56d0f817ca8": {"doc_hash": "65f7a99fb3c6ecd1e356c7d9903304f02472e8f95be32fd64a789da07e1b8d4b", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "84590474-d93e-4d60-a8b7-ac4a3b599c36": {"doc_hash": "85a24e20781dd6000ba07a419d4db65a852d45073cb5d291a711216fd1ccde35", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "95f19890-4d40-49d4-9a69-3dd44b4e2bc8": {"doc_hash": "60b1cea086e866bd3b2aee94fa221ba2c557a2d790d125ebd4e308d07fd586fd", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "610edfe5-bcf5-4ac4-8905-d4b7a66cff6c": {"doc_hash": "77f73bc03b007a3a535269fd8713c00936fd0a053e17fad515fcf6e5d46746de", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "9eab74ab-c2bd-44ee-9710-44a9567a6271": {"doc_hash": "55bbda27ed2346d70f2ba71e324ec86cadd3a3facb16c641cd08a514daeadd7a", "ref_doc_id": "2dd6f138-0d98-45a2-aa77-a5ad049209f0"}, "2dd6f138-0d98-45a2-aa77-a5ad049209f0": {"doc_hash": "eb8da5828143309fa8706d63d1d58fbd031c6676ca5b4285a77acdd3a2ddc7db"}, "81f0a75c-c88f-44e2-95e0-d65c4848b977": {"doc_hash": "f08b94c98d812cd1e9b2dbd8fefa2115ae6241e4022e8baafed5062dbccf9a02", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "44a964ec-315d-44bb-bd42-55c5347f08d8": {"doc_hash": "3f607fd8d07d7a73eb6c6403dd841cb8b3683fd8622bebef2ed158b7e34718c2", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "f101b150-eff0-493c-b846-1f1ace4069a4": {"doc_hash": "56534adffa3f81492850ae3c9599f0b8631bd233a21a59ced71a081a6fde7987", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "900f3816-8ab2-4331-b248-dc8dd5e9a630": {"doc_hash": "1ba8f8426cd9857f27a2374541bcfeb21835297fab41f261e548708967e6649f", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "f0be9a22-b0f3-4848-8ddc-5bb833c94000": {"doc_hash": "fe87fc22f8bf235c7a10e46d142fdb11b23980c08fab88e7596869a87d587f70", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "3ab118ef-4d1c-465d-bf95-e7535a93bab5": {"doc_hash": "8ecdcae50390664ac70b2460b907a81a0152ccd24ed9b495453824f13704814b", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c": {"doc_hash": "b67a34b485585da96ca75fb61e9d2d5202fb26efa1271fa35136358f06aebf11", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "491e44e0-9273-41fa-9a98-f139fae02194": {"doc_hash": "a9255cdc91c194ade0f2f86228fd12c88cdb1624320d2010e96aaa7b45d41dd9", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "85a4e4cc-1359-4fc2-9a57-7838562ae0ec": {"doc_hash": "f872271904f9d9a6e48d3ff51ededfe639f04f777089b792d59150b3123fab40", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08": {"doc_hash": "49efe155120adf4fea720e06304cc2d9f78c87370add6eea0c6bb89412969684", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "79356976-33a0-4b67-bf8b-112f4f5c720b": {"doc_hash": "21d001095b1429752a3e2229199ea42415993662418df3eff6f03089b29b3e23", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "497e12bb-2b38-45cb-9144-462b90de74a2": {"doc_hash": "e6729adaf867d29decd2981a7b519cd7fc3488687e205a67a37ef3a0e803b7f5", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "0c93c214-6572-4382-b091-b7b1362ea757": {"doc_hash": "5852f3fe77fff0a4d4848f33bea5e7815a70df9168c6925427fb3dbb434b630a", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "732b278e-96a1-48a3-8d1c-8dca151836a7": {"doc_hash": "269f4ee7d24c9f9d49913166e034cc48fd0e5e01e79e9476e0a4e704efb74ab1", "ref_doc_id": "0df09d39-f2d0-4d11-9a88-3824c2f56aba"}, "0df09d39-f2d0-4d11-9a88-3824c2f56aba": {"doc_hash": "5be48ac89c9606d81b08c05d01f563e0d42a90b9646bb7915e87dac6b2b77563"}}} \ No newline at end of file diff --git a/local_data/private_gpt/graph_store.json b/local_data/private_gpt/graph_store.json new file mode 100644 index 0000000000000000000000000000000000000000..9aab8ead445561f8679e28fe03922c05b1c91ad1 --- /dev/null +++ b/local_data/private_gpt/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/local_data/private_gpt/index_store.json b/local_data/private_gpt/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..4cf0395ef6260786f6ebbc042f07230f89191d40 --- /dev/null +++ b/local_data/private_gpt/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"cbc1d1a7-f418-47a5-b795-e18680c281a3": {"__type__": "vector_store", "__data__": "{\"index_id\": \"cbc1d1a7-f418-47a5-b795-e18680c281a3\", \"summary\": null, \"nodes_dict\": {\"4aa647b2-2bcd-42d1-9f75-003fb6d00a68\": \"4aa647b2-2bcd-42d1-9f75-003fb6d00a68\", \"9bf097dd-1a34-46ef-9b61-aad8eb7eb232\": \"9bf097dd-1a34-46ef-9b61-aad8eb7eb232\", \"8b610fd6-7e61-427d-b0fe-7c3bf852962d\": \"8b610fd6-7e61-427d-b0fe-7c3bf852962d\", \"b088df32-24ae-4de7-94fb-93e6b66c6033\": \"b088df32-24ae-4de7-94fb-93e6b66c6033\", \"9ed279dc-e305-4d87-887e-3bdadd545cb9\": \"9ed279dc-e305-4d87-887e-3bdadd545cb9\", \"d4b2b46e-2bb9-4ab4-b573-73838af88192\": \"d4b2b46e-2bb9-4ab4-b573-73838af88192\", \"832ebd8c-769d-466b-ab60-cd790f8e3550\": \"832ebd8c-769d-466b-ab60-cd790f8e3550\", \"2718b9a4-e30f-4e4d-b096-ebdf9efc6f30\": \"2718b9a4-e30f-4e4d-b096-ebdf9efc6f30\", \"b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549\": \"b5a3f1ce-dfc8-40aa-819e-1c93dcb3c549\", \"875c7c03-52f2-4eb6-9b74-e2fcf954c042\": \"875c7c03-52f2-4eb6-9b74-e2fcf954c042\", \"76f31973-ae09-464e-b789-d664a7b74bac\": \"76f31973-ae09-464e-b789-d664a7b74bac\", \"74b0560a-29cf-42a6-86c0-55ddb56d5e9c\": \"74b0560a-29cf-42a6-86c0-55ddb56d5e9c\", \"4828767f-396a-4ae7-a317-5be800ad8cee\": \"4828767f-396a-4ae7-a317-5be800ad8cee\", \"26a37355-9073-432a-8325-d3733769e4f1\": \"26a37355-9073-432a-8325-d3733769e4f1\", \"bc737f1d-a3f6-49f0-aff8-0b83215e4d03\": \"bc737f1d-a3f6-49f0-aff8-0b83215e4d03\", \"2c308184-183c-4c74-abd2-1a872e1a5983\": \"2c308184-183c-4c74-abd2-1a872e1a5983\", \"1ecbacfc-e440-40f6-8b7c-58e7f4430263\": \"1ecbacfc-e440-40f6-8b7c-58e7f4430263\", \"a84958e5-bbca-40de-bade-ad5d11320792\": \"a84958e5-bbca-40de-bade-ad5d11320792\", \"b7b5f86c-8904-4d52-b024-5c04c86780d2\": \"b7b5f86c-8904-4d52-b024-5c04c86780d2\", \"13494a4c-0324-4416-b03a-337a7dc1c76b\": \"13494a4c-0324-4416-b03a-337a7dc1c76b\", \"2740ef47-e9c7-4a5c-b6ce-dfb7e239f274\": \"2740ef47-e9c7-4a5c-b6ce-dfb7e239f274\", \"f9afaaa7-0487-4426-9f43-3c002db815b4\": \"f9afaaa7-0487-4426-9f43-3c002db815b4\", \"88a97d57-ef95-413a-acfc-6b167a994455\": \"88a97d57-ef95-413a-acfc-6b167a994455\", \"dcbddcca-91d1-48bf-8b3f-b414db2fdfea\": \"dcbddcca-91d1-48bf-8b3f-b414db2fdfea\", \"07cd0333-976f-4256-805e-68442c8896f3\": \"07cd0333-976f-4256-805e-68442c8896f3\", \"26763fc3-940a-45fe-80eb-2d6911758da9\": \"26763fc3-940a-45fe-80eb-2d6911758da9\", \"c540b737-2679-4aaa-a801-621ca99869fd\": \"c540b737-2679-4aaa-a801-621ca99869fd\", \"65506434-743b-4efe-a798-570d825d90e5\": \"65506434-743b-4efe-a798-570d825d90e5\", \"2c9b6a28-397f-4def-a2ef-1914363194d1\": \"2c9b6a28-397f-4def-a2ef-1914363194d1\", \"9578196c-027d-4d45-9671-7aefcd321d26\": \"9578196c-027d-4d45-9671-7aefcd321d26\", \"7495270a-b0a9-4bab-96f3-da7e66e1b8f3\": \"7495270a-b0a9-4bab-96f3-da7e66e1b8f3\", \"20d2318b-b9ab-41d0-9b97-64c6c3c26aa9\": \"20d2318b-b9ab-41d0-9b97-64c6c3c26aa9\", \"37b9db24-ddfa-423b-912a-ffc7fbe83847\": \"37b9db24-ddfa-423b-912a-ffc7fbe83847\", \"ecf9117d-66a4-443b-a571-02efd059827d\": \"ecf9117d-66a4-443b-a571-02efd059827d\", \"2a50f01a-b552-447a-b93f-c2a113e87bb0\": \"2a50f01a-b552-447a-b93f-c2a113e87bb0\", \"0acf0dc1-f520-44bc-9dfe-b76af39c3667\": \"0acf0dc1-f520-44bc-9dfe-b76af39c3667\", \"04377eda-8915-49f4-85ec-e06de2108bdc\": \"04377eda-8915-49f4-85ec-e06de2108bdc\", \"23386198-87d1-4f74-9e19-d6c7a18fd1de\": \"23386198-87d1-4f74-9e19-d6c7a18fd1de\", \"bca1fb8b-a7ef-4687-a85a-f7c4969b8557\": \"bca1fb8b-a7ef-4687-a85a-f7c4969b8557\", \"5e90c533-8419-49ad-931b-fcb513eaf397\": \"5e90c533-8419-49ad-931b-fcb513eaf397\", \"10203948-ed29-40f6-821a-6ca03dbe07b6\": \"10203948-ed29-40f6-821a-6ca03dbe07b6\", \"9e8d185e-0ca8-47b9-8003-4f30fa88b888\": \"9e8d185e-0ca8-47b9-8003-4f30fa88b888\", \"f6f9497b-06b8-4776-9c86-9818419b778a\": \"f6f9497b-06b8-4776-9c86-9818419b778a\", \"7c3b610d-68da-46f7-9680-67c7cb5f9fe2\": \"7c3b610d-68da-46f7-9680-67c7cb5f9fe2\", \"79f9fc25-82b4-445f-9a24-0bce12bdec2d\": \"79f9fc25-82b4-445f-9a24-0bce12bdec2d\", \"e7fed734-eda8-4e9b-8db8-cfeeb93b2714\": \"e7fed734-eda8-4e9b-8db8-cfeeb93b2714\", \"6a5e2b7a-5212-4096-8e86-6736641fbd63\": \"6a5e2b7a-5212-4096-8e86-6736641fbd63\", \"2b5c03fc-4aee-45bc-bf30-f748eb040bba\": \"2b5c03fc-4aee-45bc-bf30-f748eb040bba\", \"ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba\": \"ba55488d-85b4-4c9d-9cd2-bc465f4ef1ba\", \"f994e530-0a41-476b-9f94-279c51e851c3\": \"f994e530-0a41-476b-9f94-279c51e851c3\", \"e0806a92-067d-4401-afa9-1e143b8ca059\": \"e0806a92-067d-4401-afa9-1e143b8ca059\", \"6abeddd5-771d-45ad-985c-b5039f9682eb\": \"6abeddd5-771d-45ad-985c-b5039f9682eb\", \"e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730\": \"e964a0b1-a75b-4a10-a0ac-4a4a8b0e9730\", \"09aba15c-8848-4b1d-80d0-fd51aae4770e\": \"09aba15c-8848-4b1d-80d0-fd51aae4770e\", \"f2731479-2d76-4f37-85d6-4a1261989587\": \"f2731479-2d76-4f37-85d6-4a1261989587\", \"7f19d8ea-707a-4e49-8493-7c5dcab97c88\": \"7f19d8ea-707a-4e49-8493-7c5dcab97c88\", \"2f9b4a5d-2e04-4c12-bd0e-803a8f375470\": \"2f9b4a5d-2e04-4c12-bd0e-803a8f375470\", \"e3b61425-69ba-4332-a437-303643e57eb5\": \"e3b61425-69ba-4332-a437-303643e57eb5\", \"1fcfe884-f810-46de-a946-090c3c284ad0\": \"1fcfe884-f810-46de-a946-090c3c284ad0\", \"f5240473-1e46-4222-905c-b6b7cd4646ba\": \"f5240473-1e46-4222-905c-b6b7cd4646ba\", \"2c419b82-4f82-496f-b4b4-c76141274585\": \"2c419b82-4f82-496f-b4b4-c76141274585\", \"9fde07da-cd24-4978-a089-d1c54d402ddc\": \"9fde07da-cd24-4978-a089-d1c54d402ddc\", \"1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4\": \"1305cef8-8cbd-46b6-b75c-2b7af7d6d1e4\", \"350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98\": \"350d2b4c-6fbc-4cc5-a74e-4fc9bdc75a98\", \"ac1e6e13-f279-4928-a284-0c92b66f09ae\": \"ac1e6e13-f279-4928-a284-0c92b66f09ae\", \"6f5f6064-4f8e-4caf-899c-fd78a65e466b\": \"6f5f6064-4f8e-4caf-899c-fd78a65e466b\", \"1b82111e-b71b-4b1b-b8cf-a8245da5ccf2\": \"1b82111e-b71b-4b1b-b8cf-a8245da5ccf2\", \"e8234cac-7fe1-411d-80d9-d1c9990edf1f\": \"e8234cac-7fe1-411d-80d9-d1c9990edf1f\", \"5bda07e1-5114-4f2f-9950-844cbe4dc5ff\": \"5bda07e1-5114-4f2f-9950-844cbe4dc5ff\", \"2e331ad1-4c67-4d7e-99f8-90636e796855\": \"2e331ad1-4c67-4d7e-99f8-90636e796855\", \"04a79d62-85c8-4e48-9cfe-055bcb7584ee\": \"04a79d62-85c8-4e48-9cfe-055bcb7584ee\", \"2715f5d1-3033-4068-98a5-da3aeaea645c\": \"2715f5d1-3033-4068-98a5-da3aeaea645c\", \"5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c\": \"5472ba7c-8a73-4b3d-9c20-8e8a29b22c4c\", \"345e778e-a465-4e56-b4a4-79ec02fc488b\": \"345e778e-a465-4e56-b4a4-79ec02fc488b\", \"d991d1dd-c851-4eca-9ed5-0ffb73441b06\": \"d991d1dd-c851-4eca-9ed5-0ffb73441b06\", \"18e0b32b-51f2-4e6e-95ad-3ce5159c82b7\": \"18e0b32b-51f2-4e6e-95ad-3ce5159c82b7\", \"106db2bc-825f-431d-9559-6e1740e5cd7c\": \"106db2bc-825f-431d-9559-6e1740e5cd7c\", \"24100721-d6cd-4dfe-b050-30f50e640ba7\": \"24100721-d6cd-4dfe-b050-30f50e640ba7\", \"d7017230-d8ce-4c69-8739-0d8ec4f96977\": \"d7017230-d8ce-4c69-8739-0d8ec4f96977\", \"5f052ab6-717b-424b-b359-0adeb5aaa264\": \"5f052ab6-717b-424b-b359-0adeb5aaa264\", \"83846ec5-23a4-4df8-a302-57557e7892f0\": \"83846ec5-23a4-4df8-a302-57557e7892f0\", \"080d0243-4bdc-4328-b9db-6d34dce3f1f8\": \"080d0243-4bdc-4328-b9db-6d34dce3f1f8\", \"bbf248aa-e49f-4f76-85bc-4c70c513eb71\": \"bbf248aa-e49f-4f76-85bc-4c70c513eb71\", \"c2f3d877-ab48-4be7-8373-d67d10c89cc6\": \"c2f3d877-ab48-4be7-8373-d67d10c89cc6\", \"a2d60074-833a-4715-87ee-0424f4dfb3a4\": \"a2d60074-833a-4715-87ee-0424f4dfb3a4\", \"579f096b-8450-4b53-b5e0-2bb0cb4a3b8e\": \"579f096b-8450-4b53-b5e0-2bb0cb4a3b8e\", \"18aef834-588b-46cd-b2ee-7bc4c8e8b7bc\": \"18aef834-588b-46cd-b2ee-7bc4c8e8b7bc\", \"bf20e12a-1f22-4924-bbb5-e54f0067adb0\": \"bf20e12a-1f22-4924-bbb5-e54f0067adb0\", \"2bd1e53a-5f94-474c-a4c9-a5386d802273\": \"2bd1e53a-5f94-474c-a4c9-a5386d802273\", \"47f10038-136b-4508-9c04-982528ca1633\": \"47f10038-136b-4508-9c04-982528ca1633\", \"d651c02d-b2cc-421d-8431-3af058a15ee0\": \"d651c02d-b2cc-421d-8431-3af058a15ee0\", \"ce817407-6bf2-4805-8293-675ef161ed68\": \"ce817407-6bf2-4805-8293-675ef161ed68\", \"253ca4b8-5bef-420a-8a05-9974885ce61a\": \"253ca4b8-5bef-420a-8a05-9974885ce61a\", \"c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0\": \"c0c6ff0e-1544-4aa1-a58b-dcc6c52c62a0\", \"fe88573a-4a61-4bd7-a697-1d9100f205dc\": \"fe88573a-4a61-4bd7-a697-1d9100f205dc\", \"b309486c-2d0c-4225-91b1-6aa14b17c1e3\": \"b309486c-2d0c-4225-91b1-6aa14b17c1e3\", \"56358d3b-53f0-4f3e-a06e-75c9b4cf1fea\": \"56358d3b-53f0-4f3e-a06e-75c9b4cf1fea\", \"432d8ff8-91a4-4ef8-9197-69b4ffea9a7e\": \"432d8ff8-91a4-4ef8-9197-69b4ffea9a7e\", \"77073c38-3d34-4b87-909c-b16142a610f0\": \"77073c38-3d34-4b87-909c-b16142a610f0\", \"ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b\": \"ea59cd80-80fd-45b8-8ad3-3ffb6394fc3b\", \"71534514-ce51-4219-baa4-3bdc0bf2a7b1\": \"71534514-ce51-4219-baa4-3bdc0bf2a7b1\", \"47308108-c00d-4e76-ac1e-1a751fee7390\": \"47308108-c00d-4e76-ac1e-1a751fee7390\", \"6d85b210-c296-4a51-a994-39ed27d505ff\": \"6d85b210-c296-4a51-a994-39ed27d505ff\", \"1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0\": \"1bdcfb2f-10e8-498c-8e43-8f157e1d8fe0\", \"afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589\": \"afc8e44b-cbe1-4aa8-b14f-c0a3a3a57589\", \"89e19391-1500-4af4-bbac-7611c7416784\": \"89e19391-1500-4af4-bbac-7611c7416784\", \"ede91f75-ebe7-4b86-baa4-a6ec6018b538\": \"ede91f75-ebe7-4b86-baa4-a6ec6018b538\", \"f82d22d1-316f-4b18-807a-924dd2fab1ed\": \"f82d22d1-316f-4b18-807a-924dd2fab1ed\", \"cf0b8afe-a302-4034-a8a2-b14d7a56b635\": \"cf0b8afe-a302-4034-a8a2-b14d7a56b635\", \"66097377-c9fb-48a9-8223-b9325ecbaa25\": \"66097377-c9fb-48a9-8223-b9325ecbaa25\", \"1f738b02-b8e1-4de2-b537-96b2f5f6e24c\": \"1f738b02-b8e1-4de2-b537-96b2f5f6e24c\", \"bef86ef8-4999-42d5-a507-8d8f37263d9f\": \"bef86ef8-4999-42d5-a507-8d8f37263d9f\", \"3ca4c88a-c14e-4139-80f9-693e3e64abc8\": \"3ca4c88a-c14e-4139-80f9-693e3e64abc8\", \"42616556-b70f-4166-96d3-b2f2c62e1004\": \"42616556-b70f-4166-96d3-b2f2c62e1004\", \"8530fe78-89ba-45f6-bd75-acaf32293ca2\": \"8530fe78-89ba-45f6-bd75-acaf32293ca2\", \"7ac37dcd-cac1-48db-aba7-a6a821234745\": \"7ac37dcd-cac1-48db-aba7-a6a821234745\", \"82680df8-e08e-4b91-8ddd-6d349e4c5705\": \"82680df8-e08e-4b91-8ddd-6d349e4c5705\", \"9e8028d9-2d6e-4ad8-9652-401ba37f754d\": \"9e8028d9-2d6e-4ad8-9652-401ba37f754d\", \"034b01ea-42bf-4c6a-971e-5341e4263b77\": \"034b01ea-42bf-4c6a-971e-5341e4263b77\", \"3de386a0-191f-4355-b5a6-41c5deb75a50\": \"3de386a0-191f-4355-b5a6-41c5deb75a50\", \"ed1d808f-3af2-4494-8d50-bfb5b986fd72\": \"ed1d808f-3af2-4494-8d50-bfb5b986fd72\", \"427083ea-5cd2-4687-884b-e27727bc603b\": \"427083ea-5cd2-4687-884b-e27727bc603b\", \"d54b86e0-e7ab-4346-800b-d613e9ee8bbc\": \"d54b86e0-e7ab-4346-800b-d613e9ee8bbc\", \"c3d09c63-cedd-48e4-abee-e2f4065b24ab\": \"c3d09c63-cedd-48e4-abee-e2f4065b24ab\", \"b14fd0da-92e7-4277-b8fa-7b62160fb6e9\": \"b14fd0da-92e7-4277-b8fa-7b62160fb6e9\", \"9257befb-5502-49e9-9a18-64a47c3bd267\": \"9257befb-5502-49e9-9a18-64a47c3bd267\", \"13c267a0-e573-40a6-a7b4-dff10708e83f\": \"13c267a0-e573-40a6-a7b4-dff10708e83f\", \"48cf3606-fa3d-4300-beff-779408dd78b4\": \"48cf3606-fa3d-4300-beff-779408dd78b4\", \"c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3\": \"c927e56c-e1b4-4c3b-a7c5-b8b1bfb874b3\", \"51055fb7-b0a6-4c54-b5c6-e947bc8662ba\": \"51055fb7-b0a6-4c54-b5c6-e947bc8662ba\", \"610ef6e2-f0b5-4cfc-a801-3c0561364c39\": \"610ef6e2-f0b5-4cfc-a801-3c0561364c39\", \"77744220-3445-4612-9666-4925739733eb\": \"77744220-3445-4612-9666-4925739733eb\", \"2df03af1-4f12-444e-a6fe-2c4713138d17\": \"2df03af1-4f12-444e-a6fe-2c4713138d17\", \"5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9\": \"5da5f5e4-dda0-49e3-b3b2-e70bbb819ca9\", \"b424dd93-ebd0-49de-be22-4de534d02f37\": \"b424dd93-ebd0-49de-be22-4de534d02f37\", \"fc9e04b0-61fb-481c-af29-b5bdb89b0cc6\": \"fc9e04b0-61fb-481c-af29-b5bdb89b0cc6\", \"089da9b0-2701-48dd-954b-346b7e3bdcc3\": \"089da9b0-2701-48dd-954b-346b7e3bdcc3\", \"3b9086fa-00f2-410e-a25d-beea94b84611\": \"3b9086fa-00f2-410e-a25d-beea94b84611\", \"5f75a35a-64e3-4504-a024-c2f8e0a71acc\": \"5f75a35a-64e3-4504-a024-c2f8e0a71acc\", \"a4fff09d-9522-4478-9af1-0b504fa4c8ee\": \"a4fff09d-9522-4478-9af1-0b504fa4c8ee\", \"9cbe439e-17ff-4956-9b1b-60467873986a\": \"9cbe439e-17ff-4956-9b1b-60467873986a\", \"7d66f518-2159-49aa-8012-6d62f52ad994\": \"7d66f518-2159-49aa-8012-6d62f52ad994\", \"3ac9c49e-8062-4406-b88b-1d61d2f729a7\": \"3ac9c49e-8062-4406-b88b-1d61d2f729a7\", \"da757de5-538d-4be4-b223-ec8234460492\": \"da757de5-538d-4be4-b223-ec8234460492\", \"a9038689-bae1-476d-8d32-1288a1dec308\": \"a9038689-bae1-476d-8d32-1288a1dec308\", \"c25cf3d9-8924-473a-ba31-59872ac40309\": \"c25cf3d9-8924-473a-ba31-59872ac40309\", \"afdc513d-db48-4fb2-9c1c-e05ef8fd3547\": \"afdc513d-db48-4fb2-9c1c-e05ef8fd3547\", \"679f356b-9f19-48a3-ab30-24ddcfc23d02\": \"679f356b-9f19-48a3-ab30-24ddcfc23d02\", \"464491e3-600f-4781-87f3-7ca2bf35cd8b\": \"464491e3-600f-4781-87f3-7ca2bf35cd8b\", \"255f4025-fa4a-4a8e-b28f-c7e0f93e2d71\": \"255f4025-fa4a-4a8e-b28f-c7e0f93e2d71\", \"12527123-5dd7-4c29-9d0a-fbf1348acb13\": \"12527123-5dd7-4c29-9d0a-fbf1348acb13\", \"c9ace8c7-095a-4acf-bfd3-31a80840043c\": \"c9ace8c7-095a-4acf-bfd3-31a80840043c\", \"23ca6a2c-b665-4136-8252-4e3511800cb2\": \"23ca6a2c-b665-4136-8252-4e3511800cb2\", \"c1bebdb1-8466-485e-ba32-c7f1768afb8f\": \"c1bebdb1-8466-485e-ba32-c7f1768afb8f\", \"0f73fd11-2c9c-4e6d-b14c-891759bb906c\": \"0f73fd11-2c9c-4e6d-b14c-891759bb906c\", \"928e1aee-8009-4b84-a2d4-04ce40ea2924\": \"928e1aee-8009-4b84-a2d4-04ce40ea2924\", \"ff509074-e8b6-4882-9f11-c685d7c5e74c\": \"ff509074-e8b6-4882-9f11-c685d7c5e74c\", \"494d5f9c-6173-419a-a5e7-0718065748c6\": \"494d5f9c-6173-419a-a5e7-0718065748c6\", \"76b88ceb-e411-49de-b15f-6194498df861\": \"76b88ceb-e411-49de-b15f-6194498df861\", \"6f7369ec-8025-4ce7-a191-15f01c233655\": \"6f7369ec-8025-4ce7-a191-15f01c233655\", \"c0481400-dd05-4a6a-baac-b40c6e8c1d50\": \"c0481400-dd05-4a6a-baac-b40c6e8c1d50\", \"2411ee9f-d339-4712-b254-e0d58f611514\": \"2411ee9f-d339-4712-b254-e0d58f611514\", \"275f8771-784e-42c2-92a3-09853c9cbb94\": \"275f8771-784e-42c2-92a3-09853c9cbb94\", \"de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5\": \"de9a46c3-8a3e-48eb-a5e6-c57c2af0e9b5\", \"74783f0c-6572-4511-bd4b-cc169d680860\": \"74783f0c-6572-4511-bd4b-cc169d680860\", \"8be9fef9-0ea5-49c1-80dc-d4479f9d6753\": \"8be9fef9-0ea5-49c1-80dc-d4479f9d6753\", \"73b11941-77cb-461f-8f5d-4c402a1e065d\": \"73b11941-77cb-461f-8f5d-4c402a1e065d\", \"d51c2989-6c02-4177-90f8-2621eb18f70e\": \"d51c2989-6c02-4177-90f8-2621eb18f70e\", \"c8da1a27-b4cb-45f6-ac61-b08a9efcb2db\": \"c8da1a27-b4cb-45f6-ac61-b08a9efcb2db\", \"d5be91d1-922b-4975-977a-e47014b14ab0\": \"d5be91d1-922b-4975-977a-e47014b14ab0\", \"aff522e6-fc31-44bc-aeaa-eb61b2c22633\": \"aff522e6-fc31-44bc-aeaa-eb61b2c22633\", \"5f89e89d-2ee3-41db-b518-29eaeda2f6e2\": \"5f89e89d-2ee3-41db-b518-29eaeda2f6e2\", \"3af9b6ee-156f-449c-81de-fa4f1496ea29\": \"3af9b6ee-156f-449c-81de-fa4f1496ea29\", \"b0ac8be0-ee3c-4bab-9768-1f8544bc9e81\": \"b0ac8be0-ee3c-4bab-9768-1f8544bc9e81\", \"8f042385-7543-4e74-a866-258cf19b4985\": \"8f042385-7543-4e74-a866-258cf19b4985\", \"20cff46b-ef04-4502-b3ed-ecd2d83b19e9\": \"20cff46b-ef04-4502-b3ed-ecd2d83b19e9\", \"b1169cf4-c1f1-43e4-ab90-b3842cccf809\": \"b1169cf4-c1f1-43e4-ab90-b3842cccf809\", \"06aa1f30-1513-480b-9263-22dec17c64c8\": \"06aa1f30-1513-480b-9263-22dec17c64c8\", \"4c798ae4-f706-434e-b4c7-4f9cae0cea02\": \"4c798ae4-f706-434e-b4c7-4f9cae0cea02\", \"30a6702a-c993-44e2-88e3-11b88eb70e4f\": \"30a6702a-c993-44e2-88e3-11b88eb70e4f\", \"441b10f3-90f4-4e9f-badd-47f978799cbf\": \"441b10f3-90f4-4e9f-badd-47f978799cbf\", \"9aa8a627-b1b9-46a5-ae82-401cee0b857b\": \"9aa8a627-b1b9-46a5-ae82-401cee0b857b\", \"d7467e86-7e7e-4647-b607-4a320c55fbc7\": \"d7467e86-7e7e-4647-b607-4a320c55fbc7\", \"3cc85d16-6d47-4c16-9310-4ec7cdd330bb\": \"3cc85d16-6d47-4c16-9310-4ec7cdd330bb\", \"2f97dad4-f806-4f54-b0c3-521606100285\": \"2f97dad4-f806-4f54-b0c3-521606100285\", \"06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920\": \"06b8fd84-5eaf-4bb6-b5c8-fe6b760a4920\", \"95438b3d-056a-4a38-a4b4-0f62b9c28706\": \"95438b3d-056a-4a38-a4b4-0f62b9c28706\", \"c009c3e0-b9e5-456c-8895-e19854954589\": \"c009c3e0-b9e5-456c-8895-e19854954589\", \"f286142e-f068-438c-a8f6-3b7cfdcec0d8\": \"f286142e-f068-438c-a8f6-3b7cfdcec0d8\", \"b8d0019d-a626-4836-b618-610195f860f1\": \"b8d0019d-a626-4836-b618-610195f860f1\", \"cb652300-398b-4a0b-b978-2a2d5b581b94\": \"cb652300-398b-4a0b-b978-2a2d5b581b94\", \"4b325598-53f1-4cb8-bed2-43472c8c0654\": \"4b325598-53f1-4cb8-bed2-43472c8c0654\", \"daa9362f-78aa-4236-89ff-ef883e982820\": \"daa9362f-78aa-4236-89ff-ef883e982820\", \"732c918a-573a-480e-be35-3b8c19620029\": \"732c918a-573a-480e-be35-3b8c19620029\", \"7a3ce206-22e5-4ee4-90a7-16c2e039a1e9\": \"7a3ce206-22e5-4ee4-90a7-16c2e039a1e9\", \"c96879c8-0057-4738-80d7-d2849a61dc74\": \"c96879c8-0057-4738-80d7-d2849a61dc74\", \"329da4d1-09d4-4ad3-9d5e-516700e48816\": \"329da4d1-09d4-4ad3-9d5e-516700e48816\", \"474c0550-3a2d-4433-ac74-7e0918b96bd6\": \"474c0550-3a2d-4433-ac74-7e0918b96bd6\", \"e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed\": \"e7d03d3f-5cbe-4436-a1fe-68405dcbb7ed\", \"0f278d1f-c471-4e27-a016-523cca2a2011\": \"0f278d1f-c471-4e27-a016-523cca2a2011\", \"a81bf711-6bbd-4f1f-8bd4-5d561dd651ea\": \"a81bf711-6bbd-4f1f-8bd4-5d561dd651ea\", \"a8e510c1-f8db-43ce-8163-191ce9dbe0c2\": \"a8e510c1-f8db-43ce-8163-191ce9dbe0c2\", \"e1f2c72b-5e53-4f1d-a706-f3247aea5665\": \"e1f2c72b-5e53-4f1d-a706-f3247aea5665\", \"8ecefd84-89cb-494e-8720-1428fd006450\": \"8ecefd84-89cb-494e-8720-1428fd006450\", \"e8d141bd-554e-4a56-8034-547983674384\": \"e8d141bd-554e-4a56-8034-547983674384\", \"08d037cd-c538-4814-b23b-abec75956eeb\": \"08d037cd-c538-4814-b23b-abec75956eeb\", \"5ea5119e-072c-43a4-bf0b-a30d69d61614\": \"5ea5119e-072c-43a4-bf0b-a30d69d61614\", \"276a10c7-9d8e-45e6-9563-696a487df770\": \"276a10c7-9d8e-45e6-9563-696a487df770\", \"9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa\": \"9d9ea95d-ffc9-4e0e-982b-2e8eaa6d28aa\", \"02100ff2-5693-4c7b-9a36-4e90e119626b\": \"02100ff2-5693-4c7b-9a36-4e90e119626b\", \"9dc3ee47-839d-42ee-b7a5-195d0320473a\": \"9dc3ee47-839d-42ee-b7a5-195d0320473a\", \"0072630f-2f8e-4e95-b735-d99ca1e24f93\": \"0072630f-2f8e-4e95-b735-d99ca1e24f93\", \"498651a2-d1ea-49d5-ad79-0d8261d02d66\": \"498651a2-d1ea-49d5-ad79-0d8261d02d66\", \"de2bb666-475e-4ac7-8a74-f8190c53e3bd\": \"de2bb666-475e-4ac7-8a74-f8190c53e3bd\", \"ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd\": \"ec0124b1-85ea-4d7d-b46b-4f10f2f92bbd\", \"7e0646c7-b68e-422f-b779-676e42230080\": \"7e0646c7-b68e-422f-b779-676e42230080\", \"8a445d02-4ef9-4ed7-9932-c4820fad81d0\": \"8a445d02-4ef9-4ed7-9932-c4820fad81d0\", \"5a6c28eb-8379-4b37-b9f6-4accc7efa41e\": \"5a6c28eb-8379-4b37-b9f6-4accc7efa41e\", \"14caea37-ee7b-44a5-b512-9faa84a17d91\": \"14caea37-ee7b-44a5-b512-9faa84a17d91\", \"c407a988-4ad3-4b26-b7dd-e833f7bea7b5\": \"c407a988-4ad3-4b26-b7dd-e833f7bea7b5\", \"8b9cfa6c-826c-48a4-8cea-d672b581651c\": \"8b9cfa6c-826c-48a4-8cea-d672b581651c\", \"a13dd20c-4dce-4fe9-a341-9a06671c50d3\": \"a13dd20c-4dce-4fe9-a341-9a06671c50d3\", \"4d706a21-ad40-4edd-bfb3-b6501a38e7cf\": \"4d706a21-ad40-4edd-bfb3-b6501a38e7cf\", \"f886a060-2717-410a-8357-46cb9b373441\": \"f886a060-2717-410a-8357-46cb9b373441\", \"9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9\": \"9e1350fc-9d5a-438c-b6f1-d8d339f9f7a9\", \"d38f5d4d-1338-480c-9bc3-c46b70aa44ff\": \"d38f5d4d-1338-480c-9bc3-c46b70aa44ff\", \"c4496cc5-3ea6-4684-8a1b-7f81111ac418\": \"c4496cc5-3ea6-4684-8a1b-7f81111ac418\", \"c95affc4-9657-4cf0-aa11-160836f45bef\": \"c95affc4-9657-4cf0-aa11-160836f45bef\", \"8791d5f4-87af-470d-a241-7429f1682002\": \"8791d5f4-87af-470d-a241-7429f1682002\", \"e3ee8490-d895-44c6-a02d-ec4076b07423\": \"e3ee8490-d895-44c6-a02d-ec4076b07423\", \"4a19c04f-6222-4a70-aa78-0a41b117a98a\": \"4a19c04f-6222-4a70-aa78-0a41b117a98a\", \"1540b900-eb6d-4c64-9b79-3ebdb6382881\": \"1540b900-eb6d-4c64-9b79-3ebdb6382881\", \"cc928f43-ed37-42ce-ad06-9dc52be29b89\": \"cc928f43-ed37-42ce-ad06-9dc52be29b89\", \"6fafa2e5-6da6-467a-aea2-453aeafa8bd2\": \"6fafa2e5-6da6-467a-aea2-453aeafa8bd2\", \"02e510d2-4417-444e-96d1-708394524711\": \"02e510d2-4417-444e-96d1-708394524711\", \"1305a9a6-2840-4aff-ab75-7c780061df85\": \"1305a9a6-2840-4aff-ab75-7c780061df85\", \"639ee74a-9c31-422b-8ba8-d3d1fb751011\": \"639ee74a-9c31-422b-8ba8-d3d1fb751011\", \"69def097-1a2d-4a1d-815a-f6b361d41a1d\": \"69def097-1a2d-4a1d-815a-f6b361d41a1d\", \"e4152376-509c-43e0-983f-26c4704c661b\": \"e4152376-509c-43e0-983f-26c4704c661b\", \"f75e1eb4-8a1d-46bf-90bb-d69a417a7c25\": \"f75e1eb4-8a1d-46bf-90bb-d69a417a7c25\", \"ba2982cb-95f8-415e-9455-83cd9acd75fe\": \"ba2982cb-95f8-415e-9455-83cd9acd75fe\", \"e4410aaf-abb2-4a8d-bfea-f187562f2bd0\": \"e4410aaf-abb2-4a8d-bfea-f187562f2bd0\", \"5aa1408b-b07a-4aa1-8eea-bf887f5b89a3\": \"5aa1408b-b07a-4aa1-8eea-bf887f5b89a3\", \"87ed0d05-1512-412f-94e4-bfef37c5b2ba\": \"87ed0d05-1512-412f-94e4-bfef37c5b2ba\", \"fc32e430-36a5-4c79-9322-161ad16c6a38\": \"fc32e430-36a5-4c79-9322-161ad16c6a38\", \"56c16b6f-844b-4677-bc92-382812d4a5fd\": \"56c16b6f-844b-4677-bc92-382812d4a5fd\", \"5ccd8ee4-69c0-4922-b4a7-d8b2b147be81\": \"5ccd8ee4-69c0-4922-b4a7-d8b2b147be81\", \"6d861597-3dea-4599-8722-522a85f851bc\": \"6d861597-3dea-4599-8722-522a85f851bc\", \"8b76c49d-0855-4757-a225-fb12104684c0\": \"8b76c49d-0855-4757-a225-fb12104684c0\", \"ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276\": \"ccf0b0d0-3a51-4a57-ae5c-ee790eaa0276\", \"0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8\": \"0cf66ccc-9d9b-41ed-9059-9f3166ce7ba8\", \"05409e7b-3828-4a90-8ac6-5f1a971675e7\": \"05409e7b-3828-4a90-8ac6-5f1a971675e7\", \"eefa4bc9-4088-4277-a7a6-d02eb7aefa9e\": \"eefa4bc9-4088-4277-a7a6-d02eb7aefa9e\", \"4d4f1aac-9127-46c4-830b-0a632b765c55\": \"4d4f1aac-9127-46c4-830b-0a632b765c55\", \"a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13\": \"a1cc0a3f-0fd5-4f58-b6fb-9d40d731ad13\", \"90a20c13-3a5a-4ed8-9534-5f03f7b08c31\": \"90a20c13-3a5a-4ed8-9534-5f03f7b08c31\", \"375f3d44-baf3-4e91-aa24-d8bea56ec25a\": \"375f3d44-baf3-4e91-aa24-d8bea56ec25a\", \"706a5c3f-650a-48b0-8f97-31957f713ed4\": \"706a5c3f-650a-48b0-8f97-31957f713ed4\", \"999bc920-1006-4ea9-b1a0-7682ac468906\": \"999bc920-1006-4ea9-b1a0-7682ac468906\", \"65d92c4a-5a94-452b-9d27-48ace8068769\": \"65d92c4a-5a94-452b-9d27-48ace8068769\", \"a1b858d8-7454-4d72-937a-89d8b0cd3514\": \"a1b858d8-7454-4d72-937a-89d8b0cd3514\", \"286565bb-97e6-44ca-bffc-9d76a1504336\": \"286565bb-97e6-44ca-bffc-9d76a1504336\", \"05f08375-ea6d-4f8b-b937-e2c629034c8f\": \"05f08375-ea6d-4f8b-b937-e2c629034c8f\", \"82e0f725-a5e1-4358-8da3-f78e7eeea1c7\": \"82e0f725-a5e1-4358-8da3-f78e7eeea1c7\", \"8b65e748-db71-49e1-ae0d-0d4f5a5532f9\": \"8b65e748-db71-49e1-ae0d-0d4f5a5532f9\", \"24def6eb-8e69-4d9b-be39-bcfb7fadd1ad\": \"24def6eb-8e69-4d9b-be39-bcfb7fadd1ad\", \"3bce3dfa-7f5a-4656-b345-80227c0034b7\": \"3bce3dfa-7f5a-4656-b345-80227c0034b7\", \"f2da6d62-8c19-450c-a515-996c4d4d47d8\": \"f2da6d62-8c19-450c-a515-996c4d4d47d8\", \"6462c9de-5859-49b2-99eb-6a15229ab991\": \"6462c9de-5859-49b2-99eb-6a15229ab991\", \"2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d\": \"2f02db3f-6bb8-4eb7-b1d6-49326cde7c5d\", \"e1293de6-79f5-4f45-95a9-d5a2127a2f48\": \"e1293de6-79f5-4f45-95a9-d5a2127a2f48\", \"99add419-66f8-4b9a-857e-cdeb93a95324\": \"99add419-66f8-4b9a-857e-cdeb93a95324\", \"8fe72806-0403-44e5-b6f0-72437e6f4297\": \"8fe72806-0403-44e5-b6f0-72437e6f4297\", \"beeb7bf2-8f14-4d7d-9176-c905856f6ce6\": \"beeb7bf2-8f14-4d7d-9176-c905856f6ce6\", \"8d489c1f-8825-44d5-a921-ce683df31c64\": \"8d489c1f-8825-44d5-a921-ce683df31c64\", \"97ad3b2a-bdb8-44ca-a429-cf323cc18abf\": \"97ad3b2a-bdb8-44ca-a429-cf323cc18abf\", \"5b385e2c-697d-4cbf-8c3f-ee5184205330\": \"5b385e2c-697d-4cbf-8c3f-ee5184205330\", \"b4713258-16c1-4a8c-9668-dbc45ec1e83e\": \"b4713258-16c1-4a8c-9668-dbc45ec1e83e\", \"3d906c4b-09ed-40d3-bc68-c1d0fd769e1a\": \"3d906c4b-09ed-40d3-bc68-c1d0fd769e1a\", \"75c34d7d-f772-4ab5-950d-6f5cc0ab5900\": \"75c34d7d-f772-4ab5-950d-6f5cc0ab5900\", \"70de6503-16bd-4c16-88d2-c2121d55b79b\": \"70de6503-16bd-4c16-88d2-c2121d55b79b\", \"f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a\": \"f3cd3ffc-5ca1-4bfe-a1c5-c6bf51a7873a\", \"f980eded-6546-4da7-a746-951dcee06c3d\": \"f980eded-6546-4da7-a746-951dcee06c3d\", \"fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee\": \"fd7a80b0-fa9d-4b55-a6f3-8e8d334aecee\", \"00165cdc-765b-4ce5-906f-011f68d87357\": \"00165cdc-765b-4ce5-906f-011f68d87357\", \"116da362-b306-4a01-8b63-9ca90ed88538\": \"116da362-b306-4a01-8b63-9ca90ed88538\", \"f6720996-0050-41b2-978e-cd5d5b1c7351\": \"f6720996-0050-41b2-978e-cd5d5b1c7351\", \"f9f42492-39d1-40bb-8a3e-6d96b10cbda2\": \"f9f42492-39d1-40bb-8a3e-6d96b10cbda2\", \"63e6a09a-cce4-4aab-9e46-cae05495b3f3\": \"63e6a09a-cce4-4aab-9e46-cae05495b3f3\", \"c8fcefcc-dfa7-41fc-b950-a2a1e67344b6\": \"c8fcefcc-dfa7-41fc-b950-a2a1e67344b6\", \"29a716cc-b333-43a9-bd9d-3e739a6a6f38\": \"29a716cc-b333-43a9-bd9d-3e739a6a6f38\", \"785d28c3-cf93-4a75-a189-36ba85697e2a\": \"785d28c3-cf93-4a75-a189-36ba85697e2a\", \"bac11d45-c3c0-4ec7-8acf-1688137cf753\": \"bac11d45-c3c0-4ec7-8acf-1688137cf753\", \"94a125e4-583b-4d09-998c-6f7b4fec2aca\": \"94a125e4-583b-4d09-998c-6f7b4fec2aca\", \"d8e9d331-3eac-4338-8457-5347bb9d967e\": \"d8e9d331-3eac-4338-8457-5347bb9d967e\", \"7a66b2b0-429f-417a-9644-101f2360e5d3\": \"7a66b2b0-429f-417a-9644-101f2360e5d3\", \"1365ed79-7541-45ac-885e-f0a8ade8bfa0\": \"1365ed79-7541-45ac-885e-f0a8ade8bfa0\", \"29d68e17-7d77-4fc5-92d5-f86cd162066f\": \"29d68e17-7d77-4fc5-92d5-f86cd162066f\", \"5d1daf16-012e-48ea-bb39-132e8a0e5cef\": \"5d1daf16-012e-48ea-bb39-132e8a0e5cef\", \"58e345da-8dfc-478c-b6bc-857949b978fd\": \"58e345da-8dfc-478c-b6bc-857949b978fd\", \"d8bf818d-de82-42d4-a0fa-42c52c6c0311\": \"d8bf818d-de82-42d4-a0fa-42c52c6c0311\", \"17effb81-f60e-4b4c-83d5-8c34d5a20596\": \"17effb81-f60e-4b4c-83d5-8c34d5a20596\", \"c2372b8c-bdaf-4b84-b8bd-0b445d627758\": \"c2372b8c-bdaf-4b84-b8bd-0b445d627758\", \"7a0e1fab-2aa9-452d-92d0-aaabf2b064af\": \"7a0e1fab-2aa9-452d-92d0-aaabf2b064af\", \"f3133d5d-c651-4597-a0a7-22d8789e4670\": \"f3133d5d-c651-4597-a0a7-22d8789e4670\", \"57891ce2-32a1-44f0-8d7f-24b4f6b2806c\": \"57891ce2-32a1-44f0-8d7f-24b4f6b2806c\", \"bf8cab73-f2c8-4398-bdfc-dac7494e9c7e\": \"bf8cab73-f2c8-4398-bdfc-dac7494e9c7e\", \"8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250\": \"8aad7c5c-cf6f-4ff5-80fd-dc9cbc9a4250\", \"1f33685d-5e46-4065-bdda-c5d1cf3c836e\": \"1f33685d-5e46-4065-bdda-c5d1cf3c836e\", \"43b9c0f1-8423-4a24-a2fe-4434daf2d75a\": \"43b9c0f1-8423-4a24-a2fe-4434daf2d75a\", \"ecc3483f-afda-484e-a108-f46b8a58a386\": \"ecc3483f-afda-484e-a108-f46b8a58a386\", \"085023e5-874a-4200-a199-df73a601a34d\": \"085023e5-874a-4200-a199-df73a601a34d\", \"f0ecf047-f69c-49d7-9482-44369e5d23f5\": \"f0ecf047-f69c-49d7-9482-44369e5d23f5\", \"63ce688e-1569-449a-accd-6a4f92779bfb\": \"63ce688e-1569-449a-accd-6a4f92779bfb\", \"9eee609a-8e10-4a48-86f1-0e87740ab06a\": \"9eee609a-8e10-4a48-86f1-0e87740ab06a\", \"f8ca29ac-60fc-47c2-a9ec-8e93bcda0598\": \"f8ca29ac-60fc-47c2-a9ec-8e93bcda0598\", \"bf305abc-a0fe-4e71-bcd9-7e4f50c89247\": \"bf305abc-a0fe-4e71-bcd9-7e4f50c89247\", \"c4765729-02a5-4597-bfcd-57f62dbd8701\": \"c4765729-02a5-4597-bfcd-57f62dbd8701\", \"bc230ea6-588e-4927-b6b3-4d3ccda9c6ef\": \"bc230ea6-588e-4927-b6b3-4d3ccda9c6ef\", \"54645dec-d5cf-4406-8519-2caf793a8d55\": \"54645dec-d5cf-4406-8519-2caf793a8d55\", \"2b7191fc-77a4-43e3-b69e-0120173a1ddf\": \"2b7191fc-77a4-43e3-b69e-0120173a1ddf\", \"b67e39a3-2f5e-4ef1-b716-07d219692b03\": \"b67e39a3-2f5e-4ef1-b716-07d219692b03\", \"203718f9-f181-48af-843d-32d463f4a412\": \"203718f9-f181-48af-843d-32d463f4a412\", \"9241ed6d-bc04-4f24-a195-3b27ac75f5e7\": \"9241ed6d-bc04-4f24-a195-3b27ac75f5e7\", \"08c2f405-2ef7-4881-9909-b74222a3fbcc\": \"08c2f405-2ef7-4881-9909-b74222a3fbcc\", \"648c429b-f7fe-4458-93cf-66c8c125639f\": \"648c429b-f7fe-4458-93cf-66c8c125639f\", \"0b65d9b4-7d7d-4f18-87fb-15c4543c81d9\": \"0b65d9b4-7d7d-4f18-87fb-15c4543c81d9\", \"a60b23ce-e7cc-4336-bb9c-debac1700529\": \"a60b23ce-e7cc-4336-bb9c-debac1700529\", \"fd20aac4-0a33-43a5-bdd1-16c3a6cc535c\": \"fd20aac4-0a33-43a5-bdd1-16c3a6cc535c\", \"d46c3f2a-a1b9-4d87-94df-504d42d8f00e\": \"d46c3f2a-a1b9-4d87-94df-504d42d8f00e\", \"9f65f32f-f262-4e36-b472-019405837437\": \"9f65f32f-f262-4e36-b472-019405837437\", \"9791c9dc-9a08-4018-b29c-e742960e0141\": \"9791c9dc-9a08-4018-b29c-e742960e0141\", \"753cfa89-dec1-4ecc-8d9a-0ec62f0290f0\": \"753cfa89-dec1-4ecc-8d9a-0ec62f0290f0\", \"87b726d8-91a8-4d85-854c-a41b637e133c\": \"87b726d8-91a8-4d85-854c-a41b637e133c\", \"a6e7c833-5f83-4448-84c6-4a659c803843\": \"a6e7c833-5f83-4448-84c6-4a659c803843\", \"d98827b7-94a1-4dff-a537-9b45a7f5232b\": \"d98827b7-94a1-4dff-a537-9b45a7f5232b\", \"e2435de1-589b-4f6d-9c4a-f96e20f058fc\": \"e2435de1-589b-4f6d-9c4a-f96e20f058fc\", \"bbe90f1c-132f-4a56-b528-07d0e66fc914\": \"bbe90f1c-132f-4a56-b528-07d0e66fc914\", \"66641c23-4def-4b61-8473-67323a1372ed\": \"66641c23-4def-4b61-8473-67323a1372ed\", \"e12f8265-0301-4266-a07d-df81002d2328\": \"e12f8265-0301-4266-a07d-df81002d2328\", \"d2dfe03a-ca03-41d4-a1ae-3a61424182b3\": \"d2dfe03a-ca03-41d4-a1ae-3a61424182b3\", \"99f0352b-240f-44d7-b74d-456e90db0a63\": \"99f0352b-240f-44d7-b74d-456e90db0a63\", \"dc87a74e-5142-4dd3-8797-e3235c902f29\": \"dc87a74e-5142-4dd3-8797-e3235c902f29\", \"3a1edd39-c69a-4587-939e-7d7698afa334\": \"3a1edd39-c69a-4587-939e-7d7698afa334\", \"d8f1a304-ede3-426d-ad3e-aafced4c4d11\": \"d8f1a304-ede3-426d-ad3e-aafced4c4d11\", \"c9ffce2f-fdd0-4098-8685-dc9bf0261883\": \"c9ffce2f-fdd0-4098-8685-dc9bf0261883\", \"bc837308-679b-4575-963a-690be2caa634\": \"bc837308-679b-4575-963a-690be2caa634\", \"e3917d84-eb21-4ed3-a124-b81b57e1b2c2\": \"e3917d84-eb21-4ed3-a124-b81b57e1b2c2\", \"16c787d1-e70f-418f-a066-07636d894505\": \"16c787d1-e70f-418f-a066-07636d894505\", \"79410707-4bb9-4fe3-b43b-b5d422f5356a\": \"79410707-4bb9-4fe3-b43b-b5d422f5356a\", \"1d294765-5d66-44bc-a87f-88e86b3660ce\": \"1d294765-5d66-44bc-a87f-88e86b3660ce\", \"724f5ba3-cb28-452e-86f2-095b6d97e3fd\": \"724f5ba3-cb28-452e-86f2-095b6d97e3fd\", \"dc89cc24-1635-4a30-be77-34a1af42904c\": \"dc89cc24-1635-4a30-be77-34a1af42904c\", \"77bd88a1-2bf2-4ec9-bf59-5ef03214e438\": \"77bd88a1-2bf2-4ec9-bf59-5ef03214e438\", \"2514b96f-7ceb-4548-b1ca-f2bc400a2407\": \"2514b96f-7ceb-4548-b1ca-f2bc400a2407\", \"714013ce-508a-4178-8b28-151587aa02a7\": \"714013ce-508a-4178-8b28-151587aa02a7\", \"177dc299-f92e-4a9d-b070-6a0b8a097a5f\": \"177dc299-f92e-4a9d-b070-6a0b8a097a5f\", \"9c2f8726-de3f-4de1-aaf2-f3f39903a8b1\": \"9c2f8726-de3f-4de1-aaf2-f3f39903a8b1\", \"e70347c1-8d10-4461-85a7-5be699b2f78d\": \"e70347c1-8d10-4461-85a7-5be699b2f78d\", \"4d33a4d4-1ab3-420a-a807-77fbd183e918\": \"4d33a4d4-1ab3-420a-a807-77fbd183e918\", \"977ac93c-dcd8-4eca-85f8-a2662eb38c6d\": \"977ac93c-dcd8-4eca-85f8-a2662eb38c6d\", \"f0a17810-6bc2-46f9-9a41-cd45146387e8\": \"f0a17810-6bc2-46f9-9a41-cd45146387e8\", \"a389b74d-a6d3-4625-a167-9b1c1ed22b3c\": \"a389b74d-a6d3-4625-a167-9b1c1ed22b3c\", \"409cc92e-464c-4dde-975a-d1215fbd5a5c\": \"409cc92e-464c-4dde-975a-d1215fbd5a5c\", \"30fdebdf-516d-48ff-86cf-bfaab3c3ae6d\": \"30fdebdf-516d-48ff-86cf-bfaab3c3ae6d\", \"2cd98cee-28f6-4a46-ac1f-119dbfe72253\": \"2cd98cee-28f6-4a46-ac1f-119dbfe72253\", \"64cd13c3-afaf-4ce1-8a02-b01610ff8064\": \"64cd13c3-afaf-4ce1-8a02-b01610ff8064\", \"646a7216-2de6-47cd-9da5-e43fdf153863\": \"646a7216-2de6-47cd-9da5-e43fdf153863\", \"69c1c1b8-81ad-408d-87ec-18378846ffbd\": \"69c1c1b8-81ad-408d-87ec-18378846ffbd\", \"1bdfa5f3-f984-44e4-b8c7-c7629d835d67\": \"1bdfa5f3-f984-44e4-b8c7-c7629d835d67\", \"b4272f78-47c9-4800-b59f-194275c2a3af\": \"b4272f78-47c9-4800-b59f-194275c2a3af\", \"293da2cb-41b3-4fa9-8298-6229a8d6d9f7\": \"293da2cb-41b3-4fa9-8298-6229a8d6d9f7\", \"083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d\": \"083dd5a8-9d56-4fd2-a4f4-61cb51a81f1d\", \"7db7d3dc-5887-4e5d-b914-551d2639a122\": \"7db7d3dc-5887-4e5d-b914-551d2639a122\", \"4592e907-8966-4da4-b3e1-13dd886fce56\": \"4592e907-8966-4da4-b3e1-13dd886fce56\", \"72aba6b4-1ede-483b-9447-21a27d492e54\": \"72aba6b4-1ede-483b-9447-21a27d492e54\", \"93740952-7ce8-43e3-842e-db8c89ff265e\": \"93740952-7ce8-43e3-842e-db8c89ff265e\", \"3de60956-2b5d-4b72-9e4f-419786ed6de4\": \"3de60956-2b5d-4b72-9e4f-419786ed6de4\", \"7413076b-ec91-49b9-976d-595bacc50aef\": \"7413076b-ec91-49b9-976d-595bacc50aef\", \"9eabe137-3529-4319-93a1-8108b32b96f7\": \"9eabe137-3529-4319-93a1-8108b32b96f7\", \"4a93d207-dd6a-4048-92b1-6476196ba807\": \"4a93d207-dd6a-4048-92b1-6476196ba807\", \"f77ebba1-1721-4940-bcb2-f682d8dfab85\": \"f77ebba1-1721-4940-bcb2-f682d8dfab85\", \"00a1b3d9-a95c-4503-a484-4121b3286bee\": \"00a1b3d9-a95c-4503-a484-4121b3286bee\", \"bf9eabd6-e35a-4dbf-a5ad-2c3610508656\": \"bf9eabd6-e35a-4dbf-a5ad-2c3610508656\", \"28225bcc-12fb-4d78-8636-f61732c31b5f\": \"28225bcc-12fb-4d78-8636-f61732c31b5f\", \"4c63c4a5-b606-4b46-969b-655fc2f2065f\": \"4c63c4a5-b606-4b46-969b-655fc2f2065f\", \"6e8dc8b3-c7b4-4824-88ee-d2255f344963\": \"6e8dc8b3-c7b4-4824-88ee-d2255f344963\", \"8cd61283-b3a2-4e30-b074-30b96757e3cb\": \"8cd61283-b3a2-4e30-b074-30b96757e3cb\", \"8f6a2f4c-950b-499e-b593-a9b21954e938\": \"8f6a2f4c-950b-499e-b593-a9b21954e938\", \"515b26d0-017d-4538-ace9-2a33e1595b19\": \"515b26d0-017d-4538-ace9-2a33e1595b19\", \"6df56e9b-de15-4bbd-b39d-42da20d77446\": \"6df56e9b-de15-4bbd-b39d-42da20d77446\", \"9006df30-620e-4f43-92e4-0f5bf11e1d78\": \"9006df30-620e-4f43-92e4-0f5bf11e1d78\", \"a0b4415b-08fa-41ec-8cfa-cbce73491806\": \"a0b4415b-08fa-41ec-8cfa-cbce73491806\", \"65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed\": \"65cf51ff-7dbe-46c3-9d05-c61bd83fc1ed\", \"b0fcf8a2-c0e4-4e72-8dbe-5782858352f6\": \"b0fcf8a2-c0e4-4e72-8dbe-5782858352f6\", \"3da3f87e-c670-44c9-800f-fe5dc2f19cfa\": \"3da3f87e-c670-44c9-800f-fe5dc2f19cfa\", \"386766c4-8654-41af-954d-7e93a2167f70\": \"386766c4-8654-41af-954d-7e93a2167f70\", \"d39ed896-48a3-4bd6-bf9a-39c4d50de442\": \"d39ed896-48a3-4bd6-bf9a-39c4d50de442\", \"f7867c13-c2ac-42ea-a00e-590713751cd0\": \"f7867c13-c2ac-42ea-a00e-590713751cd0\", \"a025dd2a-dacc-42ea-826e-de0c9b49bf18\": \"a025dd2a-dacc-42ea-826e-de0c9b49bf18\", \"70f84f63-3ea0-4143-86c1-2a8c5bba9a73\": \"70f84f63-3ea0-4143-86c1-2a8c5bba9a73\", \"9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77\": \"9c1f7f0d-e761-4a89-a3d6-e8ef0dbafc77\", \"a2ba7158-23a5-44ea-aaf6-ce6347b3570f\": \"a2ba7158-23a5-44ea-aaf6-ce6347b3570f\", \"0a0f1352-52c8-4923-b246-808106ab1e3c\": \"0a0f1352-52c8-4923-b246-808106ab1e3c\", \"5cc3c626-e526-4278-8966-67871da58de1\": \"5cc3c626-e526-4278-8966-67871da58de1\", \"79cbad7f-ddf4-400b-98b9-1a43457b9305\": \"79cbad7f-ddf4-400b-98b9-1a43457b9305\", \"6f3c2e7c-a885-40f5-87a7-9510dbdab4a7\": \"6f3c2e7c-a885-40f5-87a7-9510dbdab4a7\", \"4002194f-58eb-4396-94da-c2989c57c87c\": \"4002194f-58eb-4396-94da-c2989c57c87c\", \"6be42a29-eb9a-416a-96e6-6ed7a73abe67\": \"6be42a29-eb9a-416a-96e6-6ed7a73abe67\", \"aef387fe-9f00-493f-9a4a-92ef6b5be95e\": \"aef387fe-9f00-493f-9a4a-92ef6b5be95e\", \"6c82ee55-94f9-4445-bf23-dc7a2a6a395a\": \"6c82ee55-94f9-4445-bf23-dc7a2a6a395a\", \"5cfdc72f-44ab-4a3b-a8e2-fe3947539ada\": \"5cfdc72f-44ab-4a3b-a8e2-fe3947539ada\", \"5eb0aebd-f9ba-4fb3-a265-c59ffab89f24\": \"5eb0aebd-f9ba-4fb3-a265-c59ffab89f24\", \"1f72320b-2338-447a-b1ce-c42e60aa2f5b\": \"1f72320b-2338-447a-b1ce-c42e60aa2f5b\", \"14783564-1fdf-42e0-afc2-19b1a1032a09\": \"14783564-1fdf-42e0-afc2-19b1a1032a09\", \"1bab286e-0147-41ce-a5b4-13096c0434be\": \"1bab286e-0147-41ce-a5b4-13096c0434be\", \"e1d9f9dc-f710-4835-8f56-dfe018a8328f\": \"e1d9f9dc-f710-4835-8f56-dfe018a8328f\", \"4decafb4-16ce-4258-894b-dbb78124842b\": \"4decafb4-16ce-4258-894b-dbb78124842b\", \"5de01344-24ec-426a-a5a1-026ab9866710\": \"5de01344-24ec-426a-a5a1-026ab9866710\", \"74962a78-60ed-49e9-87f6-3ad2fd44a7dc\": \"74962a78-60ed-49e9-87f6-3ad2fd44a7dc\", \"ba0ae850-0e05-483c-b73b-8b42ed1cc248\": \"ba0ae850-0e05-483c-b73b-8b42ed1cc248\", \"4f5ca5b2-fadf-4278-90a2-f1c491d90706\": \"4f5ca5b2-fadf-4278-90a2-f1c491d90706\", \"0c44367d-7b8c-4232-bf4d-f4a7767ee3f1\": \"0c44367d-7b8c-4232-bf4d-f4a7767ee3f1\", \"3dd392ea-d0bc-465c-9fb9-3de0319811f1\": \"3dd392ea-d0bc-465c-9fb9-3de0319811f1\", \"95f30ff0-f47f-4fd8-81de-99a10686d7d2\": \"95f30ff0-f47f-4fd8-81de-99a10686d7d2\", \"69875d39-0933-4e28-880a-6590ba465c43\": \"69875d39-0933-4e28-880a-6590ba465c43\", \"5f769bc4-61f0-4b58-b454-615c82bcb039\": \"5f769bc4-61f0-4b58-b454-615c82bcb039\", \"f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0\": \"f11428e2-b4a6-4b7a-bf8a-97bb4e1d32c0\", \"737216ed-c07c-4049-9134-a34c8c4cf472\": \"737216ed-c07c-4049-9134-a34c8c4cf472\", \"83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a\": \"83e3cd0c-26b9-42b7-9b2c-cfe1fe4e9f7a\", \"8ee590ef-d228-4220-878f-aaf27b9395c7\": \"8ee590ef-d228-4220-878f-aaf27b9395c7\", \"e411e136-0b3b-407e-b265-99c95c3610e3\": \"e411e136-0b3b-407e-b265-99c95c3610e3\", \"73d66fb0-55e2-45d8-af34-16e854471bcf\": \"73d66fb0-55e2-45d8-af34-16e854471bcf\", \"441471e5-e26f-4f1b-8711-f8e270e5e9b5\": \"441471e5-e26f-4f1b-8711-f8e270e5e9b5\", \"be4a1dbe-dd07-4047-b022-97e99c40608e\": \"be4a1dbe-dd07-4047-b022-97e99c40608e\", \"b20e3641-17a5-42a9-816d-4f5ea34072e9\": \"b20e3641-17a5-42a9-816d-4f5ea34072e9\", \"abe05f1b-6d22-4868-82f5-af5ed94fcbdf\": \"abe05f1b-6d22-4868-82f5-af5ed94fcbdf\", \"eb7a9cac-1943-4f3a-a8a4-528815b4ad66\": \"eb7a9cac-1943-4f3a-a8a4-528815b4ad66\", \"36c3e911-07d5-4adc-ade4-4cca3b89784b\": \"36c3e911-07d5-4adc-ade4-4cca3b89784b\", \"5b8e2202-2300-4cac-905b-7dbe5f4b7e81\": \"5b8e2202-2300-4cac-905b-7dbe5f4b7e81\", \"dc897430-daff-4f45-83cc-4a7ef7dbf571\": \"dc897430-daff-4f45-83cc-4a7ef7dbf571\", \"5b9b0813-fc4c-495d-a4f4-f0f1850f19cc\": \"5b9b0813-fc4c-495d-a4f4-f0f1850f19cc\", \"a69e5a8c-9a09-4730-8fa2-d6391000283b\": \"a69e5a8c-9a09-4730-8fa2-d6391000283b\", \"972f85ec-ba34-4b4c-bb75-425f8328a112\": \"972f85ec-ba34-4b4c-bb75-425f8328a112\", \"9f2acf9d-de30-4340-a625-4e1de579099e\": \"9f2acf9d-de30-4340-a625-4e1de579099e\", \"5fb7152d-4df6-4a74-9b06-7c4e59635423\": \"5fb7152d-4df6-4a74-9b06-7c4e59635423\", \"a26a1046-a37f-44b7-b1cc-5b364de92307\": \"a26a1046-a37f-44b7-b1cc-5b364de92307\", \"68e69dda-875b-4f88-9894-60387b9ecf39\": \"68e69dda-875b-4f88-9894-60387b9ecf39\", \"91f0d751-73bf-406d-9f3b-5bb88615b284\": \"91f0d751-73bf-406d-9f3b-5bb88615b284\", \"1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9\": \"1b0c844a-da2c-4e13-8a36-ac8ff8ed7ea9\", \"790d77c9-1cbc-4bff-b693-ef2e6deece32\": \"790d77c9-1cbc-4bff-b693-ef2e6deece32\", \"97017fc9-883f-4e0a-bd1d-3201ba26743b\": \"97017fc9-883f-4e0a-bd1d-3201ba26743b\", \"c7d60546-fa1f-43ef-99e2-f47a9aa6a194\": \"c7d60546-fa1f-43ef-99e2-f47a9aa6a194\", \"cbf79179-1f64-45f2-b817-d1538f8116a5\": \"cbf79179-1f64-45f2-b817-d1538f8116a5\", \"63b14d03-f30c-4ae7-93d3-b097f26f5df3\": \"63b14d03-f30c-4ae7-93d3-b097f26f5df3\", \"1e6848cd-69ee-4e1f-8b8c-f5551e92d648\": \"1e6848cd-69ee-4e1f-8b8c-f5551e92d648\", \"4292a0a3-8108-44f3-8523-728b66cfb241\": \"4292a0a3-8108-44f3-8523-728b66cfb241\", \"edbf2b56-ad60-4f47-991d-ab4fe98381f7\": \"edbf2b56-ad60-4f47-991d-ab4fe98381f7\", \"5343cc47-3286-4789-bac0-8d2742697b44\": \"5343cc47-3286-4789-bac0-8d2742697b44\", \"8ef537eb-034e-41cc-9cd8-9f2e88001192\": \"8ef537eb-034e-41cc-9cd8-9f2e88001192\", \"2bf668cb-3cea-46b3-a5e7-b28e5319bf04\": \"2bf668cb-3cea-46b3-a5e7-b28e5319bf04\", \"38d2429d-16cb-46aa-9f45-a035dc6243a8\": \"38d2429d-16cb-46aa-9f45-a035dc6243a8\", \"ddf95a47-4064-42f5-bb8e-29f3876bdeee\": \"ddf95a47-4064-42f5-bb8e-29f3876bdeee\", \"8e5676d3-a029-477a-8141-54a150162ad5\": \"8e5676d3-a029-477a-8141-54a150162ad5\", \"f11b4391-8f99-43e7-9d4f-d576065d986b\": \"f11b4391-8f99-43e7-9d4f-d576065d986b\", \"7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba\": \"7e8fbc7d-ddcc-4a6f-a9f7-753cf39ac7ba\", \"a7bd30e9-b360-435d-af51-e134f71449c6\": \"a7bd30e9-b360-435d-af51-e134f71449c6\", \"492f8d8d-418f-4359-9646-0671ecd81a0e\": \"492f8d8d-418f-4359-9646-0671ecd81a0e\", \"5ecabaa0-43d4-4bae-9473-64ce3f957e02\": \"5ecabaa0-43d4-4bae-9473-64ce3f957e02\", \"afa84609-1657-4af3-a6cb-ca9a98fbcfd5\": \"afa84609-1657-4af3-a6cb-ca9a98fbcfd5\", \"e478aa92-7c27-43ad-8a76-5922e080eaca\": \"e478aa92-7c27-43ad-8a76-5922e080eaca\", \"0a99ea88-32a0-48cb-ba44-0312b17a6952\": \"0a99ea88-32a0-48cb-ba44-0312b17a6952\", \"435ab031-332b-4ffe-baae-a9fd1f628d42\": \"435ab031-332b-4ffe-baae-a9fd1f628d42\", \"c2f69f30-7241-462f-b5ef-5068418d7c21\": \"c2f69f30-7241-462f-b5ef-5068418d7c21\", \"0fae1471-18b6-4379-b766-596ab1c27a57\": \"0fae1471-18b6-4379-b766-596ab1c27a57\", \"3e01adc3-97c3-41b0-a8a5-7b13e8edccf2\": \"3e01adc3-97c3-41b0-a8a5-7b13e8edccf2\", \"6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d\": \"6ce8dbe1-7edc-47af-ba15-e739d2ba1d4d\", \"744a513e-df03-4eca-8b14-bc342b40e2d8\": \"744a513e-df03-4eca-8b14-bc342b40e2d8\", \"740dbe6e-b64f-4406-b96f-34a96b8b9c44\": \"740dbe6e-b64f-4406-b96f-34a96b8b9c44\", \"a7582069-b5a6-406c-8b7f-40d1ecf5030c\": \"a7582069-b5a6-406c-8b7f-40d1ecf5030c\", \"62903189-ff34-416a-b9e4-67cd91fdd049\": \"62903189-ff34-416a-b9e4-67cd91fdd049\", \"c7f53ddb-7a11-454f-98b4-a371814b5047\": \"c7f53ddb-7a11-454f-98b4-a371814b5047\", \"b77db9bf-e17e-4af2-b241-a9cf6ba1b058\": \"b77db9bf-e17e-4af2-b241-a9cf6ba1b058\", \"a43b2900-7b92-40c3-ae2e-69387f349f26\": \"a43b2900-7b92-40c3-ae2e-69387f349f26\", \"bfef31a4-bbc8-415a-88a0-d2ef2bffb81e\": \"bfef31a4-bbc8-415a-88a0-d2ef2bffb81e\", \"3447dcfb-b79c-450f-8e74-5d4068bd816c\": \"3447dcfb-b79c-450f-8e74-5d4068bd816c\", \"4c458e23-0ac8-4058-89bf-3aff07661395\": \"4c458e23-0ac8-4058-89bf-3aff07661395\", \"b7e2a00d-9837-4537-bb23-2ca10344ac4f\": \"b7e2a00d-9837-4537-bb23-2ca10344ac4f\", \"a62695a1-9bd7-4ea6-a9d9-3ded0ef31948\": \"a62695a1-9bd7-4ea6-a9d9-3ded0ef31948\", \"06394856-8211-4dac-a95b-30479062ab38\": \"06394856-8211-4dac-a95b-30479062ab38\", \"34850369-81f1-4913-843d-4ba72cb9ddc9\": \"34850369-81f1-4913-843d-4ba72cb9ddc9\", \"4055c94c-1efd-425c-961c-938243925a8c\": \"4055c94c-1efd-425c-961c-938243925a8c\", \"60d5bba2-aa85-410a-850b-47e4190c0778\": \"60d5bba2-aa85-410a-850b-47e4190c0778\", \"8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420\": \"8ec7a1f8-3b02-4c48-aa0e-67d4ac7e3420\", \"137f8bc5-afb5-4e40-8913-84aee3e2d5c2\": \"137f8bc5-afb5-4e40-8913-84aee3e2d5c2\", \"2196c0f9-a857-47ad-bf41-bddb1b680025\": \"2196c0f9-a857-47ad-bf41-bddb1b680025\", \"a6baa05b-444e-46a0-b3a0-225ec2215e74\": \"a6baa05b-444e-46a0-b3a0-225ec2215e74\", \"d941f0e9-e48c-43ff-b739-5a9f59eafcbd\": \"d941f0e9-e48c-43ff-b739-5a9f59eafcbd\", \"ed5611de-350c-4f16-8c64-617c2a4bd876\": \"ed5611de-350c-4f16-8c64-617c2a4bd876\", \"8eb1beaf-1c9d-4e93-bc84-0894c8df850a\": \"8eb1beaf-1c9d-4e93-bc84-0894c8df850a\", \"d47cbb17-d384-4b63-91a0-f8bad1e03c4a\": \"d47cbb17-d384-4b63-91a0-f8bad1e03c4a\", \"d46b8379-34b0-44bd-9ba6-3987004972a8\": \"d46b8379-34b0-44bd-9ba6-3987004972a8\", \"cf9673ba-d816-4894-b63c-69ccab4d121c\": \"cf9673ba-d816-4894-b63c-69ccab4d121c\", \"58dba977-c5e9-45a1-b8d5-56f8a118b2e2\": \"58dba977-c5e9-45a1-b8d5-56f8a118b2e2\", \"1a062026-0144-43a6-a6ff-2c6566d04572\": \"1a062026-0144-43a6-a6ff-2c6566d04572\", \"b986eaf4-ad2b-4e10-a62a-1b06f7b6294a\": \"b986eaf4-ad2b-4e10-a62a-1b06f7b6294a\", \"f7c96823-4cec-4a54-87ca-85c1d7825c61\": \"f7c96823-4cec-4a54-87ca-85c1d7825c61\", \"3daebd93-33a0-4b4b-98aa-764e88e86137\": \"3daebd93-33a0-4b4b-98aa-764e88e86137\", \"05008152-1437-43d6-ad14-61b67efe4965\": \"05008152-1437-43d6-ad14-61b67efe4965\", \"ef1e512a-efdc-4d5a-acc7-190087f9d4a5\": \"ef1e512a-efdc-4d5a-acc7-190087f9d4a5\", \"975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9\": \"975ebcc9-ddbd-4a55-a0ae-da14f41d4cc9\", \"2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff\": \"2a1edb2a-3fa4-46b8-9f70-a0a9184b90ff\", \"d0b51c73-8741-49c4-9c00-187b8704b13b\": \"d0b51c73-8741-49c4-9c00-187b8704b13b\", \"31db50fb-ab26-4ecd-b326-73f723bc56fa\": \"31db50fb-ab26-4ecd-b326-73f723bc56fa\", \"aaf0380a-cb76-4ef7-9ceb-f93490dd66f0\": \"aaf0380a-cb76-4ef7-9ceb-f93490dd66f0\", \"ce535f6a-4c5e-430c-bf77-4bb294978c44\": \"ce535f6a-4c5e-430c-bf77-4bb294978c44\", \"3505ea08-0b5e-4ef2-89d9-138108b29d1b\": \"3505ea08-0b5e-4ef2-89d9-138108b29d1b\", \"92da1111-5ac9-41a0-bfb7-7627e5cb94a2\": \"92da1111-5ac9-41a0-bfb7-7627e5cb94a2\", \"7671a97f-fb50-459e-8567-5de47d11d78c\": \"7671a97f-fb50-459e-8567-5de47d11d78c\", \"6bf2f883-8a7d-437f-b565-cbb99dcd4d5d\": \"6bf2f883-8a7d-437f-b565-cbb99dcd4d5d\", \"8e2e9de0-d0e1-4cbe-8680-870337ea05b2\": \"8e2e9de0-d0e1-4cbe-8680-870337ea05b2\", \"8d821dbe-8006-440f-ac1d-aed49d71b7e7\": \"8d821dbe-8006-440f-ac1d-aed49d71b7e7\", \"4d091294-9816-4cf1-88da-3ce2815a7b4f\": \"4d091294-9816-4cf1-88da-3ce2815a7b4f\", \"a7e6270b-630c-4b55-9471-2fc7f0fd33cf\": \"a7e6270b-630c-4b55-9471-2fc7f0fd33cf\", \"6b7b868b-34a3-4128-88ba-bf7a9e187833\": \"6b7b868b-34a3-4128-88ba-bf7a9e187833\", \"e608f640-d4ac-414c-ae16-0967b35ea5a0\": \"e608f640-d4ac-414c-ae16-0967b35ea5a0\", \"4098601f-59b5-4f31-875f-801568e1f85c\": \"4098601f-59b5-4f31-875f-801568e1f85c\", \"f03b7316-c491-417d-9947-c56b8079ce52\": \"f03b7316-c491-417d-9947-c56b8079ce52\", \"8d615f3f-9349-4d04-a976-9355201c9a87\": \"8d615f3f-9349-4d04-a976-9355201c9a87\", \"e17559ec-1519-44f9-b3a9-007a890a9075\": \"e17559ec-1519-44f9-b3a9-007a890a9075\", \"a8ad0b5d-fcc9-4718-bc88-6d82450f9a40\": \"a8ad0b5d-fcc9-4718-bc88-6d82450f9a40\", \"ea64ef47-05f0-4dbf-aa2d-0bdae5120791\": \"ea64ef47-05f0-4dbf-aa2d-0bdae5120791\", \"c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a\": \"c50b2d19-2dd9-4ceb-85c1-c09ce5872f8a\", \"fa308006-f3c6-4c00-90f0-529f79e7df06\": \"fa308006-f3c6-4c00-90f0-529f79e7df06\", \"00b29cae-c0f2-43ba-b9a4-99401d7a5ff4\": \"00b29cae-c0f2-43ba-b9a4-99401d7a5ff4\", \"b620053e-bdac-490b-a68c-ec2658cb24ac\": \"b620053e-bdac-490b-a68c-ec2658cb24ac\", \"0b7ac666-75f1-4630-ab3f-d07ed0143aec\": \"0b7ac666-75f1-4630-ab3f-d07ed0143aec\", \"6d312337-d00a-4ca4-876f-713f6b05247d\": \"6d312337-d00a-4ca4-876f-713f6b05247d\", \"a7c30c87-d70a-4ee4-9c5c-b123365bf6a3\": \"a7c30c87-d70a-4ee4-9c5c-b123365bf6a3\", \"1eb155f3-0d02-4801-8339-09ebf710968e\": \"1eb155f3-0d02-4801-8339-09ebf710968e\", \"9ce3ae74-8fe8-49d8-8e3e-a484f7079591\": \"9ce3ae74-8fe8-49d8-8e3e-a484f7079591\", \"5126b33b-3dd1-48ba-82e1-000a854537f0\": \"5126b33b-3dd1-48ba-82e1-000a854537f0\", \"b774ae07-757e-4b3f-aea2-f92c22054047\": \"b774ae07-757e-4b3f-aea2-f92c22054047\", \"1219ed6d-576f-4c37-8582-df7a7549c609\": \"1219ed6d-576f-4c37-8582-df7a7549c609\", \"093cf14f-c32c-4ace-ab51-b8ca328182ef\": \"093cf14f-c32c-4ace-ab51-b8ca328182ef\", \"c21170d5-17b7-4969-bd35-247e64d7ba80\": \"c21170d5-17b7-4969-bd35-247e64d7ba80\", \"080c671e-0d41-4cae-b1c6-86eae8b9d766\": \"080c671e-0d41-4cae-b1c6-86eae8b9d766\", \"435280bb-4f13-43a0-b85d-84b15bf5c068\": \"435280bb-4f13-43a0-b85d-84b15bf5c068\", \"27daf370-2e50-4ec5-b018-5042c377e47a\": \"27daf370-2e50-4ec5-b018-5042c377e47a\", \"b4e7f176-38ed-4745-aa11-a269276dcf01\": \"b4e7f176-38ed-4745-aa11-a269276dcf01\", \"dc57e358-f234-40b4-9349-9ea661334b0b\": \"dc57e358-f234-40b4-9349-9ea661334b0b\", \"e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f\": \"e3d14b0a-6e3e-41ad-ac3e-0401ebb4ee4f\", \"8a63ca49-7601-4028-98e0-db936c72e1d4\": \"8a63ca49-7601-4028-98e0-db936c72e1d4\", \"975b98c1-f5fb-440e-af08-f9aa08df44fa\": \"975b98c1-f5fb-440e-af08-f9aa08df44fa\", \"918a71e3-8253-46fe-890e-859452d989ad\": \"918a71e3-8253-46fe-890e-859452d989ad\", \"82e6c0d2-aa08-4278-95d4-fcb585bba247\": \"82e6c0d2-aa08-4278-95d4-fcb585bba247\", \"952a15c4-2362-45fb-bb35-a92ad0f7a0b6\": \"952a15c4-2362-45fb-bb35-a92ad0f7a0b6\", \"df0ece19-6442-41cc-b638-c84ea3ae7f54\": \"df0ece19-6442-41cc-b638-c84ea3ae7f54\", \"757f1bc0-241f-4d29-8cfd-2c7194da0198\": \"757f1bc0-241f-4d29-8cfd-2c7194da0198\", \"b932defa-5914-474b-becf-f7c8f1e03f39\": \"b932defa-5914-474b-becf-f7c8f1e03f39\", \"95624e44-97cb-4a64-b3f7-57d0000fb7cd\": \"95624e44-97cb-4a64-b3f7-57d0000fb7cd\", \"c629cd02-cef2-4db2-8a01-a56d0f817ca8\": \"c629cd02-cef2-4db2-8a01-a56d0f817ca8\", \"84590474-d93e-4d60-a8b7-ac4a3b599c36\": \"84590474-d93e-4d60-a8b7-ac4a3b599c36\", \"95f19890-4d40-49d4-9a69-3dd44b4e2bc8\": \"95f19890-4d40-49d4-9a69-3dd44b4e2bc8\", \"610edfe5-bcf5-4ac4-8905-d4b7a66cff6c\": \"610edfe5-bcf5-4ac4-8905-d4b7a66cff6c\", \"9eab74ab-c2bd-44ee-9710-44a9567a6271\": \"9eab74ab-c2bd-44ee-9710-44a9567a6271\", \"81f0a75c-c88f-44e2-95e0-d65c4848b977\": \"81f0a75c-c88f-44e2-95e0-d65c4848b977\", \"44a964ec-315d-44bb-bd42-55c5347f08d8\": \"44a964ec-315d-44bb-bd42-55c5347f08d8\", \"f101b150-eff0-493c-b846-1f1ace4069a4\": \"f101b150-eff0-493c-b846-1f1ace4069a4\", \"900f3816-8ab2-4331-b248-dc8dd5e9a630\": \"900f3816-8ab2-4331-b248-dc8dd5e9a630\", \"f0be9a22-b0f3-4848-8ddc-5bb833c94000\": \"f0be9a22-b0f3-4848-8ddc-5bb833c94000\", \"3ab118ef-4d1c-465d-bf95-e7535a93bab5\": \"3ab118ef-4d1c-465d-bf95-e7535a93bab5\", \"24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c\": \"24f7cd81-ea1d-4ec3-a19f-8eb39d70e20c\", \"491e44e0-9273-41fa-9a98-f139fae02194\": \"491e44e0-9273-41fa-9a98-f139fae02194\", \"85a4e4cc-1359-4fc2-9a57-7838562ae0ec\": \"85a4e4cc-1359-4fc2-9a57-7838562ae0ec\", \"f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08\": \"f4a9e520-6eb1-4e52-9b22-a6bca2e0cb08\", \"79356976-33a0-4b67-bf8b-112f4f5c720b\": \"79356976-33a0-4b67-bf8b-112f4f5c720b\", \"497e12bb-2b38-45cb-9144-462b90de74a2\": \"497e12bb-2b38-45cb-9144-462b90de74a2\", \"0c93c214-6572-4382-b091-b7b1362ea757\": \"0c93c214-6572-4382-b091-b7b1362ea757\", \"732b278e-96a1-48a3-8d1c-8dca151836a7\": \"732b278e-96a1-48a3-8d1c-8dca151836a7\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/local_data/private_gpt/qdrant/.lock b/local_data/private_gpt/qdrant/.lock new file mode 100644 index 0000000000000000000000000000000000000000..a4b31f42957dd1d16aff44794bcc5d782ef078af --- /dev/null +++ b/local_data/private_gpt/qdrant/.lock @@ -0,0 +1 @@ +tmp lock file \ No newline at end of file diff --git a/local_data/private_gpt/qdrant/collection/make_this_parameterizable_per_api_call/storage.sqlite b/local_data/private_gpt/qdrant/collection/make_this_parameterizable_per_api_call/storage.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..7213a36ecf8985a8f276306b9ca6dc433f89e496 --- /dev/null +++ b/local_data/private_gpt/qdrant/collection/make_this_parameterizable_per_api_call/storage.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2b404320d98a66950608d221141ed84446595ef1716df31e54850087f673cd +size 14405632 diff --git a/local_data/private_gpt/qdrant/meta.json b/local_data/private_gpt/qdrant/meta.json new file mode 100644 index 0000000000000000000000000000000000000000..baf16e28b24d6dbec86b100e1248652df821025b --- /dev/null +++ b/local_data/private_gpt/qdrant/meta.json @@ -0,0 +1 @@ +{"collections": {"make_this_parameterizable_per_api_call": {"vectors": {"size": 1536, "distance": "Cosine", "hnsw_config": null, "quantization_config": null, "on_disk": null}, "shard_number": null, "replication_factor": null, "write_consistency_factor": null, "on_disk_payload": null, "hnsw_config": null, "wal_config": null, "optimizers_config": null, "init_from": null, "quantization_config": null}}, "aliases": {}} \ No newline at end of file diff --git a/models/.gitignore b/models/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..c96a04f008ee21e260b28f7701595ed59e2839e3 --- /dev/null +++ b/models/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/private_gpt/__init__.py b/private_gpt/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..995365c8df4da8f79404cdd6f243f24ebe1a8587 --- /dev/null +++ b/private_gpt/__init__.py @@ -0,0 +1,23 @@ +"""private-gpt.""" +import logging +import os + +# Set to 'DEBUG' to have extensive logging turned on, even for libraries +ROOT_LOG_LEVEL = "INFO" + +PRETTY_LOG_FORMAT = ( + "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)+25s - %(message)s" +) +logging.basicConfig(level=ROOT_LOG_LEVEL, format=PRETTY_LOG_FORMAT, datefmt="%H:%M:%S") +logging.captureWarnings(True) + +# Disable gradio analytics +# This is done this way because gradio does not solely rely on what values are +# passed to gr.Blocks(enable_analytics=...) but also on the environment +# variable GRADIO_ANALYTICS_ENABLED. `gradio.strings` actually reads this env +# directly, so to fully disable gradio analytics we need to set this env var. +os.environ["GRADIO_ANALYTICS_ENABLED"] = "False" + +# Disable chromaDB telemetry +# It is already disabled, see PR#1144 +# os.environ["ANONYMIZED_TELEMETRY"] = "False" diff --git a/private_gpt/__main__.py b/private_gpt/__main__.py new file mode 100644 index 0000000000000000000000000000000000000000..18b42fd7b7dd950bacf7de4e91269e99621b57cb --- /dev/null +++ b/private_gpt/__main__.py @@ -0,0 +1,11 @@ +# start a fastapi server with uvicorn + +import uvicorn + +from private_gpt.main import app +from private_gpt.settings.settings import settings + +# Set log_config=None to do not use the uvicorn logging configuration, and +# use ours instead. For reference, see below: +# https://github.com/tiangolo/fastapi/discussions/7457#discussioncomment-5141108 +uvicorn.run(app, host="0.0.0.0", port=settings().server.port, log_config=None) diff --git a/private_gpt/__pycache__/__init__.cpython-311.pyc b/private_gpt/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5bf1a3c130feab35d2abe231f6a3d73f7b0814f Binary files /dev/null and b/private_gpt/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/__pycache__/constants.cpython-311.pyc b/private_gpt/__pycache__/constants.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7d32568f568d5263ed3af53d5c05040274ffe231 Binary files /dev/null and b/private_gpt/__pycache__/constants.cpython-311.pyc differ diff --git a/private_gpt/__pycache__/di.cpython-311.pyc b/private_gpt/__pycache__/di.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5eee921817236b98da3b615e7b202e5f9147f59 Binary files /dev/null and b/private_gpt/__pycache__/di.cpython-311.pyc differ diff --git a/private_gpt/__pycache__/launcher.cpython-311.pyc b/private_gpt/__pycache__/launcher.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdcdd8aefc72ae964ea69b78304e0ca65d8d7fa6 Binary files /dev/null and b/private_gpt/__pycache__/launcher.cpython-311.pyc differ diff --git a/private_gpt/__pycache__/main.cpython-311.pyc b/private_gpt/__pycache__/main.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2204dfd726154a998853eefd9fe6ce7b4a1af3a0 Binary files /dev/null and b/private_gpt/__pycache__/main.cpython-311.pyc differ diff --git a/private_gpt/__pycache__/paths.cpython-311.pyc b/private_gpt/__pycache__/paths.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1353597b6ab22c2515204cbbd6fb7e0369f44b73 Binary files /dev/null and b/private_gpt/__pycache__/paths.cpython-311.pyc differ diff --git a/private_gpt/components/__init__.py b/private_gpt/components/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/__pycache__/__init__.cpython-311.pyc b/private_gpt/components/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7bb973a1998707e87f1bcd68f04dd96d83d4a43c Binary files /dev/null and b/private_gpt/components/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/components/embedding/__init__.py b/private_gpt/components/embedding/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/embedding/__pycache__/__init__.cpython-311.pyc b/private_gpt/components/embedding/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..167d2acb643bf7a72491c213c291180296c9ab94 Binary files /dev/null and b/private_gpt/components/embedding/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/components/embedding/__pycache__/embedding_component.cpython-311.pyc b/private_gpt/components/embedding/__pycache__/embedding_component.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79e11d18d2f8a9c15ff8a725f32ece7f5a8ef40a Binary files /dev/null and b/private_gpt/components/embedding/__pycache__/embedding_component.cpython-311.pyc differ diff --git a/private_gpt/components/embedding/custom/__init__.py b/private_gpt/components/embedding/custom/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/embedding/custom/sagemaker.py b/private_gpt/components/embedding/custom/sagemaker.py new file mode 100644 index 0000000000000000000000000000000000000000..a1dddd0a40cdeeddbfb98920fe59c696932b5210 --- /dev/null +++ b/private_gpt/components/embedding/custom/sagemaker.py @@ -0,0 +1,82 @@ +# mypy: ignore-errors +import json +from typing import Any + +import boto3 +from llama_index.embeddings.base import BaseEmbedding +from pydantic import Field, PrivateAttr + + +class SagemakerEmbedding(BaseEmbedding): + """Sagemaker Embedding Endpoint. + + To use, you must supply the endpoint name from your deployed + Sagemaker embedding model & the region where it is deployed. + + To authenticate, the AWS client uses the following methods to + automatically load credentials: + https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html + + If a specific credential profile should be used, you must pass + the name of the profile from the ~/.aws/credentials file that is to be used. + + Make sure the credentials / roles used have the required policies to + access the Sagemaker endpoint. + See: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html + """ + + endpoint_name: str = Field(description="") + + _boto_client: Any = boto3.client( + "sagemaker-runtime", + ) # TODO make it an optional field + + _async_not_implemented_warned: bool = PrivateAttr(default=False) + + @classmethod + def class_name(cls) -> str: + return "SagemakerEmbedding" + + def _async_not_implemented_warn_once(self) -> None: + if not self._async_not_implemented_warned: + print("Async embedding not available, falling back to sync method.") + self._async_not_implemented_warned = True + + def _embed(self, sentences: list[str]) -> list[list[float]]: + request_params = { + "inputs": sentences, + } + + resp = self._boto_client.invoke_endpoint( + EndpointName=self.endpoint_name, + Body=json.dumps(request_params), + ContentType="application/json", + ) + + response_body = resp["Body"] + response_str = response_body.read().decode("utf-8") + response_json = json.loads(response_str) + + return response_json["vectors"] + + def _get_query_embedding(self, query: str) -> list[float]: + """Get query embedding.""" + return self._embed([query])[0] + + async def _aget_query_embedding(self, query: str) -> list[float]: + # Warn the user that sync is being used + self._async_not_implemented_warn_once() + return self._get_query_embedding(query) + + async def _aget_text_embedding(self, text: str) -> list[float]: + # Warn the user that sync is being used + self._async_not_implemented_warn_once() + return self._get_text_embedding(text) + + def _get_text_embedding(self, text: str) -> list[float]: + """Get text embedding.""" + return self._embed([text])[0] + + def _get_text_embeddings(self, texts: list[str]) -> list[list[float]]: + """Get text embeddings.""" + return self._embed(texts) diff --git a/private_gpt/components/embedding/embedding_component.py b/private_gpt/components/embedding/embedding_component.py new file mode 100644 index 0000000000000000000000000000000000000000..e60c7af63127e4d1ab33f1ed26157b7432996c8b --- /dev/null +++ b/private_gpt/components/embedding/embedding_component.py @@ -0,0 +1,46 @@ +import logging + +from injector import inject, singleton +from llama_index import MockEmbedding +from llama_index.embeddings.base import BaseEmbedding + +from private_gpt.paths import models_cache_path +from private_gpt.settings.settings import Settings + +logger = logging.getLogger(__name__) + + +@singleton +class EmbeddingComponent: + embedding_model: BaseEmbedding + + @inject + def __init__(self, settings: Settings) -> None: + embedding_mode = settings.embedding.mode + logger.info("Initializing the embedding model in mode=%s", embedding_mode) + match embedding_mode: + case "local": + from llama_index.embeddings import HuggingFaceEmbedding + + self.embedding_model = HuggingFaceEmbedding( + model_name=settings.local.embedding_hf_model_name, + cache_folder=str(models_cache_path), + ) + case "sagemaker": + + from private_gpt.components.embedding.custom.sagemaker import ( + SagemakerEmbedding, + ) + + self.embedding_model = SagemakerEmbedding( + endpoint_name=settings.sagemaker.embedding_endpoint_name, + ) + case "openai": + from llama_index import OpenAIEmbedding + + openai_settings = settings.openai.api_key + self.embedding_model = OpenAIEmbedding(api_key=openai_settings) + case "mock": + # Not a random number, is the dimensionality used by + # the default embedding model + self.embedding_model = MockEmbedding(384) diff --git a/private_gpt/components/ingest/__init__.py b/private_gpt/components/ingest/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/ingest/__pycache__/__init__.cpython-311.pyc b/private_gpt/components/ingest/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92e6543c0dd2e1e52edb83b88723536b4dd52e6d Binary files /dev/null and b/private_gpt/components/ingest/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/components/ingest/__pycache__/ingest_component.cpython-311.pyc b/private_gpt/components/ingest/__pycache__/ingest_component.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c4ff0f8255dbcaea8517e5d8830b12a9f67afe3 Binary files /dev/null and b/private_gpt/components/ingest/__pycache__/ingest_component.cpython-311.pyc differ diff --git a/private_gpt/components/ingest/__pycache__/ingest_helper.cpython-311.pyc b/private_gpt/components/ingest/__pycache__/ingest_helper.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..553c85df7d7b52d49027922b9b7787f2244d3d34 Binary files /dev/null and b/private_gpt/components/ingest/__pycache__/ingest_helper.cpython-311.pyc differ diff --git a/private_gpt/components/ingest/ingest_component.py b/private_gpt/components/ingest/ingest_component.py new file mode 100644 index 0000000000000000000000000000000000000000..e8ec1e8fb8759d123113a168a6525fda0736c0df --- /dev/null +++ b/private_gpt/components/ingest/ingest_component.py @@ -0,0 +1,328 @@ +import abc +import itertools +import logging +import multiprocessing +import multiprocessing.pool +import os +import threading +from pathlib import Path +from typing import Any + +from llama_index import ( + Document, + ServiceContext, + StorageContext, + VectorStoreIndex, + load_index_from_storage, +) +from llama_index.data_structs import IndexDict +from llama_index.indices.base import BaseIndex +from llama_index.ingestion import run_transformations + +from private_gpt.components.ingest.ingest_helper import IngestionHelper +from private_gpt.paths import local_data_path +from private_gpt.settings.settings import Settings + +logger = logging.getLogger(__name__) + + +class BaseIngestComponent(abc.ABC): + def __init__( + self, + storage_context: StorageContext, + service_context: ServiceContext, + *args: Any, + **kwargs: Any, + ) -> None: + logger.debug("Initializing base ingest component type=%s", type(self).__name__) + self.storage_context = storage_context + self.service_context = service_context + + @abc.abstractmethod + def ingest(self, file_name: str, file_data: Path) -> list[Document]: + pass + + @abc.abstractmethod + def bulk_ingest(self, files: list[tuple[str, Path]]) -> list[Document]: + pass + + @abc.abstractmethod + def delete(self, doc_id: str) -> None: + pass + + +class BaseIngestComponentWithIndex(BaseIngestComponent, abc.ABC): + def __init__( + self, + storage_context: StorageContext, + service_context: ServiceContext, + *args: Any, + **kwargs: Any, + ) -> None: + super().__init__(storage_context, service_context, *args, **kwargs) + + self.show_progress = True + self._index_thread_lock = ( + threading.Lock() + ) # Thread lock! Not Multiprocessing lock + self._index = self._initialize_index() + + def _initialize_index(self) -> BaseIndex[IndexDict]: + """Initialize the index from the storage context.""" + try: + # Load the index with store_nodes_override=True to be able to delete them + index = load_index_from_storage( + storage_context=self.storage_context, + service_context=self.service_context, + store_nodes_override=True, # Force store nodes in index and document stores + show_progress=self.show_progress, + ) + except ValueError: + # There are no index in the storage context, creating a new one + logger.info("Creating a new vector store index") + index = VectorStoreIndex.from_documents( + [], + storage_context=self.storage_context, + service_context=self.service_context, + store_nodes_override=True, # Force store nodes in index and document stores + show_progress=self.show_progress, + ) + index.storage_context.persist(persist_dir=local_data_path) + return index + + def _save_index(self) -> None: + self._index.storage_context.persist(persist_dir=local_data_path) + + def delete(self, doc_id: str) -> None: + with self._index_thread_lock: + # Delete the document from the index + self._index.delete_ref_doc(doc_id, delete_from_docstore=True) + + # Save the index + self._save_index() + + +class SimpleIngestComponent(BaseIngestComponentWithIndex): + def __init__( + self, + storage_context: StorageContext, + service_context: ServiceContext, + *args: Any, + **kwargs: Any, + ) -> None: + super().__init__(storage_context, service_context, *args, **kwargs) + + def ingest(self, file_name: str, file_data: Path) -> list[Document]: + logger.info("Ingesting file_name=%s", file_name) + documents = IngestionHelper.transform_file_into_documents(file_name, file_data) + logger.info( + "Transformed file=%s into count=%s documents", file_name, len(documents) + ) + logger.debug("Saving the documents in the index and doc store") + return self._save_docs(documents) + + def bulk_ingest(self, files: list[tuple[str, Path]]) -> list[Document]: + saved_documents = [] + for file_name, file_data in files: + documents = IngestionHelper.transform_file_into_documents( + file_name, file_data + ) + saved_documents.extend(self._save_docs(documents)) + return saved_documents + + def _save_docs(self, documents: list[Document]) -> list[Document]: + logger.debug("Transforming count=%s documents into nodes", len(documents)) + with self._index_thread_lock: + for document in documents: + self._index.insert(document, show_progress=True) + logger.debug("Persisting the index and nodes") + # persist the index and nodes + self._save_index() + logger.debug("Persisted the index and nodes") + return documents + + +class BatchIngestComponent(BaseIngestComponentWithIndex): + """Parallelize the file reading and parsing on multiple CPU core. + + This also makes the embeddings to be computed in batches (on GPU or CPU). + """ + + def __init__( + self, + storage_context: StorageContext, + service_context: ServiceContext, + count_workers: int, + *args: Any, + **kwargs: Any, + ) -> None: + super().__init__(storage_context, service_context, *args, **kwargs) + # Make an efficient use of the CPU and GPU, the embedding + # must be in the transformations + assert ( + len(self.service_context.transformations) >= 2 + ), "Embeddings must be in the transformations" + assert count_workers > 0, "count_workers must be > 0" + self.count_workers = count_workers + + self._file_to_documents_work_pool = multiprocessing.Pool( + processes=self.count_workers + ) + + def ingest(self, file_name: str, file_data: Path) -> list[Document]: + logger.info("Ingesting file_name=%s", file_name) + documents = IngestionHelper.transform_file_into_documents(file_name, file_data) + logger.info( + "Transformed file=%s into count=%s documents", file_name, len(documents) + ) + logger.debug("Saving the documents in the index and doc store") + return self._save_docs(documents) + + def bulk_ingest(self, files: list[tuple[str, Path]]) -> list[Document]: + documents = list( + itertools.chain.from_iterable( + self._file_to_documents_work_pool.starmap( + IngestionHelper.transform_file_into_documents, files + ) + ) + ) + logger.info( + "Transformed count=%s files into count=%s documents", + len(files), + len(documents), + ) + return self._save_docs(documents) + + def _save_docs(self, documents: list[Document]) -> list[Document]: + logger.debug("Transforming count=%s documents into nodes", len(documents)) + nodes = run_transformations( + documents, # type: ignore[arg-type] + self.service_context.transformations, + show_progress=self.show_progress, + ) + # Locking the index to avoid concurrent writes + with self._index_thread_lock: + logger.info("Inserting count=%s nodes in the index", len(nodes)) + self._index.insert_nodes(nodes, show_progress=True) + for document in documents: + self._index.docstore.set_document_hash( + document.get_doc_id(), document.hash + ) + logger.debug("Persisting the index and nodes") + # persist the index and nodes + self._save_index() + logger.debug("Persisted the index and nodes") + return documents + + +class ParallelizedIngestComponent(BaseIngestComponentWithIndex): + """Parallelize the file ingestion (file reading, embeddings, and index insertion). + + This use the CPU and GPU in parallel (both running at the same time), and + reduce the memory pressure by not loading all the files in memory at the same time. + """ + + def __init__( + self, + storage_context: StorageContext, + service_context: ServiceContext, + count_workers: int, + *args: Any, + **kwargs: Any, + ) -> None: + super().__init__(storage_context, service_context, *args, **kwargs) + # To make an efficient use of the CPU and GPU, the embeddings + # must be in the transformations (to be computed in batches) + assert ( + len(self.service_context.transformations) >= 2 + ), "Embeddings must be in the transformations" + assert count_workers > 0, "count_workers must be > 0" + self.count_workers = count_workers + # We are doing our own multiprocessing + # To do not collide with the multiprocessing of huggingface, we disable it + os.environ["TOKENIZERS_PARALLELISM"] = "false" + + self._ingest_work_pool = multiprocessing.pool.ThreadPool( + processes=self.count_workers + ) + + self._file_to_documents_work_pool = multiprocessing.Pool( + processes=self.count_workers + ) + + def ingest(self, file_name: str, file_data: Path) -> list[Document]: + logger.info("Ingesting file_name=%s", file_name) + # Running in a single (1) process to release the current + # thread, and take a dedicated CPU core for computation + documents = self._file_to_documents_work_pool.apply( + IngestionHelper.transform_file_into_documents, (file_name, file_data) + ) + logger.info( + "Transformed file=%s into count=%s documents", file_name, len(documents) + ) + logger.debug("Saving the documents in the index and doc store") + return self._save_docs(documents) + + def bulk_ingest(self, files: list[tuple[str, Path]]) -> list[Document]: + # Lightweight threads, used for parallelize the + # underlying IO calls made in the ingestion + + documents = list( + itertools.chain.from_iterable( + self._ingest_work_pool.starmap(self.ingest, files) + ) + ) + return documents + + def _save_docs(self, documents: list[Document]) -> list[Document]: + logger.debug("Transforming count=%s documents into nodes", len(documents)) + nodes = run_transformations( + documents, # type: ignore[arg-type] + self.service_context.transformations, + show_progress=self.show_progress, + ) + # Locking the index to avoid concurrent writes + with self._index_thread_lock: + logger.info("Inserting count=%s nodes in the index", len(nodes)) + self._index.insert_nodes(nodes, show_progress=True) + for document in documents: + self._index.docstore.set_document_hash( + document.get_doc_id(), document.hash + ) + logger.debug("Persisting the index and nodes") + # persist the index and nodes + self._save_index() + logger.debug("Persisted the index and nodes") + return documents + + def __del__(self) -> None: + # We need to do the appropriate cleanup of the multiprocessing pools + # when the object is deleted. Using root logger to avoid + # the logger to be deleted before the pool + logging.debug("Closing the ingest work pool") + self._ingest_work_pool.close() + self._ingest_work_pool.join() + self._ingest_work_pool.terminate() + logging.debug("Closing the file to documents work pool") + self._file_to_documents_work_pool.close() + self._file_to_documents_work_pool.join() + self._file_to_documents_work_pool.terminate() + + +def get_ingestion_component( + storage_context: StorageContext, + service_context: ServiceContext, + settings: Settings, +) -> BaseIngestComponent: + """Get the ingestion component for the given configuration.""" + ingest_mode = settings.embedding.ingest_mode + if ingest_mode == "batch": + return BatchIngestComponent( + storage_context, service_context, settings.embedding.count_workers + ) + elif ingest_mode == "parallel": + return ParallelizedIngestComponent( + storage_context, service_context, settings.embedding.count_workers + ) + else: + return SimpleIngestComponent(storage_context, service_context) diff --git a/private_gpt/components/ingest/ingest_helper.py b/private_gpt/components/ingest/ingest_helper.py new file mode 100644 index 0000000000000000000000000000000000000000..1de2f7fa479ed4d902073d252e6726833a5ef9e3 --- /dev/null +++ b/private_gpt/components/ingest/ingest_helper.py @@ -0,0 +1,61 @@ +import logging +from pathlib import Path + +from llama_index import Document +from llama_index.readers import JSONReader, StringIterableReader +from llama_index.readers.file.base import DEFAULT_FILE_READER_CLS + +logger = logging.getLogger(__name__) + +# Patching the default file reader to support other file types +FILE_READER_CLS = DEFAULT_FILE_READER_CLS.copy() +FILE_READER_CLS.update( + { + ".json": JSONReader, + } +) + + +class IngestionHelper: + """Helper class to transform a file into a list of documents. + + This class should be used to transform a file into a list of documents. + These methods are thread-safe (and multiprocessing-safe). + """ + + @staticmethod + def transform_file_into_documents( + file_name: str, file_data: Path + ) -> list[Document]: + documents = IngestionHelper._load_file_to_documents(file_name, file_data) + for document in documents: + document.metadata["file_name"] = file_name + IngestionHelper._exclude_metadata(documents) + return documents + + @staticmethod + def _load_file_to_documents(file_name: str, file_data: Path) -> list[Document]: + logger.debug("Transforming file_name=%s into documents", file_name) + extension = Path(file_name).suffix + reader_cls = FILE_READER_CLS.get(extension) + if reader_cls is None: + logger.debug( + "No reader found for extension=%s, using default string reader", + extension, + ) + # Read as a plain text + string_reader = StringIterableReader() + return string_reader.load_data([file_data.read_text()]) + + logger.debug("Specific reader found for extension=%s", extension) + return reader_cls().load_data(file_data) + + @staticmethod + def _exclude_metadata(documents: list[Document]) -> None: + logger.debug("Excluding metadata from count=%s documents", len(documents)) + for document in documents: + document.metadata["doc_id"] = document.doc_id + # We don't want the Embeddings search to receive this metadata + document.excluded_embed_metadata_keys = ["doc_id"] + # We don't want the LLM to receive these metadata in the context + document.excluded_llm_metadata_keys = ["file_name", "doc_id", "page_label"] diff --git a/private_gpt/components/llm/__init__.py b/private_gpt/components/llm/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ffdd59b95075f0b5660fce2fe19a5d5463c3b02a --- /dev/null +++ b/private_gpt/components/llm/__init__.py @@ -0,0 +1 @@ +"""LLM implementations.""" diff --git a/private_gpt/components/llm/__pycache__/__init__.cpython-311.pyc b/private_gpt/components/llm/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6c8a19a58b4c7511c6c64407bcbe0e839f1c9c2 Binary files /dev/null and b/private_gpt/components/llm/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/components/llm/__pycache__/llm_component.cpython-311.pyc b/private_gpt/components/llm/__pycache__/llm_component.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0b3f04f841f77a80a4ea05dc1681dbdf7dd3c43 Binary files /dev/null and b/private_gpt/components/llm/__pycache__/llm_component.cpython-311.pyc differ diff --git a/private_gpt/components/llm/__pycache__/prompt_helper.cpython-311.pyc b/private_gpt/components/llm/__pycache__/prompt_helper.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92cb456d949e23126790460e4b95a68e349dd00c Binary files /dev/null and b/private_gpt/components/llm/__pycache__/prompt_helper.cpython-311.pyc differ diff --git a/private_gpt/components/llm/custom/__init__.py b/private_gpt/components/llm/custom/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/llm/custom/sagemaker.py b/private_gpt/components/llm/custom/sagemaker.py new file mode 100644 index 0000000000000000000000000000000000000000..2eedb1dabb04c8d2a9b981144c4b9300f0c7ce45 --- /dev/null +++ b/private_gpt/components/llm/custom/sagemaker.py @@ -0,0 +1,275 @@ +# mypy: ignore-errors +from __future__ import annotations + +import io +import json +import logging +from typing import TYPE_CHECKING, Any + +import boto3 # type: ignore +from llama_index.bridge.pydantic import Field +from llama_index.llms import ( + CompletionResponse, + CustomLLM, + LLMMetadata, +) +from llama_index.llms.base import ( + llm_chat_callback, + llm_completion_callback, +) +from llama_index.llms.generic_utils import ( + completion_response_to_chat_response, + stream_completion_response_to_chat_response, +) +from llama_index.llms.llama_utils import ( + completion_to_prompt as generic_completion_to_prompt, +) +from llama_index.llms.llama_utils import ( + messages_to_prompt as generic_messages_to_prompt, +) + +if TYPE_CHECKING: + from collections.abc import Sequence + + from llama_index.callbacks import CallbackManager + from llama_index.llms import ( + ChatMessage, + ChatResponse, + ChatResponseGen, + CompletionResponseGen, + ) + +logger = logging.getLogger(__name__) + + +class LineIterator: + r"""A helper class for parsing the byte stream input from TGI container. + + The output of the model will be in the following format: + ``` + b'data:{"token": {"text": " a"}}\n\n' + b'data:{"token": {"text": " challenging"}}\n\n' + b'data:{"token": {"text": " problem" + b'}}' + ... + ``` + + While usually each PayloadPart event from the event stream will contain a byte array + with a full json, this is not guaranteed and some of the json objects may be split + across PayloadPart events. For example: + ``` + {'PayloadPart': {'Bytes': b'{"outputs": '}} + {'PayloadPart': {'Bytes': b'[" problem"]}\n'}} + ``` + + + This class accounts for this by concatenating bytes written via the 'write' function + and then exposing a method which will return lines (ending with a '\n' character) + within the buffer via the 'scan_lines' function. It maintains the position of the + last read position to ensure that previous bytes are not exposed again. It will + also save any pending lines that doe not end with a '\n' to make sure truncations + are concatinated + """ + + def __init__(self, stream: Any) -> None: + """Line iterator initializer.""" + self.byte_iterator = iter(stream) + self.buffer = io.BytesIO() + self.read_pos = 0 + + def __iter__(self) -> Any: + """Self iterator.""" + return self + + def __next__(self) -> Any: + """Next element from iterator.""" + while True: + self.buffer.seek(self.read_pos) + line = self.buffer.readline() + if line and line[-1] == ord("\n"): + self.read_pos += len(line) + return line[:-1] + try: + chunk = next(self.byte_iterator) + except StopIteration: + if self.read_pos < self.buffer.getbuffer().nbytes: + continue + raise + if "PayloadPart" not in chunk: + logger.warning("Unknown event type=%s", chunk) + continue + self.buffer.seek(0, io.SEEK_END) + self.buffer.write(chunk["PayloadPart"]["Bytes"]) + + +class SagemakerLLM(CustomLLM): + """Sagemaker Inference Endpoint models. + + To use, you must supply the endpoint name from your deployed + Sagemaker model & the region where it is deployed. + + To authenticate, the AWS client uses the following methods to + automatically load credentials: + https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html + + If a specific credential profile should be used, you must pass + the name of the profile from the ~/.aws/credentials file that is to be used. + + Make sure the credentials / roles used have the required policies to + access the Sagemaker endpoint. + See: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html + """ + + endpoint_name: str = Field(description="") + temperature: float = Field(description="The temperature to use for sampling.") + max_new_tokens: int = Field(description="The maximum number of tokens to generate.") + context_window: int = Field( + description="The maximum number of context tokens for the model." + ) + messages_to_prompt: Any = Field( + description="The function to convert messages to a prompt.", exclude=True + ) + completion_to_prompt: Any = Field( + description="The function to convert a completion to a prompt.", exclude=True + ) + generate_kwargs: dict[str, Any] = Field( + default_factory=dict, description="Kwargs used for generation." + ) + model_kwargs: dict[str, Any] = Field( + default_factory=dict, description="Kwargs used for model initialization." + ) + verbose: bool = Field(description="Whether to print verbose output.") + + _boto_client: Any = boto3.client( + "sagemaker-runtime", + ) # TODO make it an optional field + + def __init__( + self, + endpoint_name: str | None = "", + temperature: float = 0.1, + max_new_tokens: int = 512, # to review defaults + context_window: int = 2048, # to review defaults + messages_to_prompt: Any = None, + completion_to_prompt: Any = None, + callback_manager: CallbackManager | None = None, + generate_kwargs: dict[str, Any] | None = None, + model_kwargs: dict[str, Any] | None = None, + verbose: bool = True, + ) -> None: + """SagemakerLLM initializer.""" + model_kwargs = model_kwargs or {} + model_kwargs.update({"n_ctx": context_window, "verbose": verbose}) + + messages_to_prompt = messages_to_prompt or generic_messages_to_prompt + completion_to_prompt = completion_to_prompt or generic_completion_to_prompt + + generate_kwargs = generate_kwargs or {} + generate_kwargs.update( + {"temperature": temperature, "max_tokens": max_new_tokens} + ) + + super().__init__( + endpoint_name=endpoint_name, + temperature=temperature, + context_window=context_window, + max_new_tokens=max_new_tokens, + messages_to_prompt=messages_to_prompt, + completion_to_prompt=completion_to_prompt, + callback_manager=callback_manager, + generate_kwargs=generate_kwargs, + model_kwargs=model_kwargs, + verbose=verbose, + ) + + @property + def inference_params(self): + # TODO expose the rest of params + return { + "do_sample": True, + "top_p": 0.7, + "temperature": self.temperature, + "top_k": 50, + "max_new_tokens": self.max_new_tokens, + } + + @property + def metadata(self) -> LLMMetadata: + """Get LLM metadata.""" + return LLMMetadata( + context_window=self.context_window, + num_output=self.max_new_tokens, + model_name="Sagemaker LLama 2", + ) + + @llm_completion_callback() + def complete(self, prompt: str, **kwargs: Any) -> CompletionResponse: + self.generate_kwargs.update({"stream": False}) + + is_formatted = kwargs.pop("formatted", False) + if not is_formatted: + prompt = self.completion_to_prompt(prompt) + + request_params = { + "inputs": prompt, + "stream": False, + "parameters": self.inference_params, + } + + resp = self._boto_client.invoke_endpoint( + EndpointName=self.endpoint_name, + Body=json.dumps(request_params), + ContentType="application/json", + ) + + response_body = resp["Body"] + response_str = response_body.read().decode("utf-8") + response_dict = eval(response_str) + + return CompletionResponse( + text=response_dict[0]["generated_text"][len(prompt) :], raw=resp + ) + + @llm_completion_callback() + def stream_complete(self, prompt: str, **kwargs: Any) -> CompletionResponseGen: + def get_stream(): + text = "" + + request_params = { + "inputs": prompt, + "stream": True, + "parameters": self.inference_params, + } + resp = self._boto_client.invoke_endpoint_with_response_stream( + EndpointName=self.endpoint_name, + Body=json.dumps(request_params), + ContentType="application/json", + ) + + event_stream = resp["Body"] + start_json = b"{" + stop_token = "<|endoftext|>" + + for line in LineIterator(event_stream): + if line != b"" and start_json in line: + data = json.loads(line[line.find(start_json) :].decode("utf-8")) + if data["token"]["text"] != stop_token: + delta = data["token"]["text"] + text += delta + yield CompletionResponse(delta=delta, text=text, raw=data) + + return get_stream() + + @llm_chat_callback() + def chat(self, messages: Sequence[ChatMessage], **kwargs: Any) -> ChatResponse: + prompt = self.messages_to_prompt(messages) + completion_response = self.complete(prompt, formatted=True, **kwargs) + return completion_response_to_chat_response(completion_response) + + @llm_chat_callback() + def stream_chat( + self, messages: Sequence[ChatMessage], **kwargs: Any + ) -> ChatResponseGen: + prompt = self.messages_to_prompt(messages) + completion_response = self.stream_complete(prompt, formatted=True, **kwargs) + return stream_completion_response_to_chat_response(completion_response) diff --git a/private_gpt/components/llm/llm_component.py b/private_gpt/components/llm/llm_component.py new file mode 100644 index 0000000000000000000000000000000000000000..4bf14d7240c6e408843bc03de275733e86a5104e --- /dev/null +++ b/private_gpt/components/llm/llm_component.py @@ -0,0 +1,59 @@ +import logging + +from injector import inject, singleton +from llama_index.llms import MockLLM +from llama_index.llms.base import LLM + +from private_gpt.components.llm.prompt_helper import get_prompt_style +from private_gpt.paths import models_path +from private_gpt.settings.settings import Settings + +logger = logging.getLogger(__name__) + + +@singleton +class LLMComponent: + llm: LLM + + @inject + def __init__(self, settings: Settings) -> None: + llm_mode = settings.llm.mode + logger.info("Initializing the LLM in mode=%s", llm_mode) + match settings.llm.mode: + case "local": + from llama_index.llms import LlamaCPP + + prompt_style_cls = get_prompt_style(settings.local.prompt_style) + prompt_style = prompt_style_cls( + default_system_prompt=settings.local.default_system_prompt + ) + + self.llm = LlamaCPP( + model_path=str(models_path / settings.local.llm_hf_model_file), + temperature=0.1, + max_new_tokens=settings.llm.max_new_tokens, + # llama2 has a context window of 4096 tokens, + # but we set it lower to allow for some wiggle room + context_window=3900, + generate_kwargs={}, + # All to GPU + model_kwargs={"n_gpu_layers": -1}, + # transform inputs into Llama2 format + messages_to_prompt=prompt_style.messages_to_prompt, + completion_to_prompt=prompt_style.completion_to_prompt, + verbose=True, + ) + + case "sagemaker": + from private_gpt.components.llm.custom.sagemaker import SagemakerLLM + + self.llm = SagemakerLLM( + endpoint_name=settings.sagemaker.llm_endpoint_name, + ) + case "openai": + from llama_index.llms import OpenAI + + openai_settings = settings.openai.api_key + self.llm = OpenAI(model="gpt-4",api_key=openai_settings) + case "mock": + self.llm = MockLLM() diff --git a/private_gpt/components/llm/prompt_helper.py b/private_gpt/components/llm/prompt_helper.py new file mode 100644 index 0000000000000000000000000000000000000000..e47b3fb9c1d3bfddd45227f7893fb7c9bbc6b656 --- /dev/null +++ b/private_gpt/components/llm/prompt_helper.py @@ -0,0 +1,179 @@ +import abc +import logging +from collections.abc import Sequence +from typing import Any, Literal + +from llama_index.llms import ChatMessage, MessageRole +from llama_index.llms.llama_utils import ( + DEFAULT_SYSTEM_PROMPT, + completion_to_prompt, + messages_to_prompt, +) + +logger = logging.getLogger(__name__) + + +class AbstractPromptStyle(abc.ABC): + """Abstract class for prompt styles. + + This class is used to format a series of messages into a prompt that can be + understood by the models. A series of messages represents the interaction(s) + between a user and an assistant. This series of messages can be considered as a + session between a user X and an assistant Y.This session holds, through the + messages, the state of the conversation. This session, to be understood by the + model, needs to be formatted into a prompt (i.e. a string that the models + can understand). Prompts can be formatted in different ways, + depending on the model. + + The implementations of this class represent the different ways to format a + series of messages into a prompt. + """ + + @abc.abstractmethod + def __init__(self, *args: Any, **kwargs: Any) -> None: + logger.debug("Initializing prompt_style=%s", self.__class__.__name__) + + @abc.abstractmethod + def _messages_to_prompt(self, messages: Sequence[ChatMessage]) -> str: + pass + + @abc.abstractmethod + def _completion_to_prompt(self, completion: str) -> str: + pass + + def messages_to_prompt(self, messages: Sequence[ChatMessage]) -> str: + prompt = self._messages_to_prompt(messages) + logger.debug("Got for messages='%s' the prompt='%s'", messages, prompt) + return prompt + + def completion_to_prompt(self, completion: str) -> str: + prompt = self._completion_to_prompt(completion) + logger.debug("Got for completion='%s' the prompt='%s'", completion, prompt) + return prompt + + +class AbstractPromptStyleWithSystemPrompt(AbstractPromptStyle, abc.ABC): + _DEFAULT_SYSTEM_PROMPT = DEFAULT_SYSTEM_PROMPT + + def __init__(self, default_system_prompt: str | None) -> None: + super().__init__() + logger.debug("Got default_system_prompt='%s'", default_system_prompt) + self.default_system_prompt = default_system_prompt + + +class DefaultPromptStyle(AbstractPromptStyle): + """Default prompt style that uses the defaults from llama_utils. + + It basically passes None to the LLM, indicating it should use + the default functions. + """ + + def __init__(self, *args: Any, **kwargs: Any) -> None: + super().__init__(*args, **kwargs) + + # Hacky way to override the functions + # Override the functions to be None, and pass None to the LLM. + self.messages_to_prompt = None # type: ignore[method-assign, assignment] + self.completion_to_prompt = None # type: ignore[method-assign, assignment] + + def _messages_to_prompt(self, messages: Sequence[ChatMessage]) -> str: + return "" + + def _completion_to_prompt(self, completion: str) -> str: + return "" + + +class Llama2PromptStyle(AbstractPromptStyleWithSystemPrompt): + """Simple prompt style that just uses the default llama_utils functions. + + It transforms the sequence of messages into a prompt that should look like: + ```text + [INST] <> your system prompt here. <> + + user message here [/INST] assistant (model) response here + ``` + """ + + def __init__(self, default_system_prompt: str | None = None) -> None: + # If no system prompt is given, the default one of the implementation is used. + super().__init__(default_system_prompt=default_system_prompt) + + def _messages_to_prompt(self, messages: Sequence[ChatMessage]) -> str: + return messages_to_prompt(messages, self.default_system_prompt) + + def _completion_to_prompt(self, completion: str) -> str: + return completion_to_prompt(completion, self.default_system_prompt) + + +class TagPromptStyle(AbstractPromptStyleWithSystemPrompt): + """Tag prompt style (used by Vigogne) that uses the prompt style `<|ROLE|>`. + + It transforms the sequence of messages into a prompt that should look like: + ```text + <|system|>: your system prompt here. + <|user|>: user message here + (possibly with context and question) + <|assistant|>: assistant (model) response here. + ``` + + FIXME: should we add surrounding `` and `` tags, like in llama2? + """ + + def __init__(self, default_system_prompt: str | None = None) -> None: + # We have to define a default system prompt here as the LLM will not + # use the default llama_utils functions. + default_system_prompt = default_system_prompt or self._DEFAULT_SYSTEM_PROMPT + super().__init__(default_system_prompt) + self.system_prompt: str = default_system_prompt + + def _messages_to_prompt(self, messages: Sequence[ChatMessage]) -> str: + messages = list(messages) + if messages[0].role != MessageRole.SYSTEM: + logger.info( + "Adding system_promt='%s' to the given messages as there are none given in the session", + self.system_prompt, + ) + messages = [ + ChatMessage(content=self.system_prompt, role=MessageRole.SYSTEM), + *messages, + ] + return self._format_messages_to_prompt(messages) + + def _completion_to_prompt(self, completion: str) -> str: + return ( + f"<|system|>: {self.system_prompt.strip()}\n" + f"<|user|>: {completion.strip()}\n" + "<|assistant|>: " + ) + + @staticmethod + def _format_messages_to_prompt(messages: list[ChatMessage]) -> str: + """Format message to prompt with `<|ROLE|>: MSG` style.""" + assert messages[0].role == MessageRole.SYSTEM + prompt = "" + for message in messages: + role = message.role + content = message.content or "" + message_from_user = f"<|{role.lower()}|>: {content.strip()}" + message_from_user += "\n" + prompt += message_from_user + # we are missing the last <|assistant|> tag that will trigger a completion + prompt += "<|assistant|>: " + return prompt + + +def get_prompt_style( + prompt_style: Literal["default", "llama2", "tag"] | None +) -> type[AbstractPromptStyle]: + """Get the prompt style to use from the given string. + + :param prompt_style: The prompt style to use. + :return: The prompt style to use. + """ + if prompt_style is None or prompt_style == "default": + return DefaultPromptStyle + elif prompt_style == "llama2": + return Llama2PromptStyle + elif prompt_style == "tag": + return TagPromptStyle + raise ValueError(f"Unknown prompt_style='{prompt_style}'") diff --git a/private_gpt/components/node_store/__init__.py b/private_gpt/components/node_store/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/node_store/__pycache__/__init__.cpython-311.pyc b/private_gpt/components/node_store/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..351bc54cf5ff8ec22708d8423f53140e1194770b Binary files /dev/null and b/private_gpt/components/node_store/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/components/node_store/__pycache__/node_store_component.cpython-311.pyc b/private_gpt/components/node_store/__pycache__/node_store_component.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0be9f587824bdb09ce000ea26dd629b6e73f2a0f Binary files /dev/null and b/private_gpt/components/node_store/__pycache__/node_store_component.cpython-311.pyc differ diff --git a/private_gpt/components/node_store/node_store_component.py b/private_gpt/components/node_store/node_store_component.py new file mode 100644 index 0000000000000000000000000000000000000000..c039bf5020e200ea3f78159a16730efb4d0afaed --- /dev/null +++ b/private_gpt/components/node_store/node_store_component.py @@ -0,0 +1,34 @@ +import logging + +from injector import inject, singleton +from llama_index.storage.docstore import BaseDocumentStore, SimpleDocumentStore +from llama_index.storage.index_store import SimpleIndexStore +from llama_index.storage.index_store.types import BaseIndexStore + +from private_gpt.paths import local_data_path + +logger = logging.getLogger(__name__) + + +@singleton +class NodeStoreComponent: + index_store: BaseIndexStore + doc_store: BaseDocumentStore + + @inject + def __init__(self) -> None: + try: + self.index_store = SimpleIndexStore.from_persist_dir( + persist_dir=str(local_data_path) + ) + except FileNotFoundError: + logger.debug("Local index store not found, creating a new one") + self.index_store = SimpleIndexStore() + + try: + self.doc_store = SimpleDocumentStore.from_persist_dir( + persist_dir=str(local_data_path) + ) + except FileNotFoundError: + logger.debug("Local document store not found, creating a new one") + self.doc_store = SimpleDocumentStore() diff --git a/private_gpt/components/vector_store/__init__.py b/private_gpt/components/vector_store/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/components/vector_store/__pycache__/__init__.cpython-311.pyc b/private_gpt/components/vector_store/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de486abe437671e962d186b7a8ea98893a23818d Binary files /dev/null and b/private_gpt/components/vector_store/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/components/vector_store/__pycache__/batched_chroma.cpython-311.pyc b/private_gpt/components/vector_store/__pycache__/batched_chroma.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b575f67c54482bb6087e868f0f5f78dc4cdf7d5e Binary files /dev/null and b/private_gpt/components/vector_store/__pycache__/batched_chroma.cpython-311.pyc differ diff --git a/private_gpt/components/vector_store/__pycache__/vector_store_component.cpython-311.pyc b/private_gpt/components/vector_store/__pycache__/vector_store_component.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48c4a7bf8dd95eea1d0ae1c4171ff40cefaa8946 Binary files /dev/null and b/private_gpt/components/vector_store/__pycache__/vector_store_component.cpython-311.pyc differ diff --git a/private_gpt/components/vector_store/batched_chroma.py b/private_gpt/components/vector_store/batched_chroma.py new file mode 100644 index 0000000000000000000000000000000000000000..f2cd9addfacaa13cf9895777baacc4d052860a64 --- /dev/null +++ b/private_gpt/components/vector_store/batched_chroma.py @@ -0,0 +1,87 @@ +from typing import Any + +from llama_index.schema import BaseNode, MetadataMode +from llama_index.vector_stores import ChromaVectorStore +from llama_index.vector_stores.chroma import chunk_list +from llama_index.vector_stores.utils import node_to_metadata_dict + + +class BatchedChromaVectorStore(ChromaVectorStore): + """Chroma vector store, batching additions to avoid reaching the max batch limit. + + In this vector store, embeddings are stored within a ChromaDB collection. + + During query time, the index uses ChromaDB to query for the top + k most similar nodes. + + Args: + chroma_client (from chromadb.api.API): + API instance + chroma_collection (chromadb.api.models.Collection.Collection): + ChromaDB collection instance + + """ + + chroma_client: Any | None + + def __init__( + self, + chroma_client: Any, + chroma_collection: Any, + host: str | None = None, + port: str | None = None, + ssl: bool = False, + headers: dict[str, str] | None = None, + collection_kwargs: dict[Any, Any] | None = None, + ) -> None: + super().__init__( + chroma_collection=chroma_collection, + host=host, + port=port, + ssl=ssl, + headers=headers, + collection_kwargs=collection_kwargs or {}, + ) + self.chroma_client = chroma_client + + def add(self, nodes: list[BaseNode], **add_kwargs: Any) -> list[str]: + """Add nodes to index, batching the insertion to avoid issues. + + Args: + nodes: List[BaseNode]: list of nodes with embeddings + add_kwargs: _ + """ + if not self.chroma_client: + raise ValueError("Client not initialized") + + if not self._collection: + raise ValueError("Collection not initialized") + + max_chunk_size = self.chroma_client.max_batch_size + node_chunks = chunk_list(nodes, max_chunk_size) + + all_ids = [] + for node_chunk in node_chunks: + embeddings = [] + metadatas = [] + ids = [] + documents = [] + for node in node_chunk: + embeddings.append(node.get_embedding()) + metadatas.append( + node_to_metadata_dict( + node, remove_text=True, flat_metadata=self.flat_metadata + ) + ) + ids.append(node.node_id) + documents.append(node.get_content(metadata_mode=MetadataMode.NONE)) + + self._collection.add( + embeddings=embeddings, + ids=ids, + metadatas=metadatas, + documents=documents, + ) + all_ids.extend(ids) + + return all_ids diff --git a/private_gpt/components/vector_store/vector_store_component.py b/private_gpt/components/vector_store/vector_store_component.py new file mode 100644 index 0000000000000000000000000000000000000000..09af692bf93505a780f8b89559f8fd6bd461ac2e --- /dev/null +++ b/private_gpt/components/vector_store/vector_store_component.py @@ -0,0 +1,118 @@ +import logging +import typing + +from injector import inject, singleton +from llama_index import VectorStoreIndex +from llama_index.indices.vector_store import VectorIndexRetriever +from llama_index.vector_stores.types import VectorStore + +from private_gpt.components.vector_store.batched_chroma import BatchedChromaVectorStore +from private_gpt.open_ai.extensions.context_filter import ContextFilter +from private_gpt.paths import local_data_path +from private_gpt.settings.settings import Settings + +logger = logging.getLogger(__name__) + + +@typing.no_type_check +def _chromadb_doc_id_metadata_filter( + context_filter: ContextFilter | None, +) -> dict | None: + if context_filter is None or context_filter.docs_ids is None: + return {} # No filter + elif len(context_filter.docs_ids) < 1: + return {"doc_id": "-"} # Effectively filtering out all docs + else: + doc_filter_items = [] + if len(context_filter.docs_ids) > 1: + doc_filter = {"$or": doc_filter_items} + for doc_id in context_filter.docs_ids: + doc_filter_items.append({"doc_id": doc_id}) + else: + doc_filter = {"doc_id": context_filter.docs_ids[0]} + return doc_filter + + +@singleton +class VectorStoreComponent: + vector_store: VectorStore + + @inject + def __init__(self, settings: Settings) -> None: + match settings.vectorstore.database: + case "chroma": + try: + import chromadb # type: ignore + from chromadb.config import ( # type: ignore + Settings as ChromaSettings, + ) + except ImportError as e: + raise ImportError( + "'chromadb' is not installed." + "To use PrivateGPT with Chroma, install the 'chroma' extra." + "`poetry install --extras chroma`" + ) from e + + chroma_settings = ChromaSettings(anonymized_telemetry=False) + chroma_client = chromadb.PersistentClient( + path=str((local_data_path / "chroma_db").absolute()), + settings=chroma_settings, + ) + chroma_collection = chroma_client.get_or_create_collection( + "make_this_parameterizable_per_api_call" + ) # TODO + + self.vector_store = typing.cast( + VectorStore, + BatchedChromaVectorStore( + chroma_client=chroma_client, chroma_collection=chroma_collection + ), + ) + + case "qdrant": + from llama_index.vector_stores.qdrant import QdrantVectorStore + from qdrant_client import QdrantClient + + if settings.qdrant is None: + logger.info( + "Qdrant config not found. Using default settings." + "Trying to connect to Qdrant at localhost:6333." + ) + client = QdrantClient() + else: + client = QdrantClient( + **settings.qdrant.model_dump(exclude_none=True) + ) + self.vector_store = typing.cast( + VectorStore, + QdrantVectorStore( + client=client, + collection_name="make_this_parameterizable_per_api_call", + ), # TODO + ) + case _: + # Should be unreachable + # The settings validator should have caught this + raise ValueError( + f"Vectorstore database {settings.vectorstore.database} not supported" + ) + + @staticmethod + def get_retriever( + index: VectorStoreIndex, + context_filter: ContextFilter | None = None, + similarity_top_k: int = 2, + ) -> VectorIndexRetriever: + # This way we support qdrant (using doc_ids) and chroma (using where clause) + return VectorIndexRetriever( + index=index, + similarity_top_k=similarity_top_k, + doc_ids=context_filter.docs_ids if context_filter else None, + vector_store_kwargs={ + "where": _chromadb_doc_id_metadata_filter(context_filter) + }, + ) + + def close(self) -> None: + if hasattr(self.vector_store.client, "close"): + self.vector_store.client.close() diff --git a/private_gpt/constants.py b/private_gpt/constants.py new file mode 100644 index 0000000000000000000000000000000000000000..3a1d6fb1b607a53fe03cf5e3b519f9383056f759 --- /dev/null +++ b/private_gpt/constants.py @@ -0,0 +1,3 @@ +from pathlib import Path + +PROJECT_ROOT_PATH: Path = Path(__file__).parents[1] diff --git a/private_gpt/di.py b/private_gpt/di.py new file mode 100644 index 0000000000000000000000000000000000000000..05021b013431243ee261c234b65eb60e2ad42fd5 --- /dev/null +++ b/private_gpt/di.py @@ -0,0 +1,19 @@ +from injector import Injector + +from private_gpt.settings.settings import Settings, unsafe_typed_settings + + +def create_application_injector() -> Injector: + _injector = Injector(auto_bind=True) + _injector.binder.bind(Settings, to=unsafe_typed_settings) + return _injector + + +""" +Global injector for the application. + +Avoid using this reference, it will make your code harder to test. + +Instead, use the `request.state.injector` reference, which is bound to every request +""" +global_injector: Injector = create_application_injector() diff --git a/private_gpt/launcher.py b/private_gpt/launcher.py new file mode 100644 index 0000000000000000000000000000000000000000..e65f0edc2220e760552d75ca3867bb6ba0cad2d9 --- /dev/null +++ b/private_gpt/launcher.py @@ -0,0 +1,128 @@ +"""FastAPI app creation, logger configuration and main API routes.""" +import logging +from typing import Any + +from fastapi import Depends, FastAPI, Request +from fastapi.middleware.cors import CORSMiddleware +from fastapi.openapi.utils import get_openapi +from injector import Injector + +from private_gpt.paths import docs_path +from private_gpt.server.chat.chat_router import chat_router +from private_gpt.server.chunks.chunks_router import chunks_router +from private_gpt.server.completions.completions_router import completions_router +from private_gpt.server.embeddings.embeddings_router import embeddings_router +from private_gpt.server.health.health_router import health_router +from private_gpt.server.ingest.ingest_router import ingest_router +from private_gpt.settings.settings import Settings + +logger = logging.getLogger(__name__) + + +def create_app(root_injector: Injector) -> FastAPI: + + # Start the API + with open(docs_path / "description.md") as description_file: + description = description_file.read() + + tags_metadata = [ + { + "name": "Ingestion", + "description": "High-level APIs covering document ingestion -internally " + "managing document parsing, splitting," + "metadata extraction, embedding generation and storage- and ingested " + "documents CRUD." + "Each ingested document is identified by an ID that can be used to filter the " + "context" + "used in *Contextual Completions* and *Context Chunks* APIs.", + }, + { + "name": "Contextual Completions", + "description": "High-level APIs covering contextual Chat and Completions. They " + "follow OpenAI's format, extending it to " + "allow using the context coming from ingested documents to create the " + "response. Internally" + "manage context retrieval, prompt engineering and the response generation.", + }, + { + "name": "Context Chunks", + "description": "Low-level API that given a query return relevant chunks of " + "text coming from the ingested" + "documents.", + }, + { + "name": "Embeddings", + "description": "Low-level API to obtain the vector representation of a given " + "text, using an Embeddings model." + "Follows OpenAI's embeddings API format.", + }, + { + "name": "Health", + "description": "Simple health API to make sure the server is up and running.", + }, + ] + + async def bind_injector_to_request(request: Request) -> None: + request.state.injector = root_injector + + app = FastAPI(dependencies=[Depends(bind_injector_to_request)]) + + def custom_openapi() -> dict[str, Any]: + if app.openapi_schema: + return app.openapi_schema + openapi_schema = get_openapi( + title="PrivateGPT", + description=description, + version="0.1.0", + summary="PrivateGPT is a production-ready AI project that allows you to " + "ask questions to your documents using the power of Large Language " + "Models (LLMs), even in scenarios without Internet connection. " + "100% private, no data leaves your execution environment at any point.", + contact={ + "url": "https://github.com/imartinez/privateGPT", + }, + license_info={ + "name": "Apache 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.html", + }, + routes=app.routes, + tags=tags_metadata, + ) + openapi_schema["info"]["x-logo"] = { + "url": "https://lh3.googleusercontent.com/drive-viewer" + "/AK7aPaD_iNlMoTquOBsw4boh4tIYxyEuhz6EtEs8nzq3yNkNAK00xGj" + "E1KUCmPJSk3TYOjcs6tReG6w_cLu1S7L_gPgT9z52iw=s2560" + } + + app.openapi_schema = openapi_schema + return app.openapi_schema + + app.openapi = custom_openapi # type: ignore[method-assign] + + app.include_router(completions_router) + app.include_router(chat_router) + app.include_router(chunks_router) + app.include_router(ingest_router) + app.include_router(embeddings_router) + app.include_router(health_router) + + settings = root_injector.get(Settings) + if settings.server.cors.enabled: + logger.debug("Setting up CORS middleware") + app.add_middleware( + CORSMiddleware, + allow_credentials=settings.server.cors.allow_credentials, + allow_origins=settings.server.cors.allow_origins, + allow_origin_regex=settings.server.cors.allow_origin_regex, + allow_methods=settings.server.cors.allow_methods, + allow_headers=settings.server.cors.allow_headers, + ) + + if settings.ui.enabled: + logger.debug("Importing the UI module") + from private_gpt.ui.ui import PrivateGptUi + + ui = root_injector.get(PrivateGptUi) + ui.mount_in_app(app, settings.ui.path) + + return app diff --git a/private_gpt/main.py b/private_gpt/main.py new file mode 100644 index 0000000000000000000000000000000000000000..d249fa6cb3d2b4f10733df23e9b6ded6b0786a8b --- /dev/null +++ b/private_gpt/main.py @@ -0,0 +1,11 @@ +"""FastAPI app creation, logger configuration and main API routes.""" + +import llama_index + +from private_gpt.di import global_injector +from private_gpt.launcher import create_app + +# Add LlamaIndex simple observability +llama_index.set_global_handler("simple") + +app = create_app(global_injector) diff --git a/private_gpt/open_ai/__init__.py b/private_gpt/open_ai/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..25a0df47f11b2fa8452d830d3494ceb5f3aeaf29 --- /dev/null +++ b/private_gpt/open_ai/__init__.py @@ -0,0 +1 @@ +"""OpenAI compatibility utilities.""" diff --git a/private_gpt/open_ai/__pycache__/__init__.cpython-311.pyc b/private_gpt/open_ai/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcdacf70ab31bfef6faa4249a59fa84ec5669d14 Binary files /dev/null and b/private_gpt/open_ai/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/open_ai/__pycache__/openai_models.cpython-311.pyc b/private_gpt/open_ai/__pycache__/openai_models.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c0cc838bd90da0c6a42ed89d9fc15810432ec85 Binary files /dev/null and b/private_gpt/open_ai/__pycache__/openai_models.cpython-311.pyc differ diff --git a/private_gpt/open_ai/extensions/__init__.py b/private_gpt/open_ai/extensions/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f893034b32d9505789732417f90610d54935fca2 --- /dev/null +++ b/private_gpt/open_ai/extensions/__init__.py @@ -0,0 +1 @@ +"""OpenAI API extensions.""" diff --git a/private_gpt/open_ai/extensions/__pycache__/__init__.cpython-311.pyc b/private_gpt/open_ai/extensions/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8e15e36ae2f60c2c6e0308f06ac74ba4d7b3f198 Binary files /dev/null and b/private_gpt/open_ai/extensions/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/open_ai/extensions/__pycache__/context_filter.cpython-311.pyc b/private_gpt/open_ai/extensions/__pycache__/context_filter.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..65413d6cfa31d1cbac51d792f84e344f12b54a55 Binary files /dev/null and b/private_gpt/open_ai/extensions/__pycache__/context_filter.cpython-311.pyc differ diff --git a/private_gpt/open_ai/extensions/context_filter.py b/private_gpt/open_ai/extensions/context_filter.py new file mode 100644 index 0000000000000000000000000000000000000000..c1a09c9884b72553add91580b82b6d29cafd6fa1 --- /dev/null +++ b/private_gpt/open_ai/extensions/context_filter.py @@ -0,0 +1,7 @@ +from pydantic import BaseModel, Field + + +class ContextFilter(BaseModel): + docs_ids: list[str] | None = Field( + examples=[["c202d5e6-7b69-4869-81cc-dd574ee8ee11"]] + ) diff --git a/private_gpt/open_ai/openai_models.py b/private_gpt/open_ai/openai_models.py new file mode 100644 index 0000000000000000000000000000000000000000..d9171890b32d4366856d6076643ddee59d54f7c3 --- /dev/null +++ b/private_gpt/open_ai/openai_models.py @@ -0,0 +1,122 @@ +import time +import uuid +from collections.abc import Iterator +from typing import Literal + +from llama_index.llms import ChatResponse, CompletionResponse +from pydantic import BaseModel, Field + +from private_gpt.server.chunks.chunks_service import Chunk + + +class OpenAIDelta(BaseModel): + """A piece of completion that needs to be concatenated to get the full message.""" + + content: str | None + + +class OpenAIMessage(BaseModel): + """Inference result, with the source of the message. + + Role could be the assistant or system + (providing a default response, not AI generated). + """ + + role: Literal["assistant", "system", "user"] = Field(default="user") + content: str | None + + +class OpenAIChoice(BaseModel): + """Response from AI. + + Either the delta or the message will be present, but never both. + Sources used will be returned in case context retrieval was enabled. + """ + + finish_reason: str | None = Field(examples=["stop"]) + delta: OpenAIDelta | None = None + message: OpenAIMessage | None = None + sources: list[Chunk] | None = None + index: int = 0 + + +class OpenAICompletion(BaseModel): + """Clone of OpenAI Completion model. + + For more information see: https://platform.openai.com/docs/api-reference/chat/object + """ + + id: str + object: Literal["completion", "completion.chunk"] = Field(default="completion") + created: int = Field(..., examples=[1623340000]) + model: Literal["private-gpt"] + choices: list[OpenAIChoice] + + @classmethod + def from_text( + cls, + text: str | None, + finish_reason: str | None = None, + sources: list[Chunk] | None = None, + ) -> "OpenAICompletion": + return OpenAICompletion( + id=str(uuid.uuid4()), + object="completion", + created=int(time.time()), + model="private-gpt", + choices=[ + OpenAIChoice( + message=OpenAIMessage(role="assistant", content=text), + finish_reason=finish_reason, + sources=sources, + ) + ], + ) + + @classmethod + def json_from_delta( + cls, + *, + text: str | None, + finish_reason: str | None = None, + sources: list[Chunk] | None = None, + ) -> str: + chunk = OpenAICompletion( + id=str(uuid.uuid4()), + object="completion.chunk", + created=int(time.time()), + model="private-gpt", + choices=[ + OpenAIChoice( + delta=OpenAIDelta(content=text), + finish_reason=finish_reason, + sources=sources, + ) + ], + ) + + return chunk.model_dump_json() + + +def to_openai_response( + response: str | ChatResponse, sources: list[Chunk] | None = None +) -> OpenAICompletion: + if isinstance(response, ChatResponse): + return OpenAICompletion.from_text(response.delta, finish_reason="stop") + else: + return OpenAICompletion.from_text( + response, finish_reason="stop", sources=sources + ) + + +def to_openai_sse_stream( + response_generator: Iterator[str | CompletionResponse | ChatResponse], + sources: list[Chunk] | None = None, +) -> Iterator[str]: + for response in response_generator: + if isinstance(response, CompletionResponse | ChatResponse): + yield f"data: {OpenAICompletion.json_from_delta(text=response.delta)}\n\n" + else: + yield f"data: {OpenAICompletion.json_from_delta(text=response, sources=sources)}\n\n" + yield f"data: {OpenAICompletion.json_from_delta(text=None, finish_reason='stop')}\n\n" + yield "data: [DONE]\n\n" diff --git a/private_gpt/paths.py b/private_gpt/paths.py new file mode 100644 index 0000000000000000000000000000000000000000..59db3a491499fee767dc16de4468ec30ba5cb65a --- /dev/null +++ b/private_gpt/paths.py @@ -0,0 +1,18 @@ +from pathlib import Path + +from private_gpt.constants import PROJECT_ROOT_PATH +from private_gpt.settings.settings import settings + + +def _absolute_or_from_project_root(path: str) -> Path: + if path.startswith("/"): + return Path(path) + return PROJECT_ROOT_PATH / path + + +models_path: Path = PROJECT_ROOT_PATH / "models" +models_cache_path: Path = models_path / "cache" +docs_path: Path = PROJECT_ROOT_PATH / "docs" +local_data_path: Path = _absolute_or_from_project_root( + settings().data.local_data_folder +) diff --git a/private_gpt/server/__init__.py b/private_gpt/server/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5fcc285b2afe2730d729c67e6e19c0c55954a8f5 --- /dev/null +++ b/private_gpt/server/__init__.py @@ -0,0 +1 @@ +"""private-gpt server.""" diff --git a/private_gpt/server/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e7720cac9b05a888b33848b6a2f104b415f5317 Binary files /dev/null and b/private_gpt/server/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/chat/__init__.py b/private_gpt/server/chat/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/server/chat/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/chat/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bc1c40a144dd67b96df5a3fd13b13dded33dd22 Binary files /dev/null and b/private_gpt/server/chat/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/chat/__pycache__/chat_router.cpython-311.pyc b/private_gpt/server/chat/__pycache__/chat_router.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..24446520383e8fbc51d0c57cf410c249f0a483f3 Binary files /dev/null and b/private_gpt/server/chat/__pycache__/chat_router.cpython-311.pyc differ diff --git a/private_gpt/server/chat/__pycache__/chat_service.cpython-311.pyc b/private_gpt/server/chat/__pycache__/chat_service.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5340edc1731c89e9bb2a4de74b10ff4aec7aab8b Binary files /dev/null and b/private_gpt/server/chat/__pycache__/chat_service.cpython-311.pyc differ diff --git a/private_gpt/server/chat/chat_router.py b/private_gpt/server/chat/chat_router.py new file mode 100644 index 0000000000000000000000000000000000000000..e493c3487a3bc6bd68d9686f1e5d4cec87633f68 --- /dev/null +++ b/private_gpt/server/chat/chat_router.py @@ -0,0 +1,108 @@ +from fastapi import APIRouter, Depends, Request +from llama_index.llms import ChatMessage, MessageRole +from pydantic import BaseModel +from starlette.responses import StreamingResponse + +from private_gpt.open_ai.extensions.context_filter import ContextFilter +from private_gpt.open_ai.openai_models import ( + OpenAICompletion, + OpenAIMessage, + to_openai_response, + to_openai_sse_stream, +) +from private_gpt.server.chat.chat_service import ChatService +from private_gpt.server.utils.auth import authenticated + +chat_router = APIRouter(prefix="/v1", dependencies=[Depends(authenticated)]) + + +class ChatBody(BaseModel): + messages: list[OpenAIMessage] + use_context: bool = False + context_filter: ContextFilter | None = None + include_sources: bool = True + stream: bool = False + + model_config = { + "json_schema_extra": { + "examples": [ + { + "messages": [ + { + "role": "system", + "content": "You are a rapper. Always answer with a rap.", + }, + { + "role": "user", + "content": "How do you fry an egg?", + }, + ], + "stream": False, + "use_context": True, + "include_sources": True, + "context_filter": { + "docs_ids": ["c202d5e6-7b69-4869-81cc-dd574ee8ee11"] + }, + } + ] + } + } + + +@chat_router.post( + "/chat/completions", + response_model=None, + responses={200: {"model": OpenAICompletion}}, + tags=["Contextual Completions"], +) +def chat_completion( + request: Request, body: ChatBody +) -> OpenAICompletion | StreamingResponse: + """Given a list of messages comprising a conversation, return a response. + + Optionally include an initial `role: system` message to influence the way + the LLM answers. + + If `use_context` is set to `true`, the model will use context coming + from the ingested documents to create the response. The documents being used can + be filtered using the `context_filter` and passing the document IDs to be used. + Ingested documents IDs can be found using `/ingest/list` endpoint. If you want + all ingested documents to be used, remove `context_filter` altogether. + + When using `'include_sources': true`, the API will return the source Chunks used + to create the response, which come from the context provided. + + When using `'stream': true`, the API will return data chunks following [OpenAI's + streaming model](https://platform.openai.com/docs/api-reference/chat/streaming): + ``` + {"id":"12345","object":"completion.chunk","created":1694268190, + "model":"private-gpt","choices":[{"index":0,"delta":{"content":"Hello"}, + "finish_reason":null}]} + ``` + """ + service = request.state.injector.get(ChatService) + all_messages = [ + ChatMessage(content=m.content, role=MessageRole(m.role)) for m in body.messages + ] + if body.stream: + completion_gen = service.stream_chat( + messages=all_messages, + use_context=body.use_context, + context_filter=body.context_filter, + ) + return StreamingResponse( + to_openai_sse_stream( + completion_gen.response, + completion_gen.sources if body.include_sources else None, + ), + media_type="text/event-stream", + ) + else: + completion = service.chat( + messages=all_messages, + use_context=body.use_context, + context_filter=body.context_filter, + ) + return to_openai_response( + completion.response, completion.sources if body.include_sources else None + ) diff --git a/private_gpt/server/chat/chat_service.py b/private_gpt/server/chat/chat_service.py new file mode 100644 index 0000000000000000000000000000000000000000..ffdb3f90f93d4dd6a91e72b79a3990d468ad08f5 --- /dev/null +++ b/private_gpt/server/chat/chat_service.py @@ -0,0 +1,187 @@ +from dataclasses import dataclass + +from injector import inject, singleton +from llama_index import ServiceContext, StorageContext, VectorStoreIndex +from llama_index.chat_engine import ContextChatEngine, SimpleChatEngine +from llama_index.chat_engine.types import ( + BaseChatEngine, +) +from llama_index.indices.postprocessor import MetadataReplacementPostProcessor +from llama_index.llms import ChatMessage, MessageRole +from llama_index.types import TokenGen +from pydantic import BaseModel + +from private_gpt.components.embedding.embedding_component import EmbeddingComponent +from private_gpt.components.llm.llm_component import LLMComponent +from private_gpt.components.node_store.node_store_component import NodeStoreComponent +from private_gpt.components.vector_store.vector_store_component import ( + VectorStoreComponent, +) +from private_gpt.open_ai.extensions.context_filter import ContextFilter +from private_gpt.server.chunks.chunks_service import Chunk + + +class Completion(BaseModel): + response: str + sources: list[Chunk] | None = None + + +class CompletionGen(BaseModel): + response: TokenGen + sources: list[Chunk] | None = None + + +@dataclass +class ChatEngineInput: + system_message: ChatMessage | None = None + last_message: ChatMessage | None = None + chat_history: list[ChatMessage] | None = None + + @classmethod + def from_messages(cls, messages: list[ChatMessage]) -> "ChatEngineInput": + # Detect if there is a system message, extract the last message and chat history + system_message = ( + messages[0] + if len(messages) > 0 and messages[0].role == MessageRole.SYSTEM + else None + ) + last_message = ( + messages[-1] + if len(messages) > 0 and messages[-1].role == MessageRole.USER + else None + ) + # Remove from messages list the system message and last message, + # if they exist. The rest is the chat history. + if system_message: + messages.pop(0) + if last_message: + messages.pop(-1) + chat_history = messages if len(messages) > 0 else None + + return cls( + system_message=system_message, + last_message=last_message, + chat_history=chat_history, + ) + + +@singleton +class ChatService: + @inject + def __init__( + self, + llm_component: LLMComponent, + vector_store_component: VectorStoreComponent, + embedding_component: EmbeddingComponent, + node_store_component: NodeStoreComponent, + ) -> None: + self.llm_service = llm_component + self.vector_store_component = vector_store_component + self.storage_context = StorageContext.from_defaults( + vector_store=vector_store_component.vector_store, + docstore=node_store_component.doc_store, + index_store=node_store_component.index_store, + ) + self.service_context = ServiceContext.from_defaults( + llm=llm_component.llm, embed_model=embedding_component.embedding_model + ) + self.index = VectorStoreIndex.from_vector_store( + vector_store_component.vector_store, + storage_context=self.storage_context, + service_context=self.service_context, + show_progress=True, + ) + + def _chat_engine( + self, + system_prompt: str | None = None, + use_context: bool = False, + context_filter: ContextFilter | None = None, + ) -> BaseChatEngine: + if use_context: + vector_index_retriever = self.vector_store_component.get_retriever( + index=self.index, context_filter=context_filter + ) + return ContextChatEngine.from_defaults( + system_prompt=system_prompt, + retriever=vector_index_retriever, + service_context=self.service_context, + node_postprocessors=[ + MetadataReplacementPostProcessor(target_metadata_key="window"), + ], + ) + else: + return SimpleChatEngine.from_defaults( + system_prompt=system_prompt, + service_context=self.service_context, + ) + + def stream_chat( + self, + messages: list[ChatMessage], + use_context: bool = False, + context_filter: ContextFilter | None = None, + ) -> CompletionGen: + chat_engine_input = ChatEngineInput.from_messages(messages) + last_message = ( + chat_engine_input.last_message.content + if chat_engine_input.last_message + else None + ) + system_prompt = ( + chat_engine_input.system_message.content + if chat_engine_input.system_message + else None + ) + chat_history = ( + chat_engine_input.chat_history if chat_engine_input.chat_history else None + ) + + chat_engine = self._chat_engine( + system_prompt=system_prompt, + use_context=use_context, + context_filter=context_filter, + ) + streaming_response = chat_engine.stream_chat( + message=last_message if last_message is not None else "", + chat_history=chat_history, + ) + sources = [Chunk.from_node(node) for node in streaming_response.source_nodes] + completion_gen = CompletionGen( + response=streaming_response.response_gen, sources=sources + ) + return completion_gen + + def chat( + self, + messages: list[ChatMessage], + use_context: bool = False, + context_filter: ContextFilter | None = None, + ) -> Completion: + chat_engine_input = ChatEngineInput.from_messages(messages) + last_message = ( + chat_engine_input.last_message.content + if chat_engine_input.last_message + else None + ) + system_prompt = ( + chat_engine_input.system_message.content + if chat_engine_input.system_message + else None + ) + chat_history = ( + chat_engine_input.chat_history if chat_engine_input.chat_history else None + ) + + chat_engine = self._chat_engine( + system_prompt=system_prompt, + use_context=use_context, + context_filter=context_filter, + ) + wrapped_response = chat_engine.chat( + message=last_message if last_message is not None else "", + chat_history=chat_history, + ) + sources = [Chunk.from_node(node) for node in wrapped_response.source_nodes] + completion = Completion(response=wrapped_response.response, sources=sources) + return completion diff --git a/private_gpt/server/chunks/__init__.py b/private_gpt/server/chunks/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/server/chunks/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/chunks/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b221fbd8166b2450bb88129028acc845ea8a940 Binary files /dev/null and b/private_gpt/server/chunks/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/chunks/__pycache__/chunks_router.cpython-311.pyc b/private_gpt/server/chunks/__pycache__/chunks_router.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6ede64d9ea6ee4cb42b5e6868caf669074d57cc1 Binary files /dev/null and b/private_gpt/server/chunks/__pycache__/chunks_router.cpython-311.pyc differ diff --git a/private_gpt/server/chunks/__pycache__/chunks_service.cpython-311.pyc b/private_gpt/server/chunks/__pycache__/chunks_service.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..feb4f57a7cbfa5ab35ddcf5f372c0c1c9e640467 Binary files /dev/null and b/private_gpt/server/chunks/__pycache__/chunks_service.cpython-311.pyc differ diff --git a/private_gpt/server/chunks/chunks_router.py b/private_gpt/server/chunks/chunks_router.py new file mode 100644 index 0000000000000000000000000000000000000000..4da377acdc0471076f7c64605e81aae0937ecf82 --- /dev/null +++ b/private_gpt/server/chunks/chunks_router.py @@ -0,0 +1,55 @@ +from typing import Literal + +from fastapi import APIRouter, Depends, Request +from pydantic import BaseModel, Field + +from private_gpt.open_ai.extensions.context_filter import ContextFilter +from private_gpt.server.chunks.chunks_service import Chunk, ChunksService +from private_gpt.server.utils.auth import authenticated + +chunks_router = APIRouter(prefix="/v1", dependencies=[Depends(authenticated)]) + + +class ChunksBody(BaseModel): + text: str = Field(examples=["Q3 2023 sales"]) + context_filter: ContextFilter | None = None + limit: int = 10 + prev_next_chunks: int = Field(default=0, examples=[2]) + + +class ChunksResponse(BaseModel): + object: Literal["list"] + model: Literal["private-gpt"] + data: list[Chunk] + + +@chunks_router.post("/chunks", tags=["Context Chunks"]) +def chunks_retrieval(request: Request, body: ChunksBody) -> ChunksResponse: + """Given a `text`, returns the most relevant chunks from the ingested documents. + + The returned information can be used to generate prompts that can be + passed to `/completions` or `/chat/completions` APIs. Note: it is usually a very + fast API, because only the Embeddings model is involved, not the LLM. The + returned information contains the relevant chunk `text` together with the source + `document` it is coming from. It also contains a score that can be used to + compare different results. + + The max number of chunks to be returned is set using the `limit` param. + + Previous and next chunks (pieces of text that appear right before or after in the + document) can be fetched by using the `prev_next_chunks` field. + + The documents being used can be filtered using the `context_filter` and passing + the document IDs to be used. Ingested documents IDs can be found using + `/ingest/list` endpoint. If you want all ingested documents to be used, + remove `context_filter` altogether. + """ + service = request.state.injector.get(ChunksService) + results = service.retrieve_relevant( + body.text, body.context_filter, body.limit, body.prev_next_chunks + ) + return ChunksResponse( + object="list", + model="private-gpt", + data=results, + ) diff --git a/private_gpt/server/chunks/chunks_service.py b/private_gpt/server/chunks/chunks_service.py new file mode 100644 index 0000000000000000000000000000000000000000..7fbe8550f51d70beb28b8f298a8051cc6eaa2a87 --- /dev/null +++ b/private_gpt/server/chunks/chunks_service.py @@ -0,0 +1,124 @@ +from typing import TYPE_CHECKING, Literal + +from injector import inject, singleton +from llama_index import ServiceContext, StorageContext, VectorStoreIndex +from llama_index.schema import NodeWithScore +from pydantic import BaseModel, Field + +from private_gpt.components.embedding.embedding_component import EmbeddingComponent +from private_gpt.components.llm.llm_component import LLMComponent +from private_gpt.components.node_store.node_store_component import NodeStoreComponent +from private_gpt.components.vector_store.vector_store_component import ( + VectorStoreComponent, +) +from private_gpt.open_ai.extensions.context_filter import ContextFilter +from private_gpt.server.ingest.model import IngestedDoc + +if TYPE_CHECKING: + from llama_index.schema import RelatedNodeInfo + + +class Chunk(BaseModel): + object: Literal["context.chunk"] + score: float = Field(examples=[0.023]) + document: IngestedDoc + text: str = Field(examples=["Outbound sales increased 20%, driven by new leads."]) + previous_texts: list[str] | None = Field( + default=None, + examples=[["SALES REPORT 2023", "Inbound didn't show major changes."]], + ) + next_texts: list[str] | None = Field( + default=None, + examples=[ + [ + "New leads came from Google Ads campaign.", + "The campaign was run by the Marketing Department", + ] + ], + ) + + @classmethod + def from_node(cls: type["Chunk"], node: NodeWithScore) -> "Chunk": + doc_id = node.node.ref_doc_id if node.node.ref_doc_id is not None else "-" + return cls( + object="context.chunk", + score=node.score or 0.0, + document=IngestedDoc( + object="ingest.document", + doc_id=doc_id, + doc_metadata=node.metadata, + ), + text=node.get_content(), + ) + + +@singleton +class ChunksService: + @inject + def __init__( + self, + llm_component: LLMComponent, + vector_store_component: VectorStoreComponent, + embedding_component: EmbeddingComponent, + node_store_component: NodeStoreComponent, + ) -> None: + self.vector_store_component = vector_store_component + self.storage_context = StorageContext.from_defaults( + vector_store=vector_store_component.vector_store, + docstore=node_store_component.doc_store, + index_store=node_store_component.index_store, + ) + self.query_service_context = ServiceContext.from_defaults( + llm=llm_component.llm, embed_model=embedding_component.embedding_model + ) + + def _get_sibling_nodes_text( + self, node_with_score: NodeWithScore, related_number: int, forward: bool = True + ) -> list[str]: + explored_nodes_texts = [] + current_node = node_with_score.node + for _ in range(related_number): + explored_node_info: RelatedNodeInfo | None = ( + current_node.next_node if forward else current_node.prev_node + ) + if explored_node_info is None: + break + + explored_node = self.storage_context.docstore.get_node( + explored_node_info.node_id + ) + + explored_nodes_texts.append(explored_node.get_content()) + current_node = explored_node + + return explored_nodes_texts + + def retrieve_relevant( + self, + text: str, + context_filter: ContextFilter | None = None, + limit: int = 10, + prev_next_chunks: int = 0, + ) -> list[Chunk]: + index = VectorStoreIndex.from_vector_store( + self.vector_store_component.vector_store, + storage_context=self.storage_context, + service_context=self.query_service_context, + show_progress=True, + ) + vector_index_retriever = self.vector_store_component.get_retriever( + index=index, context_filter=context_filter, similarity_top_k=limit + ) + nodes = vector_index_retriever.retrieve(text) + nodes.sort(key=lambda n: n.score or 0.0, reverse=True) + + retrieved_nodes = [] + for node in nodes: + chunk = Chunk.from_node(node) + chunk.previous_texts = self._get_sibling_nodes_text( + node, prev_next_chunks, False + ) + chunk.next_texts = self._get_sibling_nodes_text(node, prev_next_chunks) + retrieved_nodes.append(chunk) + + return retrieved_nodes diff --git a/private_gpt/server/completions/__init__.py b/private_gpt/server/completions/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ae635df4fddabf18d63a99141043152a901d5c8b --- /dev/null +++ b/private_gpt/server/completions/__init__.py @@ -0,0 +1 @@ +"""Deprecated Openai compatibility endpoint.""" diff --git a/private_gpt/server/completions/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/completions/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..570f491993491031b06f4e9919714b5f4ae66ac3 Binary files /dev/null and b/private_gpt/server/completions/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/completions/__pycache__/completions_router.cpython-311.pyc b/private_gpt/server/completions/__pycache__/completions_router.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca1f2d6f350fde94ae5f49010cefe957f30fef69 Binary files /dev/null and b/private_gpt/server/completions/__pycache__/completions_router.cpython-311.pyc differ diff --git a/private_gpt/server/completions/completions_router.py b/private_gpt/server/completions/completions_router.py new file mode 100644 index 0000000000000000000000000000000000000000..da9583a7a8946646ef832df671b60bf15bc9b233 --- /dev/null +++ b/private_gpt/server/completions/completions_router.py @@ -0,0 +1,85 @@ +from fastapi import APIRouter, Depends, Request +from pydantic import BaseModel +from starlette.responses import StreamingResponse + +from private_gpt.open_ai.extensions.context_filter import ContextFilter +from private_gpt.open_ai.openai_models import ( + OpenAICompletion, + OpenAIMessage, +) +from private_gpt.server.chat.chat_router import ChatBody, chat_completion +from private_gpt.server.utils.auth import authenticated + +completions_router = APIRouter(prefix="/v1", dependencies=[Depends(authenticated)]) + + +class CompletionsBody(BaseModel): + prompt: str + system_prompt: str | None = None + use_context: bool = False + context_filter: ContextFilter | None = None + include_sources: bool = True + stream: bool = False + + model_config = { + "json_schema_extra": { + "examples": [ + { + "prompt": "How do you fry an egg?", + "system_prompt": "You are a rapper. Always answer with a rap.", + "stream": False, + "use_context": False, + "include_sources": False, + } + ] + } + } + + +@completions_router.post( + "/completions", + response_model=None, + summary="Completion", + responses={200: {"model": OpenAICompletion}}, + tags=["Contextual Completions"], +) +def prompt_completion( + request: Request, body: CompletionsBody +) -> OpenAICompletion | StreamingResponse: + """We recommend most users use our Chat completions API. + + Given a prompt, the model will return one predicted completion. + + Optionally include a `system_prompt` to influence the way the LLM answers. + + If `use_context` + is set to `true`, the model will use context coming from the ingested documents + to create the response. The documents being used can be filtered using the + `context_filter` and passing the document IDs to be used. Ingested documents IDs + can be found using `/ingest/list` endpoint. If you want all ingested documents to + be used, remove `context_filter` altogether. + + When using `'include_sources': true`, the API will return the source Chunks used + to create the response, which come from the context provided. + + When using `'stream': true`, the API will return data chunks following [OpenAI's + streaming model](https://platform.openai.com/docs/api-reference/chat/streaming): + ``` + {"id":"12345","object":"completion.chunk","created":1694268190, + "model":"private-gpt","choices":[{"index":0,"delta":{"content":"Hello"}, + "finish_reason":null}]} + ``` + """ + messages = [OpenAIMessage(content=body.prompt, role="user")] + # If system prompt is passed, create a fake message with the system prompt. + if body.system_prompt: + messages.insert(0, OpenAIMessage(content=body.system_prompt, role="system")) + + chat_body = ChatBody( + messages=messages, + use_context=body.use_context, + stream=body.stream, + include_sources=body.include_sources, + context_filter=body.context_filter, + ) + return chat_completion(request, chat_body) diff --git a/private_gpt/server/embeddings/__init__.py b/private_gpt/server/embeddings/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/server/embeddings/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/embeddings/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de85ba49ec9c0e8f18f1a0e21a600a8b95d902d3 Binary files /dev/null and b/private_gpt/server/embeddings/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/embeddings/__pycache__/embeddings_router.cpython-311.pyc b/private_gpt/server/embeddings/__pycache__/embeddings_router.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..61ab0fd82e938a7e9e20e162cd073b7a814830c5 Binary files /dev/null and b/private_gpt/server/embeddings/__pycache__/embeddings_router.cpython-311.pyc differ diff --git a/private_gpt/server/embeddings/__pycache__/embeddings_service.cpython-311.pyc b/private_gpt/server/embeddings/__pycache__/embeddings_service.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c0cf42795831d289f1e627932ae6db1380218de Binary files /dev/null and b/private_gpt/server/embeddings/__pycache__/embeddings_service.cpython-311.pyc differ diff --git a/private_gpt/server/embeddings/embeddings_router.py b/private_gpt/server/embeddings/embeddings_router.py new file mode 100644 index 0000000000000000000000000000000000000000..f698392d23949dc5fa1294bdd6b7ae7351e25d9d --- /dev/null +++ b/private_gpt/server/embeddings/embeddings_router.py @@ -0,0 +1,35 @@ +from typing import Literal + +from fastapi import APIRouter, Depends, Request +from pydantic import BaseModel + +from private_gpt.server.embeddings.embeddings_service import ( + Embedding, + EmbeddingsService, +) +from private_gpt.server.utils.auth import authenticated + +embeddings_router = APIRouter(prefix="/v1", dependencies=[Depends(authenticated)]) + + +class EmbeddingsBody(BaseModel): + input: str | list[str] + + +class EmbeddingsResponse(BaseModel): + object: Literal["list"] + model: Literal["private-gpt"] + data: list[Embedding] + + +@embeddings_router.post("/embeddings", tags=["Embeddings"]) +def embeddings_generation(request: Request, body: EmbeddingsBody) -> EmbeddingsResponse: + """Get a vector representation of a given input. + + That vector representation can be easily consumed + by machine learning models and algorithms. + """ + service = request.state.injector.get(EmbeddingsService) + input_texts = body.input if isinstance(body.input, list) else [body.input] + embeddings = service.texts_embeddings(input_texts) + return EmbeddingsResponse(object="list", model="private-gpt", data=embeddings) diff --git a/private_gpt/server/embeddings/embeddings_service.py b/private_gpt/server/embeddings/embeddings_service.py new file mode 100644 index 0000000000000000000000000000000000000000..f0f90a0f4092ac8199e2b647fcb1e38a7253d750 --- /dev/null +++ b/private_gpt/server/embeddings/embeddings_service.py @@ -0,0 +1,30 @@ +from typing import Literal + +from injector import inject, singleton +from pydantic import BaseModel, Field + +from private_gpt.components.embedding.embedding_component import EmbeddingComponent + + +class Embedding(BaseModel): + index: int + object: Literal["embedding"] + embedding: list[float] = Field(examples=[[0.0023064255, -0.009327292]]) + + +@singleton +class EmbeddingsService: + @inject + def __init__(self, embedding_component: EmbeddingComponent) -> None: + self.embedding_model = embedding_component.embedding_model + + def texts_embeddings(self, texts: list[str]) -> list[Embedding]: + texts_embeddings = self.embedding_model.get_text_embedding_batch(texts) + return [ + Embedding( + index=texts_embeddings.index(embedding), + object="embedding", + embedding=embedding, + ) + for embedding in texts_embeddings + ] diff --git a/private_gpt/server/health/__init__.py b/private_gpt/server/health/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/server/health/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/health/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cee71317d504d130e4ad282728e17b123a72d301 Binary files /dev/null and b/private_gpt/server/health/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/health/__pycache__/health_router.cpython-311.pyc b/private_gpt/server/health/__pycache__/health_router.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0332e2ecffbee1787a5715aa9f1161caa4703fc1 Binary files /dev/null and b/private_gpt/server/health/__pycache__/health_router.cpython-311.pyc differ diff --git a/private_gpt/server/health/health_router.py b/private_gpt/server/health/health_router.py new file mode 100644 index 0000000000000000000000000000000000000000..4a30b7608ccc3bb10fe49f56a0d187463f8241ba --- /dev/null +++ b/private_gpt/server/health/health_router.py @@ -0,0 +1,17 @@ +from typing import Literal + +from fastapi import APIRouter +from pydantic import BaseModel, Field + +# Not authentication or authorization required to get the health status. +health_router = APIRouter() + + +class HealthResponse(BaseModel): + status: Literal["ok"] = Field(default="ok") + + +@health_router.get("/health", tags=["Health"]) +def health() -> HealthResponse: + """Return ok if the system is up.""" + return HealthResponse(status="ok") diff --git a/private_gpt/server/ingest/__init__.py b/private_gpt/server/ingest/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/server/ingest/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/ingest/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..adc0667e311fe142f426c5c45dad9003e2bb914a Binary files /dev/null and b/private_gpt/server/ingest/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/ingest/__pycache__/ingest_router.cpython-311.pyc b/private_gpt/server/ingest/__pycache__/ingest_router.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c17a5db1d036ffce7d28274b1ce12bb3d817dbdd Binary files /dev/null and b/private_gpt/server/ingest/__pycache__/ingest_router.cpython-311.pyc differ diff --git a/private_gpt/server/ingest/__pycache__/ingest_service.cpython-311.pyc b/private_gpt/server/ingest/__pycache__/ingest_service.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..029a3056d9bd2e26a2e0ca883e7cd1c20473f259 Binary files /dev/null and b/private_gpt/server/ingest/__pycache__/ingest_service.cpython-311.pyc differ diff --git a/private_gpt/server/ingest/__pycache__/model.cpython-311.pyc b/private_gpt/server/ingest/__pycache__/model.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19ded3a30620af1fcb8ff3300fbbae2b8b752874 Binary files /dev/null and b/private_gpt/server/ingest/__pycache__/model.cpython-311.pyc differ diff --git a/private_gpt/server/ingest/ingest_router.py b/private_gpt/server/ingest/ingest_router.py new file mode 100644 index 0000000000000000000000000000000000000000..5e1f94bf9f72376a83b41597f6597666809ec42a --- /dev/null +++ b/private_gpt/server/ingest/ingest_router.py @@ -0,0 +1,63 @@ +from typing import Literal + +from fastapi import APIRouter, Depends, HTTPException, Request, UploadFile +from pydantic import BaseModel + +from private_gpt.server.ingest.ingest_service import IngestService +from private_gpt.server.ingest.model import IngestedDoc +from private_gpt.server.utils.auth import authenticated + +ingest_router = APIRouter(prefix="/v1", dependencies=[Depends(authenticated)]) + + +class IngestResponse(BaseModel): + object: Literal["list"] + model: Literal["private-gpt"] + data: list[IngestedDoc] + + +@ingest_router.post("/ingest", tags=["Ingestion"]) +def ingest(request: Request, file: UploadFile) -> IngestResponse: + """Ingests and processes a file, storing its chunks to be used as context. + + The context obtained from files is later used in + `/chat/completions`, `/completions`, and `/chunks` APIs. + + Most common document + formats are supported, but you may be prompted to install an extra dependency to + manage a specific file type. + + A file can generate different Documents (for example a PDF generates one Document + per page). All Documents IDs are returned in the response, together with the + extracted Metadata (which is later used to improve context retrieval). Those IDs + can be used to filter the context used to create responses in + `/chat/completions`, `/completions`, and `/chunks` APIs. + """ + service = request.state.injector.get(IngestService) + if file.filename is None: + raise HTTPException(400, "No file name provided") + ingested_documents = service.ingest_bin_data(file.filename, file.file) + return IngestResponse(object="list", model="private-gpt", data=ingested_documents) + + +@ingest_router.get("/ingest/list", tags=["Ingestion"]) +def list_ingested(request: Request) -> IngestResponse: + """Lists already ingested Documents including their Document ID and metadata. + + Those IDs can be used to filter the context used to create responses + in `/chat/completions`, `/completions`, and `/chunks` APIs. + """ + service = request.state.injector.get(IngestService) + ingested_documents = service.list_ingested() + return IngestResponse(object="list", model="private-gpt", data=ingested_documents) + + +@ingest_router.delete("/ingest/{doc_id}", tags=["Ingestion"]) +def delete_ingested(request: Request, doc_id: str) -> None: + """Delete the specified ingested Document. + + The `doc_id` can be obtained from the `GET /ingest/list` endpoint. + The document will be effectively deleted from your storage context. + """ + service = request.state.injector.get(IngestService) + service.delete(doc_id) diff --git a/private_gpt/server/ingest/ingest_service.py b/private_gpt/server/ingest/ingest_service.py new file mode 100644 index 0000000000000000000000000000000000000000..4112024ed6ee734b52bfd4aa9694d59a112f5007 --- /dev/null +++ b/private_gpt/server/ingest/ingest_service.py @@ -0,0 +1,123 @@ +import logging +import tempfile +from pathlib import Path +from typing import BinaryIO + +from injector import inject, singleton +from llama_index import ( + ServiceContext, + StorageContext, +) +from llama_index.node_parser import SentenceWindowNodeParser + +from private_gpt.components.embedding.embedding_component import EmbeddingComponent +from private_gpt.components.ingest.ingest_component import get_ingestion_component +from private_gpt.components.llm.llm_component import LLMComponent +from private_gpt.components.node_store.node_store_component import NodeStoreComponent +from private_gpt.components.vector_store.vector_store_component import ( + VectorStoreComponent, +) +from private_gpt.server.ingest.model import IngestedDoc +from private_gpt.settings.settings import settings + +logger = logging.getLogger(__name__) + + +@singleton +class IngestService: + @inject + def __init__( + self, + llm_component: LLMComponent, + vector_store_component: VectorStoreComponent, + embedding_component: EmbeddingComponent, + node_store_component: NodeStoreComponent, + ) -> None: + self.llm_service = llm_component + self.storage_context = StorageContext.from_defaults( + vector_store=vector_store_component.vector_store, + docstore=node_store_component.doc_store, + index_store=node_store_component.index_store, + ) + node_parser = SentenceWindowNodeParser.from_defaults() + self.ingest_service_context = ServiceContext.from_defaults( + llm=self.llm_service.llm, + embed_model=embedding_component.embedding_model, + node_parser=node_parser, + # Embeddings done early in the pipeline of node transformations, right + # after the node parsing + transformations=[node_parser, embedding_component.embedding_model], + ) + + self.ingest_component = get_ingestion_component( + self.storage_context, self.ingest_service_context, settings=settings() + ) + + def ingest(self, file_name: str, file_data: Path) -> list[IngestedDoc]: + logger.info("Ingesting file_name=%s", file_name) + documents = self.ingest_component.ingest(file_name, file_data) + return [IngestedDoc.from_document(document) for document in documents] + + def ingest_bin_data( + self, file_name: str, raw_file_data: BinaryIO + ) -> list[IngestedDoc]: + logger.debug("Ingesting binary data with file_name=%s", file_name) + file_data = raw_file_data.read() + logger.debug("Got file data of size=%s to ingest", len(file_data)) + # llama-index mainly supports reading from files, so + # we have to create a tmp file to read for it to work + # delete=False to avoid a Windows 11 permission error. + with tempfile.NamedTemporaryFile(delete=False) as tmp: + try: + path_to_tmp = Path(tmp.name) + if isinstance(file_data, bytes): + path_to_tmp.write_bytes(file_data) + else: + path_to_tmp.write_text(str(file_data)) + return self.ingest(file_name, path_to_tmp) + finally: + tmp.close() + path_to_tmp.unlink() + + def bulk_ingest(self, files: list[tuple[str, Path]]) -> list[IngestedDoc]: + logger.info("Ingesting file_names=%s", [f[0] for f in files]) + documents = self.ingest_component.bulk_ingest(files) + return [IngestedDoc.from_document(document) for document in documents] + + def list_ingested(self) -> list[IngestedDoc]: + ingested_docs = [] + try: + docstore = self.storage_context.docstore + ingested_docs_ids: set[str] = set() + + for node in docstore.docs.values(): + if node.ref_doc_id is not None: + ingested_docs_ids.add(node.ref_doc_id) + + for doc_id in ingested_docs_ids: + ref_doc_info = docstore.get_ref_doc_info(ref_doc_id=doc_id) + doc_metadata = None + if ref_doc_info is not None and ref_doc_info.metadata is not None: + doc_metadata = IngestedDoc.curate_metadata(ref_doc_info.metadata) + ingested_docs.append( + IngestedDoc( + object="ingest.document", + doc_id=doc_id, + doc_metadata=doc_metadata, + ) + ) + except ValueError: + logger.warning("Got an exception when getting list of docs", exc_info=True) + pass + logger.debug("Found count=%s ingested documents", len(ingested_docs)) + return ingested_docs + + def delete(self, doc_id: str) -> None: + """Delete an ingested document. + + :raises ValueError: if the document does not exist + """ + logger.info( + "Deleting the ingested document=%s in the doc and index store", doc_id + ) + self.ingest_component.delete(doc_id) diff --git a/private_gpt/server/ingest/ingest_watcher.py b/private_gpt/server/ingest/ingest_watcher.py new file mode 100644 index 0000000000000000000000000000000000000000..51bba54a48425fb36f09f36487b0778b97f618e7 --- /dev/null +++ b/private_gpt/server/ingest/ingest_watcher.py @@ -0,0 +1,46 @@ +from collections.abc import Callable +from pathlib import Path +from typing import Any + +from watchdog.events import ( + DirCreatedEvent, + DirModifiedEvent, + FileCreatedEvent, + FileModifiedEvent, + FileSystemEventHandler, +) +from watchdog.observers import Observer + + +class IngestWatcher: + def __init__( + self, watch_path: Path, on_file_changed: Callable[[Path], None] + ) -> None: + self.watch_path = watch_path + self.on_file_changed = on_file_changed + + class Handler(FileSystemEventHandler): + def on_modified(self, event: DirModifiedEvent | FileModifiedEvent) -> None: + if isinstance(event, FileModifiedEvent): + on_file_changed(Path(event.src_path)) + + def on_created(self, event: DirCreatedEvent | FileCreatedEvent) -> None: + if isinstance(event, FileCreatedEvent): + on_file_changed(Path(event.src_path)) + + event_handler = Handler() + observer: Any = Observer() + self._observer = observer + self._observer.schedule(event_handler, str(watch_path), recursive=True) + + def start(self) -> None: + self._observer.start() + while self._observer.is_alive(): + try: + self._observer.join(1) + except KeyboardInterrupt: + break + + def stop(self) -> None: + self._observer.stop() + self._observer.join() diff --git a/private_gpt/server/ingest/model.py b/private_gpt/server/ingest/model.py new file mode 100644 index 0000000000000000000000000000000000000000..eb957ee028a8710ac2fcdc97ece0063af8c2fb09 --- /dev/null +++ b/private_gpt/server/ingest/model.py @@ -0,0 +1,32 @@ +from typing import Any, Literal + +from llama_index import Document +from pydantic import BaseModel, Field + + +class IngestedDoc(BaseModel): + object: Literal["ingest.document"] + doc_id: str = Field(examples=["c202d5e6-7b69-4869-81cc-dd574ee8ee11"]) + doc_metadata: dict[str, Any] | None = Field( + examples=[ + { + "page_label": "2", + "file_name": "Sales Report Q3 2023.pdf", + } + ] + ) + + @staticmethod + def curate_metadata(metadata: dict[str, Any]) -> dict[str, Any]: + """Remove unwanted metadata keys.""" + for key in ["doc_id", "window", "original_text"]: + metadata.pop(key, None) + return metadata + + @staticmethod + def from_document(document: Document) -> "IngestedDoc": + return IngestedDoc( + object="ingest.document", + doc_id=document.doc_id, + doc_metadata=IngestedDoc.curate_metadata(document.metadata), + ) diff --git a/private_gpt/server/utils/__init__.py b/private_gpt/server/utils/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/private_gpt/server/utils/__pycache__/__init__.cpython-311.pyc b/private_gpt/server/utils/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a4c45150dfd7521b4cda2347004327ce0ecab140 Binary files /dev/null and b/private_gpt/server/utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/server/utils/__pycache__/auth.cpython-311.pyc b/private_gpt/server/utils/__pycache__/auth.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e9a8492847c59d72ba1bebf0a47445948b339eb Binary files /dev/null and b/private_gpt/server/utils/__pycache__/auth.cpython-311.pyc differ diff --git a/private_gpt/server/utils/auth.py b/private_gpt/server/utils/auth.py new file mode 100644 index 0000000000000000000000000000000000000000..4fd57a7fe41093853ac526db831a4f0c6f67afa5 --- /dev/null +++ b/private_gpt/server/utils/auth.py @@ -0,0 +1,68 @@ +"""Authentication mechanism for the API. + +Define a simple mechanism to authenticate requests. +More complex authentication mechanisms can be defined here, and be placed in the +`authenticated` method (being a 'bean' injected in fastapi routers). + +Authorization can also be made after the authentication, and depends on +the authentication. Authorization should not be implemented in this file. + +Authorization can be done by following fastapi's guides: +* https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/ +* https://fastapi.tiangolo.com/tutorial/security/ +* https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-in-path-operation-decorators/ +""" +# mypy: ignore-errors +# Disabled mypy error: All conditional function variants must have identical signatures +# We are changing the implementation of the authenticated method, based on +# the config. If the auth is not enabled, we are not defining the complex method +# with its dependencies. +import logging +import secrets +from typing import Annotated + +from fastapi import Depends, Header, HTTPException + +from private_gpt.settings.settings import settings + +# 401 signify that the request requires authentication. +# 403 signify that the authenticated user is not authorized to perform the operation. +NOT_AUTHENTICATED = HTTPException( + status_code=401, + detail="Not authenticated", + headers={"WWW-Authenticate": 'Basic realm="All the API", charset="UTF-8"'}, +) + +logger = logging.getLogger(__name__) + + +def _simple_authentication(authorization: Annotated[str, Header()] = "") -> bool: + """Check if the request is authenticated.""" + if not secrets.compare_digest(authorization, settings().server.auth.secret): + # If the "Authorization" header is not the expected one, raise an exception. + raise NOT_AUTHENTICATED + return True + + +if not settings().server.auth.enabled: + logger.debug( + "Defining a dummy authentication mechanism for fastapi, always authenticating requests" + ) + + # Define a dummy authentication method that always returns True. + def authenticated() -> bool: + """Check if the request is authenticated.""" + return True + +else: + logger.info("Defining the given authentication mechanism for the API") + + # Method to be used as a dependency to check if the request is authenticated. + def authenticated( + _simple_authentication: Annotated[bool, Depends(_simple_authentication)] + ) -> bool: + """Check if the request is authenticated.""" + assert settings().server.auth.enabled + if not _simple_authentication: + raise NOT_AUTHENTICATED + return True diff --git a/private_gpt/settings/__init__.py b/private_gpt/settings/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ebcc5dc6cde633c44ef419e5edd8d3b31ad3ce10 --- /dev/null +++ b/private_gpt/settings/__init__.py @@ -0,0 +1 @@ +"""Settings.""" diff --git a/private_gpt/settings/__pycache__/__init__.cpython-311.pyc b/private_gpt/settings/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..558a9369a4d64774b8394e37e77b18cb2a58eb18 Binary files /dev/null and b/private_gpt/settings/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/settings/__pycache__/settings.cpython-311.pyc b/private_gpt/settings/__pycache__/settings.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c5b926049469f4b48fd6b282166b822620889ec Binary files /dev/null and b/private_gpt/settings/__pycache__/settings.cpython-311.pyc differ diff --git a/private_gpt/settings/__pycache__/settings_loader.cpython-311.pyc b/private_gpt/settings/__pycache__/settings_loader.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4b30215c8860b9922c194b014d50b935fbea9c4b Binary files /dev/null and b/private_gpt/settings/__pycache__/settings_loader.cpython-311.pyc differ diff --git a/private_gpt/settings/__pycache__/yaml.cpython-311.pyc b/private_gpt/settings/__pycache__/yaml.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef67ccec5f597c85a6595b5263695c1bb79152ee Binary files /dev/null and b/private_gpt/settings/__pycache__/yaml.cpython-311.pyc differ diff --git a/private_gpt/settings/settings.py b/private_gpt/settings/settings.py new file mode 100644 index 0000000000000000000000000000000000000000..125396c3ea144069b9eaff7442f74c6846b77dcd --- /dev/null +++ b/private_gpt/settings/settings.py @@ -0,0 +1,256 @@ +from typing import Literal + +from pydantic import BaseModel, Field + +from private_gpt.settings.settings_loader import load_active_settings + + +class CorsSettings(BaseModel): + """CORS configuration. + + For more details on the CORS configuration, see: + # * https://fastapi.tiangolo.com/tutorial/cors/ + # * https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS + """ + + enabled: bool = Field( + description="Flag indicating if CORS headers are set or not." + "If set to True, the CORS headers will be set to allow all origins, methods and headers.", + default=False, + ) + allow_credentials: bool = Field( + description="Indicate that cookies should be supported for cross-origin requests", + default=False, + ) + allow_origins: list[str] = Field( + description="A list of origins that should be permitted to make cross-origin requests.", + default=[], + ) + allow_origin_regex: list[str] = Field( + description="A regex string to match against origins that should be permitted to make cross-origin requests.", + default=None, + ) + allow_methods: list[str] = Field( + description="A list of HTTP methods that should be allowed for cross-origin requests.", + default=[ + "GET", + ], + ) + allow_headers: list[str] = Field( + description="A list of HTTP request headers that should be supported for cross-origin requests.", + default=[], + ) + + +class AuthSettings(BaseModel): + """Authentication configuration. + + The implementation of the authentication strategy must + """ + + enabled: bool = Field( + description="Flag indicating if authentication is enabled or not.", + default=False, + ) + secret: str = Field( + description="The secret to be used for authentication. " + "It can be any non-blank string. For HTTP basic authentication, " + "this value should be the whole 'Authorization' header that is expected" + ) + + +class ServerSettings(BaseModel): + env_name: str = Field( + description="Name of the environment (prod, staging, local...)" + ) + port: int = Field(description="Port of PrivateGPT FastAPI server, defaults to 8001") + cors: CorsSettings = Field( + description="CORS configuration", default=CorsSettings(enabled=False) + ) + auth: AuthSettings = Field( + description="Authentication configuration", + default_factory=lambda: AuthSettings(enabled=False, secret="secret-key"), + ) + + +class DataSettings(BaseModel): + local_data_folder: str = Field( + description="Path to local storage." + "It will be treated as an absolute path if it starts with /" + ) + + +class LLMSettings(BaseModel): + mode: Literal["local", "openai", "sagemaker", "mock"] + max_new_tokens: int = Field( + 256, + description="The maximum number of token that the LLM is authorized to generate in one completion.", + ) + + +class VectorstoreSettings(BaseModel): + database: Literal["chroma", "qdrant"] + + +class LocalSettings(BaseModel): + llm_hf_repo_id: str + llm_hf_model_file: str + embedding_hf_model_name: str = Field( + description="Name of the HuggingFace model to use for embeddings" + ) + prompt_style: Literal["default", "llama2", "tag"] = Field( + "llama2", + description=( + "The prompt style to use for the chat engine. " + "If `default` - use the default prompt style from the llama_index. It should look like `role: message`.\n" + "If `llama2` - use the llama2 prompt style from the llama_index. Based on ``, `[INST]` and `<>`.\n" + "If `tag` - use the `tag` prompt style. It should look like `<|role|>: message`. \n" + "`llama2` is the historic behaviour. `default` might work better with your custom models." + ), + ) + default_system_prompt: str | None = Field( + None, + description=( + "The default system prompt to use for the chat engine. " + "If none is given - use the default system prompt (from the llama_index). " + "Please note that the default prompt might not be the same for all prompt styles. " + "Also note that this is only used if the first message is not a system message. " + ), + ) + + +class EmbeddingSettings(BaseModel): + mode: Literal["local", "openai", "sagemaker", "mock"] + ingest_mode: Literal["simple", "batch", "parallel"] = Field( + "simple", + description=( + "The ingest mode to use for the embedding engine:\n" + "If `simple` - ingest files sequentially and one by one. It is the historic behaviour.\n" + "If `batch` - if multiple files, parse all the files in parallel, " + "and send them in batch to the embedding model.\n" + "If `parallel` - parse the files in parallel using multiple cores, and embedd them in parallel.\n" + "`parallel` is the fastest mode for local setup, as it parallelize IO RW in the index.\n" + "For modes that leverage parallelization, you can specify the number of " + "workers to use with `count_workers`.\n" + ), + ) + count_workers: int = Field( + 2, + description=( + "The number of workers to use for file ingestion.\n" + "In `batch` mode, this is the number of workers used to parse the files.\n" + "In `parallel` mode, this is the number of workers used to parse the files and embed them.\n" + "This is only used if `ingest_mode` is not `simple`.\n" + "Do not go too high with this number, as it might cause memory issues. (especially in `parallel` mode)\n" + "Do not set it higher than your number of threads of your CPU." + ), + ) + + +class SagemakerSettings(BaseModel): + llm_endpoint_name: str + embedding_endpoint_name: str + + +class OpenAISettings(BaseModel): + api_key: str + + +class UISettings(BaseModel): + enabled: bool + path: str + + +class QdrantSettings(BaseModel): + location: str | None = Field( + None, + description=( + "If `:memory:` - use in-memory Qdrant instance.\n" + "If `str` - use it as a `url` parameter.\n" + ), + ) + url: str | None = Field( + None, + description=( + "Either host or str of 'Optional[scheme], host, Optional[port], Optional[prefix]'." + ), + ) + port: int | None = Field(6333, description="Port of the REST API interface.") + grpc_port: int | None = Field(6334, description="Port of the gRPC interface.") + prefer_grpc: bool | None = Field( + False, + description="If `true` - use gRPC interface whenever possible in custom methods.", + ) + https: bool | None = Field( + None, + description="If `true` - use HTTPS(SSL) protocol.", + ) + api_key: str | None = Field( + None, + description="API key for authentication in Qdrant Cloud.", + ) + prefix: str | None = Field( + None, + description=( + "Prefix to add to the REST URL path." + "Example: `service/v1` will result in " + "'http://localhost:6333/service/v1/{qdrant-endpoint}' for REST API." + ), + ) + timeout: float | None = Field( + None, + description="Timeout for REST and gRPC API requests.", + ) + host: str | None = Field( + None, + description="Host name of Qdrant service. If url and host are None, set to 'localhost'.", + ) + path: str | None = Field(None, description="Persistence path for QdrantLocal.") + force_disable_check_same_thread: bool | None = Field( + True, + description=( + "For QdrantLocal, force disable check_same_thread. Default: `True`" + "Only use this if you can guarantee that you can resolve the thread safety outside QdrantClient." + ), + ) + + +class Settings(BaseModel): + server: ServerSettings + data: DataSettings + ui: UISettings + llm: LLMSettings + embedding: EmbeddingSettings + local: LocalSettings + sagemaker: SagemakerSettings + openai: OpenAISettings + vectorstore: VectorstoreSettings + qdrant: QdrantSettings | None = None + + +""" +This is visible just for DI or testing purposes. + +Use dependency injection or `settings()` method instead. +""" +unsafe_settings = load_active_settings() + +""" +This is visible just for DI or testing purposes. + +Use dependency injection or `settings()` method instead. +""" +unsafe_typed_settings = Settings(**unsafe_settings) + + +def settings() -> Settings: + """Get the current loaded settings from the DI container. + + This method exists to keep compatibility with the existing code, + that require global access to the settings. + + For regular components use dependency injection instead. + """ + from private_gpt.di import global_injector + + return global_injector.get(Settings) diff --git a/private_gpt/settings/settings_loader.py b/private_gpt/settings/settings_loader.py new file mode 100644 index 0000000000000000000000000000000000000000..b4052db265e99aedf6f5b89083d20df5191661b1 --- /dev/null +++ b/private_gpt/settings/settings_loader.py @@ -0,0 +1,57 @@ +import functools +import logging +import os +import sys +from collections.abc import Iterable +from pathlib import Path +from typing import Any + +from pydantic.v1.utils import deep_update, unique_list + +from private_gpt.constants import PROJECT_ROOT_PATH +from private_gpt.settings.yaml import load_yaml_with_envvars + +logger = logging.getLogger(__name__) + +_settings_folder = os.environ.get("PGPT_SETTINGS_FOLDER", PROJECT_ROOT_PATH) + +# if running in unittest, use the test profile +_test_profile = ["test"] if "unittest" in sys.modules else [] + +active_profiles: list[str] = unique_list( + ["default"] + + [ + item.strip() + for item in os.environ.get("PGPT_PROFILES", "").split(",") + if item.strip() + ] + + _test_profile +) + + +def merge_settings(settings: Iterable[dict[str, Any]]) -> dict[str, Any]: + return functools.reduce(deep_update, settings, {}) + + +def load_settings_from_profile(profile: str) -> dict[str, Any]: + if profile == "default": + profile_file_name = "settings.yaml" + else: + profile_file_name = f"settings-{profile}.yaml" + + path = Path(_settings_folder) / profile_file_name + with Path(path).open("r") as f: + config = load_yaml_with_envvars(f) + if not isinstance(config, dict): + raise TypeError(f"Config file has no top-level mapping: {path}") + return config + + +def load_active_settings() -> dict[str, Any]: + """Load active profiles and merge them.""" + logger.info("Starting application with profiles=%s", active_profiles) + loaded_profiles = [ + load_settings_from_profile(profile) for profile in active_profiles + ] + merged: dict[str, Any] = merge_settings(loaded_profiles) + return merged diff --git a/private_gpt/settings/yaml.py b/private_gpt/settings/yaml.py new file mode 100644 index 0000000000000000000000000000000000000000..a129ca4959b4e84e8a05958efaf0f0644a981132 --- /dev/null +++ b/private_gpt/settings/yaml.py @@ -0,0 +1,41 @@ +import os +import re +import typing +from typing import Any, TextIO + +from yaml import SafeLoader + +_env_replace_matcher = re.compile(r"\$\{(\w|_)+:?.*}") + + +@typing.no_type_check # pyaml does not have good hints, everything is Any +def load_yaml_with_envvars( + stream: TextIO, environ: dict[str, Any] = os.environ +) -> dict[str, Any]: + """Load yaml file with environment variable expansion. + + The pattern ${VAR} or ${VAR:default} will be replaced with + the value of the environment variable. + """ + loader = SafeLoader(stream) + + def load_env_var(_, node) -> str: + """Extract the matched value, expand env variable, and replace the match.""" + value = str(node.value).removeprefix("${").removesuffix("}") + split = value.split(":", 1) + env_var = split[0] + value = environ.get(env_var) + default = None if len(split) == 1 else split[1] + if value is None and default is None: + raise ValueError( + f"Environment variable {env_var} is not set and not default was provided" + ) + return value or default + + loader.add_implicit_resolver("env_var_replacer", _env_replace_matcher, None) + loader.add_constructor("env_var_replacer", load_env_var) + + try: + return loader.get_single_data() + finally: + loader.dispose() diff --git a/private_gpt/ui/__init__.py b/private_gpt/ui/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..8fe4022ab32a761b2377b8bc5db66357d6121e34 --- /dev/null +++ b/private_gpt/ui/__init__.py @@ -0,0 +1 @@ +"""Gradio based UI.""" diff --git a/private_gpt/ui/__pycache__/__init__.cpython-311.pyc b/private_gpt/ui/__pycache__/__init__.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e2d8b6aaa14547530fbd6eb0985e12bd461c30b Binary files /dev/null and b/private_gpt/ui/__pycache__/__init__.cpython-311.pyc differ diff --git a/private_gpt/ui/__pycache__/images.cpython-311.pyc b/private_gpt/ui/__pycache__/images.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1f42ad1b9b82fb106f0adcad1f278db5f71bc52 Binary files /dev/null and b/private_gpt/ui/__pycache__/images.cpython-311.pyc differ diff --git a/private_gpt/ui/__pycache__/ui.cpython-311.pyc b/private_gpt/ui/__pycache__/ui.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c01f040dd7a4c2f98f20da52dc35187036e7d9b Binary files /dev/null and b/private_gpt/ui/__pycache__/ui.cpython-311.pyc differ diff --git a/private_gpt/ui/avatar-bot.ico b/private_gpt/ui/avatar-bot.ico new file mode 100644 index 0000000000000000000000000000000000000000..ab220adb2ff076d74bac45104f3c068b85e7aecd Binary files /dev/null and b/private_gpt/ui/avatar-bot.ico differ diff --git a/private_gpt/ui/images.py b/private_gpt/ui/images.py new file mode 100644 index 0000000000000000000000000000000000000000..6705b57e5d279019515ed6249392cb17ff8122fc --- /dev/null +++ b/private_gpt/ui/images.py @@ -0,0 +1 @@ +logo_svg = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODYxIiBoZWlnaHQ9Ijk4IiB2aWV3Qm94PSIwIDAgODYxIDk4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNDguMTM0NSAwLjE1NzkxMUMzNi44Mjk5IDEuMDM2NTQgMjYuMTIwNSA1LjU1MzI4IDE3LjYyNTYgMTMuMDI1QzkuMTMwNDYgMjAuNDk2NyAzLjMxMTcgMzAuNTE2OSAxLjA0OTUyIDQxLjU3MDVDLTEuMjEyNzMgNTIuNjIzOCAwLjIwNDQxOSA2NC4xMDk0IDUuMDg2MiA3NC4yOTA1QzkuOTY4NjggODQuNDcxNiAxOC4wNTAzIDkyLjc5NDMgMjguMTA5OCA5OEwzMy43MDI2IDgyLjU5MDdMMzUuNDU0MiA3Ny43NjU2QzI5LjgzODcgNzQuMTY5MiAyNS41NDQ0IDY4Ljg2MDcgMjMuMjE0IDYyLjYzNDRDMjAuODgyMiA1Ni40MDg2IDIwLjYzOSA0OS41OTkxIDIyLjUyMDQgNDMuMjI0M0MyNC40MDI5IDM2Ljg0OTUgMjguMzA5NiAzMS4yNTI1IDMzLjY1NjEgMjcuMjcwNkMzOS4wMDIgMjMuMjg4MyA0NS41MDAzIDIxLjEzNSA1Mi4xNzg5IDIxLjEzM0M1OC44NTczIDIxLjEzMDMgNjUuMzU3MSAyMy4yNzgzIDcwLjcwNjUgMjcuMjU1OEM3Ni4wNTU0IDMxLjIzNCA3OS45NjY0IDM2LjgyNzcgODEuODU0MyA0My4yMDA2QzgzLjc0MjkgNDkuNTczNiA4My41MDYyIDU2LjM4MzYgODEuMTgwMSA2Mi42MTE3Qzc4Ljg1NDUgNjguODM5NiA3NC41NjUgNzQuMTUxNCA2OC45NTI5IDc3Ljc1MjhMNzAuNzA3NCA4Mi41OTA3TDc2LjMwMDIgOTcuOTk3MUM4Ni45Nzg4IDkyLjQ3MDUgOTUuNDA4OCA4My40NDE5IDEwMC4xNjMgNzIuNDQwNEMxMDQuOTE3IDYxLjQzOTQgMTA1LjcwNCA0OS4xNDE3IDEwMi4zODkgMzcuNjNDOTkuMDc0NiAyNi4xMTc5IDkxLjg2MjcgMTYuMDk5MyA4MS45NzQzIDkuMjcwNzlDNzIuMDg2MSAyLjQ0MTkxIDYwLjEyOTEgLTAuNzc3MDg2IDQ4LjEyODYgMC4xNTg5MzRMNDguMTM0NSAwLjE1NzkxMVoiIGZpbGw9IiMxRjFGMjkiLz4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzVfMTkpIj4KPHBhdGggZD0iTTIyMC43NzIgMTIuNzUyNEgyNTIuNjM5QzI2Ny4yNjMgMTIuNzUyNCAyNzcuNzM5IDIxLjk2NzUgMjc3LjczOSAzNS40MDUyQzI3Ny43MzkgNDYuNzg3IDI2OS44ODEgNTUuMzUwOCAyNTguMzE0IDU3LjQxMDdMMjc4LjgzIDg1LjM3OTRIMjYxLjM3TDI0Mi4wNTQgNTcuOTUzM0gyMzUuNTA2Vjg1LjM3OTRIMjIwLjc3NEwyMjAuNzcyIDEyLjc1MjRaTTIzNS41MDQgMjYuMzAyOFY0NC40MDdIMjUyLjYzMkMyNTguOTYyIDQ0LjQwNyAyNjIuOTk5IDQwLjgyOTggMjYyLjk5OSAzNS40MTAyQzI2Mi45OTkgMjkuODgwOSAyNTguOTYyIDI2LjMwMjggMjUyLjYzMiAyNi4zMDI4SDIzNS41MDRaIiBmaWxsPSIjMUYxRjI5Ii8+CjxwYXRoIGQ9Ik0yOTUuMTc2IDg1LjM4NDRWMTIuNzUyNEgzMDkuOTA5Vjg1LjM4NDRIMjk1LjE3NloiIGZpbGw9IiMxRjFGMjkiLz4KPHBhdGggZD0iTTM2My43OTUgNjUuNzYzTDM4NS42MiAxMi43NTI0SDQwMS40NDRMMzcxLjIxNSA4NS4zODQ0SDM1Ni40ODNMMzI2LjI1NCAxMi43NTI0SDM0Mi4wNzhMMzYzLjc5NSA2NS43NjNaIiBmaWxsPSIjMUYxRjI5Ii8+CjxwYXRoIGQ9Ik00NDguMzI3IDcyLjA1MDRINDE1LjY5OEw0MTAuMjQxIDg1LjM4NDRIMzk0LjQxOEw0MjQuNjQ3IDEyLjc1MjRINDM5LjM3OUw0NjkuNjA4IDg1LjM4NDRINDUzLjc4M0w0NDguMzI3IDcyLjA1MDRaTTQ0Mi43NjEgNTguNUw0MzIuMDY2IDMyLjM3NDhMNDIxLjI2MiA1OC41SDQ0Mi43NjFaIiBmaWxsPSIjMUYxRjI5Ii8+CjxwYXRoIGQ9Ik00NjUuMjIxIDEyLjc1MjRINTMwLjU5MlYyNi4zMDI4SDUwNS4yNzVWODUuMzg0NEg0OTAuNTM5VjI2LjMwMjhINDY1LjIyMVYxMi43NTI0WiIgZmlsbD0iIzFGMUYyOSIvPgo8cGF0aCBkPSJNNTk1LjE5MyAxMi43NTI0VjI2LjMwMjhINTYyLjEyOFY0MS4xNTUxSDU5NS4xOTNWNTQuNzA2NUg1NjIuMTI4VjcxLjgzNEg1OTUuMTkzVjg1LjM4NDRINTQ3LjM5NVYxMi43NTI0SDU5NS4xOTNaIiBmaWxsPSIjMUYxRjI5Ii8+CjxwYXRoIGQ9Ik0xNjcuMjAxIDU3LjQxNThIMTg2LjUzNkMxOTAuODg2IDU3LjQ2NjIgMTk1LjE2OCA1Ni4zMzQ4IDE5OC45MTggNTQuMTQzN0MyMDIuMTc5IDUyLjIxOTkgMjA0Ljg2OSA0OS40NzM2IDIwNi43MTYgNDYuMTgzNUMyMDguNTYyIDQyLjg5MzQgMjA5LjUgMzkuMTc2NiAyMDkuNDMzIDM1LjQxMDJDMjA5LjQzMyAyMS45Njc1IDE5OC45NTggMTIuNzU3NCAxODQuMzM0IDEyLjc1NzRIMTUyLjQ2OFY4NS4zODk0SDE2Ny4yMDFWNTcuNDIwN1Y1Ny40MTU4Wk0xNjcuMjAxIDI2LjMwNThIMTg0LjMyOUMxOTAuNjU4IDI2LjMwNTggMTk0LjY5NiAyOS44ODQgMTk0LjY5NiAzNS40MTMzQzE5NC42OTYgNDAuODMyOSAxOTAuNjU4IDQ0LjQwOTkgMTg0LjMyOSA0NC40MDk5SDE2Ny4yMDFWMjYuMzA1OFoiIGZpbGw9IiMxRjFGMjkiLz4KPHBhdGggZD0iTTc5NC44MzUgMTIuNzUyNEg4NjAuMjA2VjI2LjMwMjhIODM0Ljg4OVY4NS4zODQ0SDgyMC4xNTZWMjYuMzAyOEg3OTQuODM1VjEyLjc1MjRaIiBmaWxsPSIjMUYxRjI5Ii8+CjxwYXRoIGQ9Ik03NDEuOTA3IDU3LjQxNThINzYxLjI0MUM3NjUuNTkyIDU3LjQ2NjEgNzY5Ljg3NCA1Ni4zMzQ3IDc3My42MjQgNTQuMTQzN0M3NzYuODg0IDUyLjIxOTkgNzc5LjU3NSA0OS40NzM2IDc4MS40MjEgNDYuMTgzNUM3ODMuMjY4IDQyLjg5MzQgNzg0LjIwNiAzOS4xNzY2IDc4NC4xMzkgMzUuNDEwMkM3ODQuMTM5IDIxLjk2NzUgNzczLjY2NCAxMi43NTc0IDc1OS4wMzkgMTIuNzU3NEg3MjcuMTc1Vjg1LjM4OTRINzQxLjkwN1Y1Ny40MjA3VjU3LjQxNThaTTc0MS45MDcgMjYuMzA1OEg3NTkuMDM1Qzc2NS4zNjUgMjYuMzA1OCA3NjkuNDAzIDI5Ljg4NCA3NjkuNDAzIDM1LjQxMzNDNzY5LjQwMyA0MC44MzI5IDc2NS4zNjUgNDQuNDA5OSA3NTkuMDM1IDQ0LjQwOTlINzQxLjkwN1YyNi4zMDU4WiIgZmlsbD0iIzFGMUYyOSIvPgo8cGF0aCBkPSJNNjgxLjA2OSA0Ny4wMTE1VjU5LjAxMjVINjk1LjM3OVY3MS42NzE5QzY5Mi41MjYgNzMuNDM2OCA2ODguNTI0IDc0LjMzMTkgNjgzLjQ3NyA3NC4zMzE5QzY2Ni4wMDMgNzQuMzMxOSA2NTguMDQ1IDYxLjgxMjQgNjU4LjA0NSA1MC4xOEM2NTguMDQ1IDMzLjk2MDUgNjcxLjAwOCAyNS40NzMyIDY4My44MTIgMjUuNDczMkM2OTAuNDI1IDI1LjQ2MjggNjk2LjkwOSAyNy4yODA0IDcwMi41NDEgMzAuNzIyNkw3MDMuMTU3IDMxLjEyNTRMNzA1Ljk1OCAxOC4xODZMNzA1LjY2MyAxNy45OTc3QzcwMC4wNDYgMTQuNDAwNCA2OTEuMjkxIDEyLjI1OSA2ODIuMjUxIDEyLjI1OUM2NjMuMTk3IDEyLjI1OSA2NDIuOTQ5IDI1LjM5NjcgNjQyLjk0OSA0OS43NDVDNjQyLjk0OSA2MS4wODQ1IDY0Ny4yOTMgNzAuNzE3NCA2NTUuNTExIDc3LjYwMjlDNjYzLjIyNCA4My44MjQ1IDY3Mi44NzQgODcuMTg5IDY4Mi44MDkgODcuMTIwMUM2OTQuMzYzIDg3LjEyMDEgNzAzLjA2MSA4NC42NDk1IDcwOS40MDIgNzkuNTY5Mkw3MDkuNTg5IDc5LjQxODFWNDcuMDExNUg2ODEuMDY5WiIgZmlsbD0iIzFGMUYyOSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzVfMTkiPgo8cmVjdCB3aWR0aD0iNzA3Ljc3OCIgaGVpZ2h0PSI3NC44NjExIiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTUyLjQ0NCAxMi4yNSkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K" diff --git a/private_gpt/ui/ui.py b/private_gpt/ui/ui.py new file mode 100644 index 0000000000000000000000000000000000000000..9ba1b1c8fadc0878f30714473ba3cf6aebc81b78 --- /dev/null +++ b/private_gpt/ui/ui.py @@ -0,0 +1,255 @@ +"""This file should be imported only and only if you want to run the UI locally.""" +import itertools +import logging +from collections.abc import Iterable +from pathlib import Path +from typing import Any + +import gradio as gr # type: ignore +from fastapi import FastAPI +from gradio.themes.utils.colors import slate # type: ignore +from injector import inject, singleton +from llama_index.llms import ChatMessage, ChatResponse, MessageRole +from pydantic import BaseModel + +from private_gpt.constants import PROJECT_ROOT_PATH +from private_gpt.di import global_injector +from private_gpt.server.chat.chat_service import ChatService, CompletionGen +from private_gpt.server.chunks.chunks_service import Chunk, ChunksService +from private_gpt.server.ingest.ingest_service import IngestService +from private_gpt.settings.settings import settings +from private_gpt.ui.images import logo_svg + +logger = logging.getLogger(__name__) + +THIS_DIRECTORY_RELATIVE = Path(__file__).parent.relative_to(PROJECT_ROOT_PATH) +# Should be "private_gpt/ui/avatar-bot.ico" +AVATAR_BOT = THIS_DIRECTORY_RELATIVE / "avatar-bot.ico" + +UI_TAB_TITLE = "CHATBOT" + +SOURCES_SEPARATOR = "\n\n Sources: \n" + + +class Source(BaseModel): + file: str + page: str + text: str + + class Config: + frozen = True + + @staticmethod + def curate_sources(sources: list[Chunk]) -> set["Source"]: + curated_sources = set() + + for chunk in sources: + doc_metadata = chunk.document.doc_metadata + + file_name = doc_metadata.get("file_name", "-") if doc_metadata else "-" + page_label = doc_metadata.get("page_label", "-") if doc_metadata else "-" + + source = Source(file=file_name, page=page_label, text=chunk.text) + curated_sources.add(source) + + return curated_sources + + +@singleton +class PrivateGptUi: + @inject + def __init__( + self, + ingest_service: IngestService, + chat_service: ChatService, + chunks_service: ChunksService, + ) -> None: + self._ingest_service = ingest_service + self._chat_service = chat_service + self._chunks_service = chunks_service + + # Cache the UI blocks + self._ui_block = None + + def _chat(self, message: str, history: list[list[str]], mode: str, *_: Any) -> Any: + def yield_deltas(completion_gen: CompletionGen) -> Iterable[str]: + full_response: str = "" + stream = completion_gen.response + for delta in stream: + if isinstance(delta, str): + full_response += str(delta) + elif isinstance(delta, ChatResponse): + full_response += delta.delta or "" + yield full_response + + if completion_gen.sources: + full_response += SOURCES_SEPARATOR + cur_sources = Source.curate_sources(completion_gen.sources) + sources_text = "\n\n\n".join( + f"{index}. {source.file} (page {source.page})" + for index, source in enumerate(cur_sources, start=1) + ) + full_response += sources_text + yield full_response + + def build_history() -> list[ChatMessage]: + history_messages: list[ChatMessage] = list( + itertools.chain( + *[ + [ + ChatMessage(content=interaction[0], role=MessageRole.USER), + ChatMessage( + # Remove from history content the Sources information + content=interaction[1].split(SOURCES_SEPARATOR)[0], + role=MessageRole.ASSISTANT, + ), + ] + for interaction in history + ] + ) + ) + + # max 20 messages to try to avoid context overflow + return history_messages[:20] + + new_message = ChatMessage(content=message, role=MessageRole.USER) + all_messages = [*build_history(), new_message] + match mode: + case "Query Docs": + # Add a system message to force the behaviour of the LLM + # to answer only questions about the provided context. + all_messages.insert( + 0, + ChatMessage( + content="You can only answer questions about the provided context. If you know the answer " + "but it is not based in the provided context, don't provide the answer, just state " + "the answer is not in the context provided.", + role=MessageRole.SYSTEM, + ), + ) + query_stream = self._chat_service.stream_chat( + messages=all_messages, + use_context=True, + ) + yield from yield_deltas(query_stream) + + case "LLM Chat": + llm_stream = self._chat_service.stream_chat( + messages=all_messages, + use_context=False, + ) + yield from yield_deltas(llm_stream) + + case "Search in Docs": + response = self._chunks_service.retrieve_relevant( + text=message, limit=4, prev_next_chunks=0 + ) + + sources = Source.curate_sources(response) + + yield "\n\n\n".join( + f"{index}. **{source.file} " + f"(page {source.page})**\n " + f"{source.text}" + for index, source in enumerate(sources, start=1) + ) + + def _list_ingested_files(self) -> list[list[str]]: + files = set() + for ingested_document in self._ingest_service.list_ingested(): + if ingested_document.doc_metadata is None: + # Skipping documents without metadata + continue + file_name = ingested_document.doc_metadata.get( + "file_name", "[FILE NAME MISSING]" + ) + files.add(file_name) + return [[row] for row in files] + + def _upload_file(self, files: list[str]) -> None: + logger.debug("Loading count=%s files", len(files)) + paths = [Path(file) for file in files] + self._ingest_service.bulk_ingest([(str(path.name), path) for path in paths]) + + def _build_ui_blocks(self) -> gr.Blocks: + logger.debug("Creating the UI blocks") + with gr.Blocks( + title=UI_TAB_TITLE, + theme=gr.themes.Soft(primary_hue=slate), + #css=".logo { " + #"display:flex;" + #"background-color: #C7BAFF;" + #"height: 80px;" + #"border-radius: 8px;" + #"align-content: center;" + #"justify-content: center;" + #"align-items: center;" + #"}" + #".logo img { height: 25% }", + ) as blocks: + #with gr.Row(): + #gr.HTML(f"