[
  {
    "path": ".github/ISSUE_TEMPLATE/bug.yml",
    "content": "name: \"🐞 Bug Report\"\ndescription: \"Create a report to help us improve\"\ntitle: \"BUG:\"\nlabels: [\"Bug\"]\nbody:\n  - type: checkboxes\n    attributes:\n      label: \"Is there an existing issue for this?\"\n      description: \"Please search to see if an issue already exists for the bug you encountered.\"\n      options:\n        - label: \"I have searched the existing issues\"\n          required: true\n\n  - type: textarea\n    attributes:\n      label: \"Describe the bug\"\n      description: \"A clear and concise description of what the bug is.\"\n\n  - type: textarea\n    attributes:\n      label: \"What happened?\"\n      description: \"A concise description of what you're experiencing.\"\n\n  - type: textarea\n    attributes:\n      label: \"Expected behavior\"\n      description: \"A clear and concise description of what you expected to happen.\"\n\n  - type: textarea\n    attributes:\n      label: \"Screenshots\"\n      description: \"If applicable, add screenshots to help explain your problem.\"\n\n \n  - type: checkboxes\n    attributes:\n      label: \"Record\"\n      options:\n        - label: \"I agree to follow this project's Code of Conduct\"\n          required: true\n        - label: \"I'm a GSSOC'24 contributor\"\n        - label: \"I want to work on this issue\"\n\nname: \"🐞 Bug Report\"\ndescription: \"Create a report to help us improve\"\ntitle: \"BUG:\"\nlabels: [\"Bug\"]\nbody:\n  - type: checkboxes\n    attributes:\n      label: \"Is there an existing issue for this?\"\n      description: \"Please search to see if an issue already exists for the bug you encountered.\"\n      options:\n        - label: \"I have searched the existing issues\"\n          required: true\n\n  - type: textarea\n    attributes:\n      label: \"Describe the bug\"\n      description: \"A clear and concise description of what the bug is.\"\n\n  - type: textarea\n    attributes:\n      label: \"What happened?\"\n      description: \"A concise description of what you're experiencing.\"\n\n  - type: textarea\n    attributes:\n      label: \"Expected behavior\"\n      description: \"A clear and concise description of what you expected to happen.\"\n\n  - type: textarea\n    attributes:\n      label: \"Screenshots\"\n      description: \"If applicable, add screenshots to help explain your problem.\"\n\n \n  - type: checkboxes\n    attributes:\n      label: \"Record\"\n      options:\n        - label: \"I agree to follow this project's Code of Conduct\"\n          required: true\n        - label: \"I'm a GSSOC'24 contributor\"\n        - label: \"I want to work on this issue\""
  },
  {
    "path": ".github/ISSUE_TEMPLATE/documentation.yml",
    "content": "name: \"📑 Documentation Update\"\ndescription: \"Improve Documentation\"\ntitle: \"DOC:\"\nlabels: [\"DOC\", \"Needs Triage\"]\nbody:\n  - type: textarea\n    attributes:\n      label: \"What's wrong with the existing documentation\"\n      description: \"Which things do we need to add or delete\"\n  \n  - type: textarea\n    attributes:\n      label: \"File to change\"\n      description: \"Specify which file needs the changes\"\n\n  - type: textarea\n    attributes:\n      label: \"Details of the change\"\n      description: \"Describe what needs to be changed\"\n\n  - type: textarea\n    attributes:\n      label: \"Type of change\"\n      description: \"For example: grammatical errors, adding new sections\"\n\n  - type: checkboxes\n    attributes:\n      label: \"Record\"\n      options:\n        - label: \"I agree to follow this project's Code of Conduct\"\n          required: true\n        - label: \"I'm a GSSOC'24 contributor\"\n        - label: \"I want to work on this issue\"\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature.yml",
    "content": "name: \"✨ Feature Request\"\ndescription: \"Suggest an idea for this project\"\ntitle: \"Feat:\"\nlabels: [\"Feat\", \"Needs Triage\"]\nbody:\n  - type: textarea\n    attributes:\n      label: \"Describe the feature\"\n      description: \"Provide a detailed description of the feature you are requesting.\"\n    validations:\n      required: true\n  \n  - type: textarea\n    attributes:\n      label: \"Describe the solution you'd like\"\n      description: \"A clear and concise description of what you want to happen.\"\n    validations:\n      required: true\n  \n  - type: textarea\n    attributes:\n      label: \"Describe alternatives you've considered\"\n      description: \"A clear and concise description of any alternative solutions or features you've considered.\"\n    validations:\n      required: true\n  \n  - type: textarea\n    attributes:\n      label: \"Add ScreenShots\"\n      description: \"Add sufficient screenshots to explain your issue.\"\n    validations:\n      required: true\n  \n  - type: checkboxes\n    attributes:\n      label: \"Record\"\n      options:\n        - label: \"I agree to follow this project's Code of Conduct\"\n          required: true\n        - label: \"I'm a GSSOC'24 contributor\"\n        - label: \"I want to work on this issue\"\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "## Related Issue\n[Cite any related issue(s) this pull request addresses. If none, simply state \"None”]\n\n## Description\n[Please include a brief description of the changes or features added]\n\n## Type of PR\n\n- [ ] Bug fix\n- [ ] Feature enhancement\n- [ ] Documentation update\n- [ ] Other (specify): _______________\n\n## Screenshots / videos (if applicable)\n[Attach any relevant screenshots or videos demonstrating the changes]\n\n## Checklist:\n- [ ] I have performed a self-review of my code\n- [ ] I have read and followed the Contribution Guidelines.\n- [ ] I have tested the changes thoroughly before submitting this pull request.\n- [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes.\n- [ ] I have commented my code, particularly in hard-to-understand areas.\n<!-- [X] - put a cross/X inside [] to check the box -->\n\n## Additional context:\n[Include any additional information or context that might be helpful for reviewers.]\n"
  },
  {
    "path": ".github/workflows/auto-comment-pr-merge.yml",
    "content": "name: Auto Comment on PR Merge\n\non:\n  pull_request:\n    types: [closed]\n\njobs:\n  comment:\n    if: github.event.pull_request.merged == true\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Add Comment to Merged PR\n      env:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n      run: |\n        curl -X POST \\\n          -H \"Authorization: token $GITHUB_TOKEN\" \\\n          -H \"Accept: application/vnd.github.v3+json\" \\\n          -d '{\"body\":\"🎉 Your pull request has been successfully merged! 🎉 Thank you for your contribution to our project. Your efforts are greatly appreciated. Keep up the fantastic work! 🚀\"}' \\\n          \"https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments\"\n"
  },
  {
    "path": ".github/workflows/greetings.yml",
    "content": "name: 'Greetings'\n\non:\n  issues:\n    types: [opened]\n  pull_request_target:\n    types: [opened]\npermissions:\n  issues: write\n  pull-requests: write\n\njobs:\n  welcome:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v1\n      - uses: EddieHubCommunity/gh-action-community/src/welcome@main\n        with:\n      \n          issue-message: \"Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible.\"\n          pr-message: \"Great job, @${{ github.actor }}! 🎉 Thank you for submitting your pull request. Your contribution is valuable and we appreciate your efforts to improve our project.We will promptly review your changes and offer feedback.  kindly remember to check our [contributing guidelines](https://github.com/arghadipmanna101/Flipkart_Clone/blob/main/CONTRIBUITING.md)\"\n          github-token: ${{ secrets.GITHUB_TOKEN }}"
  },
  {
    "path": ".github/workflows/pr-comment.yml",
    "content": "name: Comment on Pull Request\n\non:\n  pull_request:\n    types: [opened]\n\njobs:\n  comment:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v2\n\n    - name: Add Comment\n      uses: peter-evans/create-or-update-comment@v2\n      with:\n        token: ${{ secrets.GITHUB_TOKEN }}\n        issue-number: ${{ github.event.pull_request.number }}\n        body: |\n          Thank you for your contribution. We appreciate your effort. Our team will review your PR soon.\n"
  },
  {
    "path": ".gitignore",
    "content": "*node_modules/*"
  },
  {
    "path": ".idea/.gitignore",
    "content": "# Default ignored files\n/shelf/\n/workspace.xml\n# Editor-based HTTP Client requests\n/httpRequests/\n"
  },
  {
    "path": ".vscode/c_cpp_properties.json",
    "content": "{\n  \"configurations\": [\n    {\n      \"name\": \"windows-gcc-x64\",\n      \"includePath\": [\n        \"${workspaceFolder}/**\"\n      ],\n      \"compilerPath\": \"gcc\",\n      \"cStandard\": \"${default}\",\n      \"cppStandard\": \"${default}\",\n      \"intelliSenseMode\": \"windows-gcc-x64\",\n      \"compilerArgs\": [\n        \"\"\n      ]\n    }\n  ],\n  \"version\": 4\n}"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n  \"liveServer.settings.port\": 5501,\n  \"C_Cpp_Runner.cCompilerPath\": \"gcc\",\n  \"C_Cpp_Runner.cppCompilerPath\": \"g++\",\n  \"C_Cpp_Runner.debuggerPath\": \"gdb\",\n  \"C_Cpp_Runner.cStandard\": \"\",\n  \"C_Cpp_Runner.cppStandard\": \"\",\n  \"C_Cpp_Runner.msvcBatchPath\": \"C:/Program Files/Microsoft Visual Studio/VR_NR/Community/VC/Auxiliary/Build/vcvarsall.bat\",\n  \"C_Cpp_Runner.useMsvc\": false,\n  \"C_Cpp_Runner.warnings\": [\n    \"-Wall\",\n    \"-Wextra\",\n    \"-Wpedantic\",\n    \"-Wshadow\",\n    \"-Wformat=2\",\n    \"-Wcast-align\",\n    \"-Wconversion\",\n    \"-Wsign-conversion\",\n    \"-Wnull-dereference\"\n  ],\n  \"C_Cpp_Runner.msvcWarnings\": [\n    \"/W4\",\n    \"/permissive-\",\n    \"/w14242\",\n    \"/w14287\",\n    \"/w14296\",\n    \"/w14311\",\n    \"/w14826\",\n    \"/w44062\",\n    \"/w44242\",\n    \"/w14905\",\n    \"/w14906\",\n    \"/w14263\",\n    \"/w44265\",\n    \"/w14928\"\n  ],\n  \"C_Cpp_Runner.enableWarnings\": true,\n  \"C_Cpp_Runner.warningsAsError\": false,\n  \"C_Cpp_Runner.compilerArgs\": [],\n  \"C_Cpp_Runner.linkerArgs\": [],\n  \"C_Cpp_Runner.includePaths\": [],\n  \"C_Cpp_Runner.includeSearch\": [\n    \"*\",\n    \"**/*\"\n  ],\n  \"C_Cpp_Runner.excludeSearch\": [\n    \"**/build\",\n    \"**/build/**\",\n    \"**/.*\",\n    \"**/.*/**\",\n    \"**/.vscode\",\n    \"**/.vscode/**\"\n  ],\n  \"C_Cpp_Runner.useAddressSanitizer\": false,\n  \"C_Cpp_Runner.useUndefinedSanitizer\": false,\n  \"C_Cpp_Runner.useLeakSanitizer\": false,\n  \"C_Cpp_Runner.showCompilationTime\": false,\n  \"C_Cpp_Runner.useLinkTimeOptimization\": false,\n  \"C_Cpp_Runner.msvcSecureNoWarnings\": false\n}"
  },
  {
    "path": "404.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>404:Page not found</title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\n</head>\n<style>\n    body {\n        margin: 0;\n        padding: 0;\n        font-family: Arial, sans-serif;\n        background-color: #fff;\n    }\n\n    .center {\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: center;\n        height: 90vh;\n    }\n\n    .pic {\n        width: 400px;\n        height: 300px;\n    }\n    a {\n        text-decoration: none;\n        color: #000000;\n    }\n\n    .btn {\n        position: absolute;\n        padding: 10px 20px;\n        background-color: #0077ff;\n        border-radius: 5px;\n        font-size: 18px;\n        border: none;\n        top: 600px;\n    }\n\n    @media screen and (max-width: 600px) {\n        .pic {\n            width: 300px;\n            height: 300px;\n        }\n\n        .btn {\n            top: 750px;\n        }\n        h4{\n            font-size: 13px;\n        }\n    }\n    nav{\n        background: #0077ff;\n        display: flex;\n        justify-content: center;\n    }\n    .logo{\n        width: 200px;\n        padding: 20px;\n    }\n    \n</style>\n\n<body>\n    <nav>\n        <img src=\"http://img1a.flixcart.com/www/linchpin/fk-cp-zion/img/fk-logo_9fddff.png\" alt=\"logo\" class=\"logo\">\n    </nav>\n    <div class=\"center\">\n        <img src=\"https://flipkart-clone-seven-azure.vercel.app/img/flipkarterror.png\" alt=\"404 pic\" class=\"pic\">\n        <h4>Unfortunately the page you are looking for has been moved or deleted</h4>\n        <button class=\"btn\"><a href=\"https://flipkart-clone-seven-azure.vercel.app/index.html\">GOTO THE HOMEPAGE</a></button>\n    </div>\n</body>\n\n</html>"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participation in our\ncommunity a harassment-free experience for everyone, regardless of age, body\nsize, visible or invisible disability, ethnicity, sex characteristics, gender\nidentity and expression, level of experience, education, socio-economic status,\nnationality, personal appearance, race, religion, or sexual identity\nand orientation.\n\nWe pledge to act and interact in ways that contribute to an open, welcoming,\ndiverse, inclusive, and healthy community.\n\n## Our Standards\n\nExamples of behavior that contributes to a positive environment for our\ncommunity include:\n\n* Demonstrating empathy and kindness toward other people\n* Being respectful of differing opinions, viewpoints, and experiences\n* Giving and gracefully accepting constructive feedback\n* Accepting responsibility and apologizing to those affected by our mistakes,\n  and learning from the experience\n* Focusing on what is best not just for us as individuals, but for the\n  overall community\n\nExamples of unacceptable behavior include:\n\n* The use of sexualized language or imagery, and sexual attention or\n  advances of any kind\n* Trolling, insulting or derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or email\n  address, without their explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Enforcement Responsibilities\n\nCommunity leaders are responsible for clarifying and enforcing our standards of\nacceptable behavior and will take appropriate and fair corrective action in\nresponse to any behavior that they deem inappropriate, threatening, offensive,\nor harmful.\n\nCommunity leaders have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct, and will communicate reasons for moderation\ndecisions when appropriate.\n\n## Scope\n\nThis Code of Conduct applies within all community spaces, and also applies when\nan individual is officially representing the community in public spaces.\nExamples of representing our community include using an official e-mail address,\nposting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported to the community leaders responsible for enforcement at\narghadipmanna7295@gmail.com .\nAll complaints will be reviewed and investigated promptly and fairly.\n\nAll community leaders are obligated to respect the privacy and security of the\nreporter of any incident.\n\n## Enforcement Guidelines\n\nCommunity leaders will follow these Community Impact Guidelines in determining\nthe consequences for any action they deem in violation of this Code of Conduct:\n\n### 1. Correction\n\n**Community Impact**: Use of inappropriate language or other behavior deemed\nunprofessional or unwelcome in the community.\n\n**Consequence**: A private, written warning from community leaders, providing\nclarity around the nature of the violation and an explanation of why the\nbehavior was inappropriate. A public apology may be requested.\n\n### 2. Warning\n\n**Community Impact**: A violation through a single incident or series\nof actions.\n\n**Consequence**: A warning with consequences for continued behavior. No\ninteraction with the people involved, including unsolicited interaction with\nthose enforcing the Code of Conduct, for a specified period of time. This\nincludes avoiding interactions in community spaces as well as external channels\nlike social media. Violating these terms may lead to a temporary or\npermanent ban.\n\n### 3. Temporary Ban\n\n**Community Impact**: A serious violation of community standards, including\nsustained inappropriate behavior.\n\n**Consequence**: A temporary ban from any sort of interaction or public\ncommunication with the community for a specified period of time. No public or\nprivate interaction with the people involved, including unsolicited interaction\nwith those enforcing the Code of Conduct, is allowed during this period.\nViolating these terms may lead to a permanent ban.\n\n### 4. Permanent Ban\n\n**Community Impact**: Demonstrating a pattern of violation of community\nstandards, including sustained inappropriate behavior,  harassment of an\nindividual, or aggression toward or disparagement of classes of individuals.\n\n**Consequence**: A permanent ban from any sort of public interaction within\nthe community.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage],\nversion 2.0, available at\nhttps://www.contributor-covenant.org/version/2/0/code_of_conduct.html.\n\nCommunity Impact Guidelines were inspired by [Mozilla's code of conduct\nenforcement ladder](https://github.com/mozilla/diversity).\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see the FAQ at\nhttps://www.contributor-covenant.org/faq. Translations are available at\nhttps://www.contributor-covenant.org/translations.\n"
  },
  {
    "path": "CONTRIBUITING.md",
    "content": "<h1 align=\"center\"> Guide for Contributors </h1>\n<h3 align=\"center\">Welcome to Our Flipkart_Clone project 👋<br> <hr> Thankyou Your eagerness to contribute is greatly appreciated. <br>This guide will walk you through the steps to begin working on the project and successfully make your first contribution.</h3>\n\n![Line](https://user-images.githubusercontent.com/85225156/171937799-8fc9e255-9889-4642-9c92-6df85fb86e82.gif)\n\n## How You Can Contribute?\n\n**🐞Bug Fixing :**\nContributors can help by reviewing and confirming reported issues. This includes verifying bugs, providing additional details, and prioritizing tasks for the development team.\n\n**📝Documentation :** Contributors can contribute by reviewing and improving project documentation. This includes updating existing documents, creating new guides or tutorials, and ensuring that the documentation is clear, comprehensive, and user-friendly.\n\n**✨Enhancements :**\nContributors can enhance the project by implementing new features or improvements suggested by users. This involves understanding requirements, designing solutions, and extending the functionality of the travel website. \n\n![Line](https://user-images.githubusercontent.com/85225156/171937799-8fc9e255-9889-4642-9c92-6df85fb86e82.gif)\n\n# Contributing Guidelines [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/openMF/web-app/issues)\n\nWhen contributing to this repository, please first discuss the change you wish to make via an issue.\n\nDo not open issues for general support questions as we want to keep GitHub issues for bug reports and feature requests. \nRemember that this is an inclusive community, committed to creating a safe, positive environment. See the whole [Code of Conduct](CODE_OF_CONDUCT.md) and please follow it in all your interactions with the project.\n\nTo start contributing, follow the below guidelines:\n\n**1.** Fork [this](https://github.com/arghadipmanna101/Flipkart_Clone.git) repository.\n\n**2.** Clone your forked copy of the project.\n\n```\ngit clone https://github.com/arghadipmanna101/Flipkart_Clone.git\n```\n\n**3.** Navigate to the project directory :file_folder: .\n\n```\ncd Flipkart_Clone\n```\n\n**4.** Add a reference(remote) to the original repository.\n\n```\ngit remote add upstream https://github.com/arghadipmanna101/Flipkart_Clone.git\n```\n\n**5.** Check the remotes for this repository.\n\n```\ngit remote -v\n```\n\n**6.** Always take a pull from the upstream repository to your master branch to keep it at par with the main project (updated repository).\n\n```\ngit pull upstream main\n```\n\n**7.** Create a new branch.\n\n```\ngit checkout -b <your_branch_name>\n```\n\n**8.** Perform your desired changes to the code base.\n\n**9.** Track your changes:heavy_check_mark: .\n\n```\ngit add .\n```\n\n**10.** Commit your changes .\n\n```\ngit commit -m \"Relevant message\"\n```\n\n**11.** Push the committed changes in your feature branch to your remote repo.\n\n```\ngit push -u origin <your_branch_name>\n```\n\n**12.** To create a pull request, click on `compare and pull requests`.\n\n**13.** Add appropriate title and description to your pull request explaining your changes and efforts done.\n\n**14.** Click on `Create Pull Request`.\n\n\n\n## Submitting or Requesting an Issue/Enhancement\n\n### Best Practices for reporting or requesting for Issues/Enhancements:\n  - Before you submit an issue, please search , maybe an issue for your problem already exists and the discussion might inform you of workarounds readily available.\n  - Follow the Issue Template while creating the issue.\n  - Include Screenshots if any (specially for UI related issues).\n  - For UI enhancements or workflows, include mockups to get a clear idea.\n\n### Best Practices for getting assigned to work on an Issue/Enhancement:\n- If you would like to work on an issue, inform in the issue ticket by commenting on it.\n- Please be sure that you are able to reproduce the issue, before working on it. If not, please ask for clarification by commenting or asking the issue creator.\n\n**Note:** Please do not work on an issue which is already being worked on by another contributor. We don't encourage creating multiple pull requests for the same issue.\n\n## Submitting a Pull Request\n\n### Best Practices to send Pull Requests:\n  - Follow the Pull request template and submit a pull request with a motive for your change and the method you used to achieve it to be merged with the `master` branch.\n  - If you can, please submit the pull request with the fix or improvements including tests.\n  - During review, if you are requested to make changes, rebase your branch and squash the multiple commits into one. Once you push these changes the pull request will edit automatically.\n\n- **IMPORTANT: Don't make any type of `Pull Request` until & unless you get assigned to an `Issue`**\n- Add screenshots or screen captures to your `Pull Request` to help us understand the effects of the changes that are included in your commits.\n\nThank you for your contribution!!\n\n![Line](https://user-images.githubusercontent.com/85225156/171937799-8fc9e255-9889-4642-9c92-6df85fb86e82.gif)\n\n<h2 align=\"center\">Require further assistance? </h1>\n<p align=\"center\">\n  Feel free to explore the basics of Git and Github through the provided articles. Additionally, don't hesitate to reach out to the Project Mentors if you encounter any obstacles: <br>\n  <a href=\"https://help.github.com/en/desktop/contributing-to-projects/creating-an-issue-or-pull-request\">How to create a Issue</a> <br>\n  <a href=\"https://help.github.com/en/github/getting-started-with-github/fork-a-repo\">Forking a Repo</a> <br>\n  <a href=\"https://docs.github.com/en/get-started/quickstart/fork-a-repo#cloning-your-forked-repository\">Cloning a Repo</a> <br>\n  <a href=\"https://opensource.com/article/19/7/create-pull-request-github\">How to create a Pull Request</a> <br>\n  <a href=\"https://docs.github.com/get-started\">Getting started with Git and GitHub</a> <br>\n</p>\n"
  },
  {
    "path": "FAQ.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\">\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/header.css\">\n    <link rel=\"stylesheet\" href=\"../css/footer.css\">\n    <title>FAQ | Flipkart</title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\n\n    <style>\n        body {\n            font-family: Arial, sans-serif;\n            margin: 0;\n            padding: 0;\n            background-color: #f1f3f6;\n        }\n\n        ::-webkit-scrollbar{\n            display: none;\n        }\n\n        header {\n            background-color: #2874f0;\n            padding: 10px 20px;\n        }\n\n        nav .logo {\n            color: #fff;\n            font-size: 24px;\n            text-decoration: none;\n        }\n\n        main {\n            padding: 20px;\n        }\n\n        #header-bluebg .secondNav a {\n    color: #fff !important;\n}\n\nheader-bluebg a, #more_h {\n    text-decoration: none !important;\n    color: #f9fafb !important;\n    font-weight: 600 !important;\n}\n\n        .faq-section {\n            max-width: 800px;\n            margin: 0 auto;\n            background-color: #fff;\n            padding: 20px;\n            border-radius: 8px;\n            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n        }\n\n        .faq-section h1 {\n            text-align: center;\n            margin-bottom: 20px;\n        }\n\n        .faq-container {\n            margin-top: 20px;\n        }\n\n        .faq {\n            border-bottom: 1px solid #e0e0e0;\n            padding: 15px 0;\n        }\n\n        .faq-question {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            cursor: pointer;\n        }\n\n        .faq-question h3 {\n            margin: 0;\n            font-size: 18px;\n            font-weight: bold;\n\n        }\n\n        .faq-toggle {\n            font-size: 24px;\n            color: #2874f0;\n        }\n\n        .faq-answer {\n            max-height: 0;\n            overflow: hidden;\n            transition: max-height 0.3s ease;\n        }\n\n        .faq-answer p {\n            margin: 0;\n            padding: 10px 0;\n        }\n\n        .navbar-brand img {\n      width: 120px;\n    }\n\n    .searchBar_h {\n      display: flex;\n      align-items: center;\n      flex: 1;\n      margin-left: 20px;\n      margin-right: 20px;\n    }\n\n    .searchBar_h input {\n      flex: 1;\n      padding: 5px 10px;\n      border-radius: 5px 0 0 5px;\n      border: 1px solid #ccc;\n    }\n\n    .searchBar_h i {\n      padding: 5px 10px;\n      border-radius: 0 5px 5px 0;\n      background-color: #fff;\n      border: 1px solid #ccc;\n      border-left: 0;\n      cursor: pointer;\n    }\n\n    .btn-primary a {\n      color: #fff;\n      text-decoration: none;\n    }\n\n    .b_a_s, #more_h, .cartLogoandname {\n      margin-left: 10px;\n    }\n\n    .cartLogoandname img {\n      width: 20px;\n    }\n\n    .secondNav .nav-link {\n      display: flex;\n      align-items: center;\n      padding: 5px 10px;\n      color: #000;\n    }\n\n    .secondNav .nav-link i {\n      margin-left: 5px;\n    }\n\n    .navbar-toggler-icon {\n      background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28155,155,155,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n    }\n\n    #more_h {\n      cursor: pointer;\n      position: relative;\n      display: inline-block;\n      padding: 5px 10px;\n      color: #fff;\n    }\n\n    #more-options {\n      display: none;\n      background-color: white;\n      box-shadow: 0 2px 2px rgba(0,0,0,0.15);\n      padding: 10px;\n      position: absolute;\n      z-index: 1;\n      top: 100%;\n      left: 0;\n      min-width: 150px;\n      border: 1px solid #e0e0e0;\n      border-radius: 5px;\n      font-family:'Courier New', Courier, monospace;\n      font-weight: 700;\n    }\n\n    #more_h:hover #more-options {\n      display: block;\n    }\n\n    .option-item {\n      color: #f4c3c3;\n      padding: 5px 0;\n      text-decoration: none;\n      display: block;\n      font-size: 13px;\n      transition: all 0.78s;\n    }\n\n    .option-item:hover {\n      text-decoration: none;\n      background-color: #ccc;\n      transition: all 0.78s;\n    }\n\n    footer{\n            background-color: rgb(6, 23, 46);\n        }\n    </style>\n</head>\n\n<body>\n\n    <div class=\"loader-container\">\n        <div class=\"loader-wrapper\">\n            <div class=\"loader\"></div>\n            <div class=\"logo\" style=\"background-image: url('img/flipkart_lite.png');\"></div>\n        </div>\n    </div>\n    \n     <!-- Header -->\n  <header id=\"header-bluebg\">\n    <nav class=\"container-fluid\" style=\"background-color: #2874F0;\">\n      <div class=\"container\">\n        <nav class=\"navbar bg-body-tertiary\">\n          <div class=\"container-fluid\">\n            <a class=\"navbar-brand\" href=\"../\">\n              <img src=\"../img/flipcartlogo.PNG\" alt=\"Brand Logo\">\n            </a>\n            <div class=\"searchBar_h\">\n              <input id=\"inputField_h\" type=\"text\" autocomplete=\"off\" placeholder=\"Search for products, brands and more\">\n              <i id=\"fetchButton_h\" class=\"bi bi-search btn\"></i>\n            </div>\n            <div>\n              <button class=\"btn btn-primary\"><a href=\"../account/login-signup.html\">Login</a></button>\n            </div>\n            <div class=\"text-white b_a_s\">\n              <a href=\"../sell-online/\">Become a Seller</a>\n            </div>\n            <div class=\"text-white\" id=\"more_h\">\n              More <i class=\"bi bi-chevron-down\"></i>\n              <div id=\"more-options\">\n                <a class=\"option-item\" href=\"../gift-cards/index.html\">Gift-Cards</a>\n                <a class=\"option-item\" href=\"../plus/index.html\">Flipkart+</a>\n                <a class=\"option-item\" href=\"../account/contact.html\">Contact Us</a>\n              </div>\n            </div>\n            <div class=\"text-white cartLogoandname\">\n              <a href=\"../viewcart/\">\n                <img src=\"../img/svg/cart_h.svg\" alt=\"Cart\"><span class=\"cart_h\" style=\"color:white\">Cart</span><span id=\"cartItems\"></span>\n              </a>\n            </div>\n          </div>\n        </nav>\n      </div>\n    </nav>\n\n    <nav class=\"navbar navbar-expand-lg bg-body-tertiary secondNav container-fluid\">\n      <div class=\"container\">\n        <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\"\n          aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n          <span class=\"navbar-toggler-icon\"></span>\n        </button>\n        <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n          <ul class=\"navbar-nav\">\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=electronics\">Electronics <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=appliances\">TVs & Appliances <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=men\">Men <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=women\">Women <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=kids\">Baby & Kids <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=home\">Home & Furniture <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=books\">Sports, Books & More <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=flights\">Flights <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../offerpage/offerportal.html\">Offer Zone <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=grocery\">Grocery <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n          </ul>\n        </div>\n      </div>\n    </nav>\n  </header>\n\n  <!-- JavaScript -->\n  <script src=\"../js/bootstrap.bundle.min.js\"></script>\n    <main>\n        <section class=\"faq-section\">\n            <h1>Frequently Asked Questions</h1>\n            <div class=\"faq-container\">\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>What is Flipkart Clone?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>Flipkart Clone is a replica of the popular e-commerce website Flipkart, created for educational and demonstration purposes.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>How can I place an order?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>To place an order, browse the product categories, select the items you want to purchase, add them to your cart, and proceed to checkout.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>What payment methods are accepted?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>We accept various payment methods including credit/debit cards, net banking, UPI, and cash on delivery (COD).</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>How can I track my order?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>You can track your order status in the 'My Orders' section of your account. You will also receive updates via email and SMS.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>What is the return policy?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>Our return policy allows you to return products within 30 days of delivery for a full refund or replacement. Some items may have different return periods and conditions.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>How do I cancel an order?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>You can cancel your order before it is shipped. Go to the 'My Orders' section, select the order you want to cancel, and click on 'Cancel'.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>What are the delivery charges?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>Delivery charges vary depending on the product, seller, and location. You can see the applicable delivery charges at checkout.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>Can I change my delivery address after placing an order?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>Unfortunately, you cannot change the delivery address once an order is placed. You can cancel the order and place a new one with the correct address.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>What is Flipkart Plus?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>Flipkart Plus is a loyalty program that offers benefits such as free delivery, early access to sales, and more. Members earn SuperCoins on every purchase.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>How do I contact customer support?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>You can contact customer support through the 'Help Center' on our website or by calling our customer service number available on the 'Contact Us' page.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>How do I redeem a gift card?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>To redeem a gift card, enter the gift card code at checkout. The balance will be applied to your order total.</p>\n                    </div>\n                </div>\n                <div class=\"faq\">\n                    <div class=\"faq-question\">\n                        <h3>Is it safe to shop on Flipkart Clone?</h3>\n                        <span class=\"faq-toggle\">+</span>\n                    </div>\n                    <div class=\"faq-answer\">\n                        <p>Yes, it is safe to shop on Flipkart Clone. We use secure payment gateways and encryption to protect your personal and payment information.</p>\n                    </div>\n                </div>\n            </div>\n        </section>\n    </main>\n    <footer >\n        <div class=\"container-fluid footerTop\">\n            <div class=\"row footer1\">\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>ABOUT</h5>\n                        <ul>\n                            <li><a href=\"\">Contact Us</a></li>\n                            <li><a href=\"\">About Us</a></li>\n                            <li><a href=\"\">Careers</a></li>\n                            <li><a href=\"\">Flipkart Stories</a></li>\n                            <li><a href=\"\">Press</a></li>\n                            <li><a href=\"\">Corporate Information</a></li>\n                            <li><i><a href=\"\">Explore Plus</a></i></li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>GROUP COMPANIES</h5>\n                        <ul>\n                            <li><a href=\"https://www.myntra.com/\">Myntra</a></li>\n                            <li><a href=\"https://www.flipkartwholesale.com/\">Flipkart Wholesale</a></li>\n                            <li><a href=\"https://www.cleartrip.com/\">Cleartrip</a></li>\n                            <li><a href=\"https://www.shopsy.in/\">Shopsy</a></li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>HELP</h5>\n                        <ul>\n                            <li><a href=\"\">Payments</a></li>\n                            <li><a href=\"\">Shipping</a></li>\n                            <li><a href=\"\">Cancellation & Returns</a></li>\n                            <li><a href=\"\">FAQ</a></li>\n                            <li><a href=\"\">Report Infringement</a></li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>CONSUMER POLICY</h5>\n                        <ul>\n                            <li><a href=\"\">Cancellation & Returns</a></li>\n                            <li><a href=\"\">Terms Of Use</a></li>\n                            <li><a href=\"\">Security</a></li>\n                            <li><a href=\"../pages/privacypolicy/index.html\">Privacy</a></li>\n                            <li><a href=\"\">Sitemap</a></li>\n                            <li><a href=\"\">Grievance Redressal</a></li>\n                            <li><a href=\"\">EPR Compilance</a></li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6 mailSocial\">\n                    <div class=\"footerI\">\n                        <div class=\"mail\">\n                            <h5>Mail Us:</h5>\n                            <p>\n                                Flipkart Internet Private Limited,\n                                Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                                Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India\n                            </p>\n                        </div>\n                        <div class=\"social\">\n                            <h5>Social</h5>\n                            <ul>\n                                <li><a href=\"https://www.facebook.com/flipkart/\"><img\n                                            src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjkzMzEgMjFDMTcuOTAzNyAyMSAyMS45MzMxIDE2Ljk3MDYgMjEuOTMzMSAxMkMyMS45MzMxIDcuMDI5NDQgMTcuOTAzNyAzIDEyLjkzMzEgM0M3Ljk2MjU0IDMgMy45MzMxMSA3LjAyOTQ0IDMuOTMzMTEgMTJDMy45MzMxMSAxNi45NzA2IDcuOTYyNTQgMjEgMTIuOTMzMSAyMVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE2LjY4MzEgOC4yNUgxNS4xODMxQzE0LjU4NjQgOC4yNSAxNC4wMTQxIDguNDg3MDUgMTMuNTkyMSA4LjkwOTAxQzEzLjE3MDIgOS4zMzA5NyAxMi45MzMxIDkuOTAzMjYgMTIuOTMzMSAxMC41VjIxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05LjkzMzExIDEzLjVIMTUuOTMzMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K\"\n                                            alt=\"\"></a></li>\n                                <li><a href=\"https://twitter.com/Flipkart\"><img\n                                            src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE4M18yMCkiPgo8cGF0aCBkPSJNMTMuNTQzNiAxMC42MTc5TDIwLjA5NzEgM0gxOC41NDQxTDEyLjg1MzcgOS42MTQ0OEw4LjMwODg3IDNIMy4wNjY4OUw5LjkzOTY0IDEzLjAwMjNMMy4wNjY4OSAyMC45OTA4SDQuNjE5OTRMMTAuNjI5MSAxNC4wMDU2TDE1LjQyODggMjAuOTkwOEgyMC42NzA4TDEzLjU0MzIgMTAuNjE3OUgxMy41NDM2Wk0xMS40MTY1IDEzLjA5MDRMMTAuNzIwMiAxMi4wOTQ0TDUuMTc5NTMgNC4xNjkxMUg3LjU2NDkxTDEyLjAzNjMgMTAuNTY1MUwxMi43MzI2IDExLjU2MTFMMTguNTQ0OCAxOS44NzQ4SDE2LjE1OTVMMTEuNDE2NSAxMy4wOTA4VjEzLjA5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE4M18yMCI+CjxyZWN0IHg9IjMuMDY2ODkiIHk9IjMiIHdpZHRoPSIxNy42MDM5IiBoZWlnaHQ9IjE4IiByeD0iMC4yIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=\"\n                                            alt=\"\"></a></li>\n                                <li><a href=\"https://www.youtube.com/flipkart\"><img\n                                            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/YoutubeLogo-8425c4.svg\"\n                                            alt=\"\"></a></li>\n\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>Registered Office Address:</h5>\n                        <p>Flipkart Internet Private Limited,\n                            Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                            Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>\n                        <p>CIN : U51109KA2012PTC066107</p>\n                        <P>Telephone: <a class=\"text-primary\" href=\"tel:044-45614700\"> 044-45614700 </a>\n                            / <a\n                            class=\"text-primary\" href=\"tel:044-67415800\"> 044-67415800\n                              </a>\n                        </P>\n                    </div>\n                </div>\n            </div>\n        </div>\n\n        <div class=\"container-fluid footerEnd\">\n            <div class=\"row align-items-center\" style=\"display: flex; width: 100vw; flex-wrap: wrap;\">\n                <div class=\"col-auto\">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/sell-image-9de8ef.svg\"\n                        alt=\"Become a Seller\" width=\"13\" height=\"12\">\n                    <a href=\"https://seller.flipkart.com/?utm_source=fkwebsite&amp;utm_medium=websitedirect\"\n                        aria-label=\"Become a Seller\"><span>Become a Seller</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/advertise-image-866c0b.svg\"\n                        alt=\"Advertise\" width=\"14\" height=\"14\">\n                    <a href=\"https://brands.flipkart.com\" aria-label=\"Advertise\"><span>Advertise</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/gift-cards-image-d7ff24.svg\"\n                        alt=\"Gift Cards\" width=\"13\" height=\"13\">\n                    <a href=\"https://www.flipkart.com/the-gift-card-store?otracker=${otracker}_footer_navlinks\"\n                        aria-label=\"Gift Cards\"><span>Gift Cards</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/help-centre-image-c4ace8.svg\"\n                        alt=\"Help Center\" width=\"13\" height=\"13\">\n                    <a href=\"https://www.flipkart.com/helpcentre?otracker=${otracker}_footer_navlinks\"\n                        aria-label=\"Help Center\"><span>Help Center</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <span>© 2007-2024 <span>Flipkart.com</span></span>\n                </div>\n                <div class=\"col-auto \">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/payment-method-c454fb.svg\"\n                        class=\"pCGSTEF\" alt=\"Payment methods\">\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script>\n      document.querySelectorAll('.faq-question').forEach(item => {\n    item.addEventListener('click', () => {\n        const faqAnswer = item.nextElementSibling;\n        const faqToggle = item.querySelector('.faq-toggle');\n        const isOpen = faqAnswer.style.maxHeight;\n\n        // Close all open FAQ answers\n        document.querySelectorAll('.faq-answer').forEach(answer => {\n            answer.style.maxHeight = null;\n            answer.previousElementSibling.querySelector('.faq-toggle').textContent = '+';\n        });\n\n        // Toggle the clicked FAQ answer\n        if (!isOpen) {\n            faqAnswer.style.maxHeight = faqAnswer.scrollHeight + 'px';\n            faqToggle.textContent = '-';\n        }\n    });\n});\n\n\n    </script>\n</body>\n\n</html>"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Arghadip Manna\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Learn.md",
    "content": "If you would like to contribute code to the project, please follow these steps:\n\n-  Step 1: [Fork](https://github.com/DSC-JSS-NOIDA/blogzen) the repo first\n\n-  Step 2: Go to your Git terminal and clone it on your machine.\n   ```\n   git clone https://github.com/<your_github_username>/UMatter.git\n   ```\n-  Step 3: Add an upstream link to the main branch in your cloned repo\n   ```\n   git remote add upstream https://github.com/MonalikaPatnaik/UMatter.git\n   ```\n-  Step 4: Keep your cloned repository up to date by pulling from upstream. This will help you avoid merge conflicts while committing new changes.\n   ```\n   git pull upstream main\n   ```\n-  Step 5: Create your feature branch (This is a necessary step, so don't skip it)\n   ```\n   git checkout -b <feature-name>\n   ```\n-  Step 6: Track and stage your changes.\n\n   ```\n    # Track the changes\n    git status\n\n    # Add changes to Index\n    git add . or git add <file_name>\n   ```\n\n-  Step 7: Commit your changes (Write commit message as \"Small Message\")\n   ```\n   git commit -m \"Write a meaningful but small commit message\"\n   ```\n-  Step 8: Push the changes for review\n   ```\n   git push -u origin <branch-name>\n   ```\n-  Step 9: Create a pull request on GitHub. (Don't just hit the create a pull request button; you must write a PR message to clarify why and what you are contributing).\n"
  },
  {
    "path": "Licensing.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\">\n  <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/header.css\">\n  <link rel=\"stylesheet\" href=\"../css/footer.css\">\n  <title>Licensing| Flipkart</title>\n  <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\n\n  <style>\n    body {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n      background-color: #f1f3f6;\n    }\n\n    ::-webkit-scrollbar {\n      display: none;\n    }\n\n    header {\n      background-color: #2874f0;\n      padding: 10px 20px;\n    }\n\n    nav .logo {\n      color: #fff;\n      font-size: 24px;\n      text-decoration: none;\n    }\n\n    #header-bluebg .secondNav a {\n      color: #fff !important;\n    }\n\n    header-bluebg a,\n    #more_h {\n      text-decoration: none !important;\n      color: #f9fafb !important;\n      font-weight: 600 !important;\n    }\n\n    .faq-section {\n      max-width: 800px;\n      margin: 0 auto;\n      background-color: #fff;\n      padding: 20px;\n      border-radius: 8px;\n      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n    }\n\n    .faq-section h1 {\n      text-align: center;\n      margin-bottom: 20px;\n    }\n\n    .faq-container {\n      margin-top: 20px;\n    }\n\n    .faq {\n      border-bottom: 1px solid #e0e0e0;\n      padding: 15px 0;\n    }\n\n    .faq-question {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      cursor: pointer;\n    }\n\n    .faq-question h3 {\n      margin: 0;\n      font-size: 18px;\n      font-weight: bold;\n\n    }\n\n    .faq-toggle {\n      font-size: 24px;\n      color: #2874f0;\n    }\n\n    .faq-answer {\n      max-height: 0;\n      overflow: hidden;\n      transition: max-height 0.3s ease;\n    }\n\n    .faq-answer p {\n      margin: 0;\n      padding: 10px 0;\n    }\n\n    .navbar-brand img {\n      width: 120px;\n    }\n\n    .searchBar_h {\n      display: flex;\n      align-items: center;\n      flex: 1;\n      margin-left: 20px;\n      margin-right: 20px;\n    }\n\n    .searchBar_h input {\n      flex: 1;\n      padding: 5px 10px;\n      border-radius: 5px 0 0 5px;\n      border: 1px solid #ccc;\n    }\n\n    .searchBar_h i {\n      padding: 5px 10px;\n      border-radius: 0 5px 5px 0;\n      background-color: #fff;\n      border: 1px solid #ccc;\n      border-left: 0;\n      cursor: pointer;\n    }\n\n    .btn-primary a {\n      color: #fff;\n      text-decoration: none;\n    }\n\n    .b_a_s,\n    #more_h,\n    .cartLogoandname {\n      margin-left: 10px;\n    }\n\n    .cartLogoandname img {\n      width: 20px;\n    }\n\n    .secondNav .nav-link {\n      display: flex;\n      align-items: center;\n      padding: 5px 10px;\n      color: #000;\n    }\n\n    .secondNav .nav-link i {\n      margin-left: 5px;\n    }\n\n    .navbar-toggler-icon {\n      background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28155,155,155,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n    }\n\n    #more_h {\n      cursor: pointer;\n      position: relative;\n      display: inline-block;\n      padding: 5px 10px;\n      color: #fff;\n    }\n\n    #more-options {\n      display: none;\n      background-color: white;\n      box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);\n      padding: 10px;\n      position: absolute;\n      z-index: 1;\n      top: 100%;\n      left: 0;\n      min-width: 150px;\n      border: 1px solid #e0e0e0;\n      border-radius: 5px;\n      font-family: 'Courier New', Courier, monospace;\n      font-weight: 700;\n    }\n\n    #more_h:hover #more-options {\n      display: block;\n    }\n\n    .option-item {\n      color: #f4c3c3;\n      padding: 5px 0;\n      text-decoration: none;\n      display: block;\n      font-size: 13px;\n      transition: all 0.78s;\n    }\n\n    .option-item:hover {\n      text-decoration: none;\n      background-color: #ccc;\n      transition: all 0.78s;\n    }\n\n    main {\n      padding: 20px;\n      line-height: 1.6;\n      background-color: #fff;\n      border-radius: 8px;\n      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n      max-width: 800px;\n      margin: 20px auto;\n    }\n\n    .legal-heading {\n      font-size: 24px;\n      color: #2874f0;\n      margin-bottom: 15px;\n      font-weight: bold;\n    }\n\n    .legal-tagline {\n      font-size: 18px;\n      color: #555;\n      margin-bottom: 25px;\n      font-weight: 500;\n    }\n\n    .legal-para {\n      margin-bottom: 20px;\n      font-size: 16px;\n      color: #666;\n      line-height: 1.8;\n    }\n\n    footer {\n      background-color: rgb(6, 23, 46);\n    }\n  </style>\n</head>\n\n<body>\n\n  <div class=\"loader-container\">\n    <div class=\"loader-wrapper\">\n      <div class=\"loader\"></div>\n      <div class=\"logo\" style=\"background-image: url('img/flipkart_lite.png');\"></div>\n    </div>\n  </div>\n\n  <!-- Header -->\n  <header id=\"header-bluebg\">\n    <nav class=\"container-fluid\" style=\"background-color: #2874F0;\">\n      <div class=\"container\">\n        <nav class=\"navbar bg-body-tertiary\">\n          <div class=\"container-fluid\">\n            <a class=\"navbar-brand\" href=\"../\">\n              <img src=\"../img/flipcartlogo.PNG\" alt=\"Brand Logo\">\n            </a>\n            <div class=\"searchBar_h\">\n              <input id=\"inputField_h\" type=\"text\" autocomplete=\"off\"\n                placeholder=\"Search for products, brands and more\">\n              <i id=\"fetchButton_h\" class=\"bi bi-search btn\"></i>\n            </div>\n            <div>\n              <button class=\"btn btn-primary\"><a href=\"../account/login-signup.html\">Login</a></button>\n            </div>\n            <div class=\"text-white b_a_s\">\n              <a href=\"../sell-online/\">Become a Seller</a>\n            </div>\n            <div class=\"text-white\" id=\"more_h\">\n              More <i class=\"bi bi-chevron-down\"></i>\n              <div id=\"more-options\">\n                <a class=\"option-item\" href=\"../gift-cards/index.html\">Gift-Cards</a>\n                <a class=\"option-item\" href=\"../plus/index.html\">Flipkart+</a>\n                <a class=\"option-item\" href=\"../account/contact.html\">Contact Us</a>\n              </div>\n            </div>\n            <div class=\"text-white cartLogoandname\">\n              <a href=\"../viewcart/\">\n                <img src=\"../img/svg/cart_h.svg\" alt=\"Cart\"><span class=\"cart_h\" style=\"color:white\">Cart</span><span\n                  id=\"cartItems\"></span>\n              </a>\n            </div>\n          </div>\n        </nav>\n      </div>\n    </nav>\n\n    <nav class=\"navbar navbar-expand-lg bg-body-tertiary secondNav container-fluid\">\n      <div class=\"container\">\n        <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\"\n          aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n          <span class=\"navbar-toggler-icon\"></span>\n        </button>\n        <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n          <ul class=\"navbar-nav\">\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=electronics\">Electronics <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=appliances\">TVs & Appliances <i\n                  class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=men\">Men <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=women\">Women <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=kids\">Baby & Kids <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=home\">Home & Furniture <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=books\">Sports, Books & More <i\n                  class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=flights\">Flights <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../offerpage/offerportal.html\">Offer Zone <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=grocery\">Grocery <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n          </ul>\n        </div>\n      </div>\n    </nav>\n  </header>\n\n  <!-- JavaScript -->\n  <script src=\"../js/bootstrap.bundle.min.js\"></script>\n  <main>\n    <h2 class=\"legal-heading\">MIT License</h2>\n    <p class=\"legal-tagline\">Copyright (c) 2024 Arghadip Manna</p>\n    <p class=\"legal-para\">\n      Permission is hereby granted, free of charge, to any person obtaining a copy\n      of this software and associated documentation files (the \"Software\"), to deal\n      in the Software without restriction, including without limitation the rights\n      to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n      copies of the Software,<br> to permit persons to whom the Software is\n      furnished to do so, subject to the following conditions:\n    </p>\n    <p class=\"legal-para\">\n      The above copyright notice and this permission notice shall be included in all\n      copies or substantial portions of the Software.\n    </p>\n    <p class=\"legal-para\">\n      THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n      IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n      FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. <br> IN NO EVENT SHALL THE\n      AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n      LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n      OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n      SOFTWARE.\n    </p>\n  </main>\n  <footer>\n    <div class=\"container-fluid footerTop\">\n      <div class=\"row footer1\">\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>ABOUT</h5>\n            <ul>\n              <li><a href=\"\">Contact Us</a></li>\n              <li><a href=\"\">About Us</a></li>\n              <li><a href=\"\">Careers</a></li>\n              <li><a href=\"\">Flipkart Stories</a></li>\n              <li><a href=\"\">Press</a></li>\n              <li><a href=\"\">Corporate Information</a></li>\n              <li><i><a href=\"\">Explore Plus</a></i></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>GROUP COMPANIES</h5>\n            <ul>\n              <li><a href=\"https://www.myntra.com/\">Myntra</a></li>\n              <li><a href=\"https://www.flipkartwholesale.com/\">Flipkart Wholesale</a></li>\n              <li><a href=\"https://www.cleartrip.com/\">Cleartrip</a></li>\n              <li><a href=\"https://www.shopsy.in/\">Shopsy</a></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>HELP</h5>\n            <ul>\n              <li><a href=\"\">Payments</a></li>\n              <li><a href=\"\">Shipping</a></li>\n              <li><a href=\"\">Cancellation & Returns</a></li>\n              <li><a href=\"\">FAQ</a></li>\n              <li><a href=\"\">Report Infringement</a></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>CONSUMER POLICY</h5>\n            <ul>\n              <li><a href=\"\">Cancellation & Returns</a></li>\n              <li><a href=\"\">Terms Of Use</a></li>\n              <li><a href=\"\">Security</a></li>\n              <li><a href=\"../pages/privacypolicy/index.html\">Privacy</a></li>\n              <li><a href=\"\">Sitemap</a></li>\n              <li><a href=\"\">Grievance Redressal</a></li>\n              <li><a href=\"\">EPR Compilance</a></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6 mailSocial\">\n          <div class=\"footerI\">\n            <div class=\"mail\">\n              <h5>Mail Us:</h5>\n              <p>\n                Flipkart Internet Private Limited,\n                Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India\n              </p>\n            </div>\n            <div class=\"social\">\n              <h5>Social</h5>\n              <ul>\n                <li><a href=\"https://www.facebook.com/flipkart/\"><img\n                      src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjkzMzEgMjFDMTcuOTAzNyAyMSAyMS45MzMxIDE2Ljk3MDYgMjEuOTMzMSAxMkMyMS45MzMxIDcuMDI5NDQgMTcuOTAzNyAzIDEyLjkzMzEgM0M3Ljk2MjU0IDMgMy45MzMxMSA3LjAyOTQ0IDMuOTMzMTEgMTJDMy45MzMxMSAxNi45NzA2IDcuOTYyNTQgMjEgMTIuOTMzMSAyMVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE2LjY4MzEgOC4yNUgxNS4xODMxQzE0LjU4NjQgOC4yNSAxNC4wMTQxIDguNDg3MDUgMTMuNTkyMSA4LjkwOTAxQzEzLjE3MDIgOS4zMzA5NyAxMi45MzMxIDkuOTAzMjYgMTIuOTMzMSAxMC41VjIxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05LjkzMzExIDEzLjVIMTUuOTMzMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K\"\n                      alt=\"\"></a></li>\n                <li><a href=\"https://twitter.com/Flipkart\"><img\n                      src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE4M18yMCkiPgo8cGF0aCBkPSJNMTMuNTQzNiAxMC42MTc5TDIwLjA5NzEgM0gxOC41NDQxTDEyLjg1MzcgOS42MTQ0OEw4LjMwODg3IDNIMy4wNjY4OUw5LjkzOTY0IDEzLjAwMjNMMy4wNjY4OSAyMC45OTA4SDQuNjE5OTRMMTAuNjI5MSAxNC4wMDU2TDE1LjQyODggMjAuOTkwOEgyMC42NzA4TDEzLjU0MzIgMTAuNjE3OUgxMy41NDM2Wk0xMS40MTY1IDEzLjA5MDRMMTAuNzIwMiAxMi4wOTQ0TDUuMTc5NTMgNC4xNjkxMUg3LjU2NDkxTDEyLjAzNjMgMTAuNTY1MUwxMi43MzI2IDExLjU2MTFMMTguNTQ0OCAxOS44NzQ4SDE2LjE1OTVMMTEuNDE2NSAxMy4wOTA4VjEzLjA5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE4M18yMCI+CjxyZWN0IHg9IjMuMDY2ODkiIHk9IjMiIHdpZHRoPSIxNy42MDM5IiBoZWlnaHQ9IjE4IiByeD0iMC4yIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=\"\n                      alt=\"\"></a></li>\n                <li><a href=\"https://www.youtube.com/flipkart\"><img\n                      src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/YoutubeLogo-8425c4.svg\"\n                      alt=\"\"></a></li>\n\n              </ul>\n            </div>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>Registered Office Address:</h5>\n            <p>Flipkart Internet Private Limited,\n              Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n              Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>\n            <p>CIN : U51109KA2012PTC066107</p>\n            <P>Telephone: <a class=\"text-primary\" href=\"tel:044-45614700\"> 044-45614700 </a>\n              / <a class=\"text-primary\" href=\"tel:044-67415800\"> 044-67415800\n              </a>\n            </P>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"container-fluid footerEnd\">\n      <div class=\"row align-items-center\" style=\"display: flex; width: 100vw; flex-wrap: wrap;\">\n        <div class=\"col-auto\">\n          <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/sell-image-9de8ef.svg\"\n            alt=\"Become a Seller\" width=\"13\" height=\"12\">\n          <a href=\"https://seller.flipkart.com/?utm_source=fkwebsite&amp;utm_medium=websitedirect\"\n            aria-label=\"Become a Seller\"><span>Become a Seller</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/advertise-image-866c0b.svg\"\n            alt=\"Advertise\" width=\"14\" height=\"14\">\n          <a href=\"https://brands.flipkart.com\" aria-label=\"Advertise\"><span>Advertise</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/gift-cards-image-d7ff24.svg\"\n            alt=\"Gift Cards\" width=\"13\" height=\"13\">\n          <a href=\"https://www.flipkart.com/the-gift-card-store?otracker=${otracker}_footer_navlinks\"\n            aria-label=\"Gift Cards\"><span>Gift Cards</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/help-centre-image-c4ace8.svg\"\n            alt=\"Help Center\" width=\"13\" height=\"13\">\n          <a href=\"https://www.flipkart.com/helpcentre?otracker=${otracker}_footer_navlinks\"\n            aria-label=\"Help Center\"><span>Help Center</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <span>© 2007-2024 <span>Flipkart.com</span></span>\n        </div>\n        <div class=\"col-auto \">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/payment-method-c454fb.svg\"\n            class=\"pCGSTEF\" alt=\"Payment methods\">\n        </div>\n      </div>\n    </div>\n  </footer>\n  <script>\n    document.querySelectorAll('.faq-question').forEach(item => {\n      item.addEventListener('click', () => {\n        const faqAnswer = item.nextElementSibling;\n        const faqToggle = item.querySelector('.faq-toggle');\n        const isOpen = faqAnswer.style.maxHeight;\n\n        // Close all open FAQ answers\n        document.querySelectorAll('.faq-answer').forEach(answer => {\n          answer.style.maxHeight = null;\n          answer.previousElementSibling.querySelector('.faq-toggle').textContent = '+';\n        });\n\n        // Toggle the clicked FAQ answer\n        if (!isOpen) {\n          faqAnswer.style.maxHeight = faqAnswer.scrollHeight + 'px';\n          faqToggle.textContent = '-';\n        }\n      });\n    });\n\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "README.md",
    "content": "\n<div align=\"center\">\n  <h1 style=\"font-size: 36px; font-weight: bold;\">Flipkart_Clone</h1>\n  \n</div>\n\n<div align=\"center\">\n <p>\n\n[![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/)\n![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)\n![GitHub contributors](https://img.shields.io/github/contributors/arghadipmanna101/Flipkart_Clone)\n![GitHub repo size](https://img.shields.io/github/repo-size/arghadipmanna101/Flipkart_Clone)\n![Github](https://img.shields.io/github/license/arghadipmanna101/Flipkart_Clone)\n </p>\n</div>\n\n<table align=\"center\">\n    <thead align=\"center\">\n        <tr border: 1px;>\n            <td><b>🌟 Stars</b></td>\n            <td><b>🍴 Forks</b></td>\n            <td><b>🐛 Issues</b></td>\n            <td><b>   Closed Issues</b></td>\n            <td><b>🔔 Open PRs</b></td>\n            <td><b>🔕 Close PRs</b></td>\n            <td><b> last commit</b></td>\n        </tr>\n     </thead>\n    <tbody>\n         <tr>\n            <td><img alt=\"Stars\" src=\"https://img.shields.io/github/stars/arghadipmanna101/Flipkart_Clone\"/></td>\n             <td><img alt=\"Forks\" src=\"https://img.shields.io/github/forks/arghadipmanna101/Flipkart_Clone?style=flat&logo=github\"/></td>\n            <td><img alt=\"Issues\" src=\"https://img.shields.io/github/issues/arghadipmanna101/Flipkart_Clone?style=flat&logo=github\"/></td>\n            <td><img alt=\"closed issues\" src=\"https://img.shields.io/github/issues-closed-raw/arghadipmanna101/Flipkart_Clone\"</td>\n            <td><img alt=\"Open Pull Requests\" src=\"https://img.shields.io/github/issues-pr/arghadipmanna101/Flipkart_Clone?style=flat&logo=github\"/></td>\n            <td><img alt=\"Close Pull Requests\" src=\"https://img.shields.io/github/issues-pr-closed/arghadipmanna101/Flipkart_Clone\"/></td>\n           <td><img alt=\"last commit\" src=\"https://img.shields.io/github/last-commit/arghadipmanna101/Flipkart_Clone\"/></td>\n        </tr>\n    </tbody>\n</table>\n</div>\n\n\n\n<!-- Open Source Programs -->\n  <div>\n    <h2><img src=\"https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/Hand%20gestures/Flexed%20Biceps.png?raw=true\" width=\"35\" height=\"35\" >Open Source Programs</h2>\n  </div>\n\n  <!--This project is a part of GirlScript Summer of code. We welcome contibutions from the community to help improve the project Flipkart_Clone.-->\n\n  <table>\n\n   <tr>\n      <th>Event Logo</th>\n      <th>Event Name</th>\n      <th>Event Description</th>\n   </tr>\n   <tr>\n      <td><img src=\"https://user-images.githubusercontent.com/63473496/153487849-4f094c16-d21c-463e-9971-98a8af7ba372.png\" width=\"200\" height=\"auto\" loading=\"lazy\" alt=\"GSSoC 24\"/></td>\n      <td>GirlScript Summer of Code 2024</td>\n      <td>GirlScript Summer of Code is a three-month-long Open Source Program conducted every summer by GirlScript Foundation. It is an initiative to bring more beginners to Open-Source Software Development.</td>\n   </tr>\n\n</table>\n\n<hr>\n  \n<!--![gssoc](https://github.com/d1vyadharsh1n1/Flipkart_Clone/assets/146218077/dd4ffa29-2d52-47ad-9967-d0d6f8aff717)-->\n\n<div style=\"text-align:center;\">\n <img src=\"https://cdn.dribbble.com/users/1980856/screenshots/4760116/media/5021b87fb97e90b8f153a4480ffc615e.gif\" alt=\"Flipkart Logo Animation\" width=\"3800\" height=\"450\">\n</div>\n\n<!-- Tech stack -->\n<div>\n<h2><img src=\"https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Travel%20and%20places/High%20Voltage.png\" alt=\"High Voltage\" width=\"35\" height=\"35\" />Tech Stack</h2>\n</div>\n\n<div>\n<a href=\"https://developer.mozilla.org/en-US/docs/Glossary/HTML\"><img src=\"https://img.shields.io/badge/HTML-E34F26.svg?style=for-the-badge&logo=HTML&logoColor=white\"></a>\n<a href=\"https://developer.mozilla.org/en-US/docs/Web/CSS\"><img src=\"https://img.shields.io/badge/CSS-1572B6.svg?style=for-the-badge&logo=CSS&logoColor=black\"></a>\n<a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript\"><img src=\"https://img.shields.io/badge/JavaScript-F7DF1E.svg?style=for-the-badge&logo=JavaScript&logoColor=black\"></a>\n</div>\n\n<!-- Lets get started -->\n<div>\n<h2><img src = \"https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Travel%20and%20places/Rocket.png\" width=\"35\" height=\"35\"> Let's Get Started</h2>\n</div>\n\n<p>Welcome to the Flipkart_Clone! If you're interested in contributing, here's how you can get started:</p>\n\n1. **Fork the repository:** Click on the \"Fork\" button at the top-right corner of this page. This will create a copy of this repository in your account.\n\n2. **Clone the repository:** After forking, clone the repository to your local machine using the following command in your terminal:\n\n   ```bash\n   git clone https://github.com/<your-github-username>/Flipkart_Clone.git\n   ```\n\n3. **Change the directory:** Change to the repository directory on your computer (if you are not already there):\n```bash\n   cd .\\Flipkart_Clone\\\n   ```\n   \n4. **Add a remote upstream:** Set up a remote upstream to the original repository by running the following command in your terminal:\n\n   ```bash\n   git remote add upstream https://github.com/<original-owner>/Flipkart_Clone/\n   ```\n\n5. **Create a new branch:** Switch to a new branch for your contributions:\n\n   ```bash\n   git switch -c <your-branch-name>\n   ```\n6. **Setup Environment:** \n   ```bash\n      npm install\n   ```\n   \n7. **To preview:** Go to index.html and \"Go Live\" to view in localhost\n\n\n8. **Make changes:** Deployment failed with the following error:\n```bash\n   Resource is limited - try again in 2 hours (more than 100, code: \"api-deployments-free-per-day\").\n```\n\n\n7. **Add your changes:** Stage your changes for commit:\n\n   ```bash\n   git add <changed-file1> <changed-file2> ...\n   ```\n   or simply run\n      ```bash\n   git add .\n   ```\n\n\n8. **Commit your changes:** Commit your changes with a descriptive message:\n\n   ```bash\n   git commit -m \"<your-commit-message>\"\n   ```\n\n9. **Push your changes:** Push your changes to the forked repository:\n\n   ```bash\n   git push -u origin <your-branch-name>\n   ```\n\n10. **Create a Pull Request:** Go to the GitHub repository, select your branch, and click on the \"New pull request\" button to create a new pull request.\n\n### Alternatively contribute using GitHub Desktop\n\n1. **Open GitHub Desktop:**\n   Launch GitHub Desktop and log in to your GitHub account if you haven't already.\n\n2. **Clone the Repository:**\n   - If you haven't cloned the Flipkart_Clone repository yet, you can do so by clicking on the \"File\" menu and selecting \"Clone Repository.\"\n   - Choose the Flipkart_Clone repository from the list of repositories on GitHub and clone it to your local machine.\n\n3. **Switch to the Correct Branch:**\n   - Ensure you are on the branch that you want to submit a pull request for.\n   - If you need to switch branches, you can do so by clicking on the \"Current Branch\" dropdown menu and selecting the desired branch.\n\n4. **Make Changes:**\n   Make your changes to the code or files in the repository using your preferred code editor.\n\n5. **Commit Changes:**\n   - In GitHub Desktop, you'll see a list of the files you've changed. Check the box next to each file you want to include in the commit.\n   - Enter a summary and description for your changes in the \"Summary\" and \"Description\" fields, respectively. Click the \"Commit to <branch-name>\" button to commit your changes to the local branch.\n\n6. **Push Changes to GitHub:**\n   After committing your changes, click the \"Push origin\" button in the top right corner of GitHub Desktop to push your changes to your forked repository on GitHub.\n\n7. **Create a Pull Request:**\n  - Go to the GitHub website and navigate to your fork of the Flipkart_Clone repository.\n  - You should see a button to \"Compare & pull request\" between your fork and the original repository. Click on it.\n\n8. **Review and Submit:**\n   - On the pull request page, review your changes and add any additional information, such as a title and description, that you want to include with your pull request.\n   - Once you're satisfied, click the \"Create pull request\" button to submit your pull request.\n\n9. **Wait for Review:**\n    Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the Flipkart_Clone repository.\n\n⭐️ Support the Project\nIf you find this project helpful, please consider giving it a star on GitHub! Your support helps to grow the project and reach more contributors.\n\n\n <!-- screenshots -->\n  <div>\n    <h2>Screenshot <img src =\"Screenshot 1.png\"> <img src=\"Screenshot (425).png\"></h2>\n  </div>\n\n\n\n\n\n\n\n<!-- Code of conduct -->\n<div>\n<h2><img src = \"https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Hand%20gestures/Handshake.png\" width=\"35\" height=\"35\"> Code of Conduct</h2>\n</div>\n\nPlease note that this project is released with a [Contributor Code of Conduct](./CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.\n\n<!-- License -->\n<div>\n<h2><img src = \"https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Objects/Page%20with%20Curl.png\" width=\"35\" height=\"35\"> License</h2>\n</div>\n\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\nThis project is licensed under the [MIT License](./LICENSE).\n\n\n  <!-- Cotributors -->\n<div>\n  <h2><img src=\"https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Smilies/Red%20Heart.png\" width=\"35\" height=\"35\"> Contributors</h2>\n</div>\n\nThank you for contributing to our project! We appreciate your help in making Flipkart_Clone even better.😃\n\n<center>\n<a href=\"https://github.com/arghadipmanna101/Flipkart_Clone/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=arghadipmanna101/Flipkart_Clone\" />\n</a>\n</center>\n"
  },
  {
    "path": "TermsOfUse.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\">\n  <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/header.css\">\n  <link rel=\"stylesheet\" href=\"../css/footer.css\">\n  <title>Terms of Use | Flipkart</title>\n  <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\n\n  <style>\n    body {\n      font-family: Arial, sans-serif;\n      margin: 0;\n      padding: 0;\n      background-color: #f1f3f6;\n    }\n\n    ::-webkit-scrollbar {\n      display: none;\n    }\n\n    header {\n      background-color: #2874f0;\n      padding: 10px 20px;\n    }\n\n    nav .logo {\n      color: #fff;\n      font-size: 24px;\n      text-decoration: none;\n    }\n\n    #header-bluebg .secondNav a {\n      color: #fff !important;\n    }\n\n    header-bluebg a,\n    #more_h {\n      text-decoration: none !important;\n      color: #f9fafb !important;\n      font-weight: 600 !important;\n    }\n\n    .faq-section {\n      max-width: 800px;\n      margin: 0 auto;\n      background-color: #fff;\n      padding: 20px;\n      border-radius: 8px;\n      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n    }\n\n    .faq-section h1 {\n      text-align: center;\n      margin-bottom: 20px;\n    }\n\n    .faq-container {\n      margin-top: 20px;\n    }\n\n    .faq {\n      border-bottom: 1px solid #e0e0e0;\n      padding: 15px 0;\n    }\n\n    .faq-question {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      cursor: pointer;\n    }\n\n    .faq-question h3 {\n      margin: 0;\n      font-size: 18px;\n      font-weight: bold;\n\n    }\n\n    .faq-toggle {\n      font-size: 24px;\n      color: #2874f0;\n    }\n\n    .faq-answer {\n      max-height: 0;\n      overflow: hidden;\n      transition: max-height 0.3s ease;\n    }\n\n    .faq-answer p {\n      margin: 0;\n      padding: 10px 0;\n    }\n\n    .navbar-brand img {\n      width: 120px;\n    }\n\n    .searchBar_h {\n      display: flex;\n      align-items: center;\n      flex: 1;\n      margin-left: 20px;\n      margin-right: 20px;\n    }\n\n    .searchBar_h input {\n      flex: 1;\n      padding: 5px 10px;\n      border-radius: 5px 0 0 5px;\n      border: 1px solid #ccc;\n    }\n\n    .searchBar_h i {\n      padding: 5px 10px;\n      border-radius: 0 5px 5px 0;\n      background-color: #fff;\n      border: 1px solid #ccc;\n      border-left: 0;\n      cursor: pointer;\n    }\n\n    .btn-primary a {\n      color: #fff;\n      text-decoration: none;\n    }\n\n    .b_a_s,\n    #more_h,\n    .cartLogoandname {\n      margin-left: 10px;\n    }\n\n    .cartLogoandname img {\n      width: 20px;\n    }\n\n    .secondNav .nav-link {\n      display: flex;\n      align-items: center;\n      padding: 5px 10px;\n      color: #000;\n    }\n\n    .secondNav .nav-link i {\n      margin-left: 5px;\n    }\n\n    .navbar-toggler-icon {\n      background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28155,155,155,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n    }\n\n    #more_h {\n      cursor: pointer;\n      position: relative;\n      display: inline-block;\n      padding: 5px 10px;\n      color: #fff;\n    }\n\n    #more-options {\n      display: none;\n      background-color: white;\n      box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);\n      padding: 10px;\n      position: absolute;\n      z-index: 1;\n      top: 100%;\n      left: 0;\n      min-width: 150px;\n      border: 1px solid #e0e0e0;\n      border-radius: 5px;\n      font-family: 'Courier New', Courier, monospace;\n      font-weight: 700;\n    }\n\n    #more_h:hover #more-options {\n      display: block;\n    }\n\n    .option-item {\n      color: #f4c3c3;\n      padding: 5px 0;\n      text-decoration: none;\n      display: block;\n      font-size: 13px;\n      transition: all 0.78s;\n    }\n\n    .option-item:hover {\n      text-decoration: none;\n      background-color: #ccc;\n      transition: all 0.78s;\n    }\n\n    /* General Content Styles */\n    .content {\n      max-width: 800px;\n      margin: 20px auto;\n      padding: 20px;\n      background-color: #ffffff;\n      /* White background for content area */\n      border-radius: 8px;\n      /* Rounded corners */\n      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n      /* Light shadow */\n    }\n\n    /* Heading Styles */\n    .content h1,\n    .content h2 {\n      color: #333333;\n      /* Dark text for readability */\n      font-family: 'Roboto', sans-serif;\n      /* Consistent font */\n    }\n\n    .content h1 {\n      font-size: 2rem;\n      margin-bottom: 20px;\n      font-weight: bold;\n      color: #007bff;\n    }\n\n    .content h2 {\n      font-size: 1.5rem;\n      margin-top: 20px;\n      border-bottom: 2px solid #007bff;\n      /* Blue underline for sections */\n      padding-bottom: 5px;\n    }\n\n    /* Paragraph Styles */\n    .content p {\n      font-size: 1rem;\n      color: #555555;\n      /* Slightly lighter text */\n      line-height: 1.6;\n      /* Improved readability */\n      margin-bottom: 15px;\n    }\n\n    /* List Styles */\n    .content ul {\n      list-style-type: disc;\n      padding-left: 20px;\n    }\n\n    .content li {\n      margin-bottom: 10px;\n    }\n\n    .content li strong {\n      color: #007bff;\n      /* Blue color for highlighted text */\n    }\n\n    /* Link Styles */\n    .content a {\n      color: #007bff;\n      /* Blue color for links */\n      text-decoration: none;\n    }\n\n    .content a:hover {\n      text-decoration: underline;\n    }\n\n    /* Contact Information Styles */\n    .content .contact-info {\n      margin-top: 30px;\n    }\n\n    .content .contact-info p {\n      margin-bottom: 10px;\n    }\n\n    /* Responsive Styles */\n    @media (max-width: 768px) {\n      .content {\n        padding: 15px;\n      }\n\n      .content h1 {\n        font-size: 1.75rem;\n      }\n\n      .content h2 {\n        font-size: 1.25rem;\n      }\n\n      .content p {\n        font-size: 0.9rem;\n      }\n    }\n\n    footer {\n      background-color: rgb(6, 23, 46);\n    }\n  </style>\n</head>\n\n<body>\n\n  <div class=\"loader-container\">\n    <div class=\"loader-wrapper\">\n      <div class=\"loader\"></div>\n      <div class=\"logo\" style=\"background-image: url('img/flipkart_lite.png');\"></div>\n    </div>\n  </div>\n\n  <!-- Header -->\n  <header id=\"header-bluebg\">\n    <nav class=\"container-fluid\" style=\"background-color: #2874F0;\">\n      <div class=\"container\">\n        <nav class=\"navbar bg-body-tertiary\">\n          <div class=\"container-fluid\">\n            <a class=\"navbar-brand\" href=\"../\">\n              <img src=\"../img/flipcartlogo.PNG\" alt=\"Brand Logo\">\n            </a>\n            <div class=\"searchBar_h\">\n              <input id=\"inputField_h\" type=\"text\" autocomplete=\"off\"\n                placeholder=\"Search for products, brands and more\">\n              <i id=\"fetchButton_h\" class=\"bi bi-search btn\"></i>\n            </div>\n            <div>\n              <button class=\"btn btn-primary\"><a href=\"../account/login-signup.html\">Login</a></button>\n            </div>\n            <div class=\"text-white b_a_s\">\n              <a href=\"../sell-online/\">Become a Seller</a>\n            </div>\n            <div class=\"text-white\" id=\"more_h\">\n              More <i class=\"bi bi-chevron-down\"></i>\n              <div id=\"more-options\">\n                <a class=\"option-item\" href=\"../gift-cards/index.html\">Gift-Cards</a>\n                <a class=\"option-item\" href=\"../plus/index.html\">Flipkart+</a>\n                <a class=\"option-item\" href=\"../account/contact.html\">Contact Us</a>\n              </div>\n            </div>\n            <div class=\"text-white cartLogoandname\">\n              <a href=\"../viewcart/\">\n                <img src=\"../img/svg/cart_h.svg\" alt=\"Cart\"><span class=\"cart_h\" style=\"color:white\">Cart</span><span\n                  id=\"cartItems\"></span>\n              </a>\n            </div>\n          </div>\n        </nav>\n      </div>\n    </nav>\n\n    <nav class=\"navbar navbar-expand-lg bg-body-tertiary secondNav container-fluid\">\n      <div class=\"container\">\n        <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\"\n          aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n          <span class=\"navbar-toggler-icon\"></span>\n        </button>\n        <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n          <ul class=\"navbar-nav\">\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=electronics\">Electronics <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=appliances\">TVs & Appliances <i\n                  class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=men\">Men <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=women\">Women <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=kids\">Baby & Kids <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=home\">Home & Furniture <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=books\">Sports, Books & More <i\n                  class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=flights\">Flights <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../offerpage/offerportal.html\">Offer Zone <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n            <li class=\"nav-item\">\n              <a class=\"nav-link\" href=\"../search/?query=grocery\">Grocery <i class=\"bi bi-chevron-down\"></i></a>\n            </li>\n          </ul>\n        </div>\n      </div>\n    </nav>\n  </header>\n\n  <!-- JavaScript -->\n  <script src=\"../js/bootstrap.bundle.min.js\"></script>\n\n  <!-- Terms of use -->\n  <!-- Main Content -->\n  <div class=\"content\">\n    <h1>Terms of Use</h1>\n    <p><strong>Effective Date: August 10, 2024</strong></p>\n\n    <p>Welcome to Flipkart! These Terms of Use govern your access to and use of our website, services, and mobile\n      applications (collectively, the \"Services\"). By accessing or using our Services, you agree to comply with and be\n      bound by these Terms of Use. If you do not agree with these Terms of Use, please do not use our Services.</p>\n\n    <h2>1. Acceptance of Terms</h2>\n    <p>By accessing or using the Flipkart website or any of our Services, you agree to these Terms of Use. We may update\n      these Terms of Use from time to time, and your continued use of the Services following any changes indicates your\n      acceptance of the new terms.</p>\n\n    <h2>2. Account Registration</h2>\n    <p>To use certain features of our Services, you may be required to create an account with Flipkart. You agree to\n      provide accurate, current, and complete information during the registration process and to update such information\n      to keep it accurate, current, and complete. You are responsible for safeguarding your account information and for\n      all activities that occur under your account.</p>\n\n    <h2>3. User Conduct</h2>\n    <p>You agree not to engage in any of the following prohibited activities:</p>\n    <ul>\n      <li><strong>Illegal Activities:</strong> Using the Services for any illegal purposes or activities that violate\n        applicable laws or regulations.</li>\n      <li><strong>Harmful Content:</strong> Uploading, posting, or transmitting any content that is harmful, defamatory,\n        obscene, or otherwise objectionable.</li>\n      <li><strong>Misuse of Services:</strong> Attempting to gain unauthorized access to our Services, systems, or\n        networks, or interfering with the functioning of the Services.</li>\n      <li><strong>False Information:</strong> Providing false or misleading information or impersonating any person or\n        entity.</li>\n    </ul>\n\n    <h2>4. Intellectual Property</h2>\n    <p>All content, including but not limited to text, graphics, logos, images, and software, on the Flipkart website is\n      the property of Flipkart or its licensors and is protected by copyright, trademark, and other intellectual\n      property laws. You may not use, reproduce, or distribute any content from the website without prior written\n      permission from Flipkart.</p>\n\n    <h2>5. Product Information and Pricing</h2>\n    <p>Flipkart strives to provide accurate product descriptions and pricing information. However, errors may occur, and\n      we cannot guarantee that product descriptions or prices are error-free. We reserve the right to correct any errors\n      and to update product information and pricing at any time without prior notice.</p>\n\n    <h2>6. Order Processing and Delivery</h2>\n    <p>Orders placed through the Flipkart website are subject to our acceptance. We reserve the right to refuse or\n      cancel any order at our discretion. Delivery times are estimates and may vary based on factors such as product\n      availability, shipping location, and delivery service provider.</p>\n\n    <h2>7. Returns and Refunds</h2>\n    <p>Flipkart offers a return and refund policy for eligible products. Please review our Return Policy for detailed\n      information on how to return products and request refunds.</p>\n\n    <h2>8. Privacy Policy</h2>\n    <p>Your use of our Services is also governed by our Privacy Policy, which outlines how we collect, use, and protect\n      your personal information. Please review our Privacy Policy to understand our practices.</p>\n\n    <h2>9. Third-Party Links</h2>\n    <p>Our Services may contain links to third-party websites or services. We are not responsible for the content or\n      practices of these third parties. Your use of third-party websites or services is at your own risk, and you should\n      review the terms and privacy policies of those sites.</p>\n\n    <h2>10. Limitation of Liability</h2>\n    <p>To the fullest extent permitted by law, Flipkart and its affiliates, officers, directors, employees, and agents\n      will not be liable for any indirect, incidental, special, consequential, or punitive damages arising out of or\n      related to your use of the Services. Our total liability to you for any claim arising out of or relating to these\n      Terms of Use or your use of the Services will not exceed the amount you paid, if any, for access to the Services.\n    </p>\n\n    <h2>11. Indemnification</h2>\n    <p>You agree to indemnify, defend, and hold harmless Flipkart and its affiliates, officers, directors, employees,\n      and agents from any claims, liabilities, damages, losses, or expenses, including legal fees, arising out of or\n      related to your use of the Services, your violation of these Terms of Use, or your violation of any rights of\n      another party.</p>\n\n    <h2>12. Termination</h2>\n    <p>We reserve the right to terminate or suspend your access to the Services at our sole discretion, without prior\n      notice, for any reason, including but not limited to violations of these Terms of Use. Upon termination, your\n      right to use the Services will cease immediately.</p>\n\n    <h2>13. Governing Law</h2>\n    <p>These Terms of Use will be governed by and construed in accordance with the laws of the jurisdiction in which\n      Flipkart operates, without regard to its conflict of law principles. Any disputes arising out of or relating to\n      these Terms of Use or your use of the Services will be resolved exclusively in the courts of that jurisdiction.\n    </p>\n\n    <h2>14. Dispute Resolution</h2>\n    <p>Any disputes, controversies, or claims arising out of or relating to these Terms of Use or the Services will be\n      resolved through binding arbitration in accordance with the rules of the relevant arbitration association. The\n      arbitration will be conducted in the jurisdiction where Flipkart operates.</p>\n\n    <h2>15. Severability</h2>\n    <p>If any provision of these Terms of Use is found to be invalid, illegal, or unenforceable, the remaining\n      provisions will remain in full force and effect. The invalid, illegal, or unenforceable provision will be\n      interpreted to reflect the parties' original intent as closely as possible.</p>\n\n    <h2>16. Entire Agreement</h2>\n    <p>These Terms of Use constitute the entire agreement between you and Flipkart regarding your use of the Services\n      and supersede all prior or contemporaneous agreements and understandings, whether written or oral, relating to the\n      subject matter.</p>\n\n    <h2>17. Contact Us</h2>\n    <p>If you have any questions or concerns about these Terms of Use or our Services, please contact us at:</p>\n    <p>Email: <a href=\"mailto:support@flipkart.com\">support@flipkart.com</a></p>\n    <p>Customer Service: +91-XXXXXXXXXX</p>\n    <p>Address: Flipkart Internet Private Limited, Buildings Alyssa, Begonia & Clove Embassy Tech Village, Outer Ring\n      Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>\n  </div>\n\n  <footer>\n    <div class=\"container-fluid footerTop\">\n      <div class=\"row footer1\">\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>ABOUT</h5>\n            <ul>\n              <li><a href=\"\">Contact Us</a></li>\n              <li><a href=\"\">About Us</a></li>\n              <li><a href=\"\">Careers</a></li>\n              <li><a href=\"\">Flipkart Stories</a></li>\n              <li><a href=\"\">Press</a></li>\n              <li><a href=\"\">Corporate Information</a></li>\n              <li><i><a href=\"\">Explore Plus</a></i></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>GROUP COMPANIES</h5>\n            <ul>\n              <li><a href=\"https://www.myntra.com/\">Myntra</a></li>\n              <li><a href=\"https://www.flipkartwholesale.com/\">Flipkart Wholesale</a></li>\n              <li><a href=\"https://www.cleartrip.com/\">Cleartrip</a></li>\n              <li><a href=\"https://www.shopsy.in/\">Shopsy</a></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>HELP</h5>\n            <ul>\n              <li><a href=\"\">Payments</a></li>\n              <li><a href=\"\">Shipping</a></li>\n              <li><a href=\"\">Cancellation & Returns</a></li>\n              <li><a href=\"\">FAQ</a></li>\n              <li><a href=\"\">Report Infringement</a></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>CONSUMER POLICY</h5>\n            <ul>\n              <li><a href=\"\">Cancellation & Returns</a></li>\n              <li><a href=\"\">Terms Of Use</a></li>\n              <li><a href=\"\">Security</a></li>\n              <li><a href=\"../pages/privacypolicy/index.html\">Privacy</a></li>\n              <li><a href=\"\">Sitemap</a></li>\n              <li><a href=\"\">Grievance Redressal</a></li>\n              <li><a href=\"\">EPR Compilance</a></li>\n            </ul>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6 mailSocial\">\n          <div class=\"footerI\">\n            <div class=\"mail\">\n              <h5>Mail Us:</h5>\n              <p>\n                Flipkart Internet Private Limited,\n                Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India\n              </p>\n            </div>\n            <div class=\"social\">\n              <h5>Social</h5>\n              <ul>\n                <li><a href=\"https://www.facebook.com/flipkart/\"><img\n                      src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjkzMzEgMjFDMTcuOTAzNyAyMSAyMS45MzMxIDE2Ljk3MDYgMjEuOTMzMSAxMkMyMS45MzMxIDcuMDI5NDQgMTcuOTAzNyAzIDEyLjkzMzEgM0M3Ljk2MjU0IDMgMy45MzMxMSA3LjAyOTQ0IDMuOTMzMTEgMTJDMy45MzMxMSAxNi45NzA2IDcuOTYyNTQgMjEgMTIuOTMzMSAyMVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE2LjY4MzEgOC4yNUgxNS4xODMxQzE0LjU4NjQgOC4yNSAxNC4wMTQxIDguNDg3MDUgMTMuNTkyMSA4LjkwOTAxQzEzLjE3MDIgOS4zMzA5NyAxMi45MzMxIDkuOTAzMjYgMTIuOTMzMSAxMC41VjIxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05LjkzMzExIDEzLjVIMTUuOTMzMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K\"\n                      alt=\"\"></a></li>\n                <li><a href=\"https://twitter.com/Flipkart\"><img\n                      src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE4M18yMCkiPgo8cGF0aCBkPSJNMTMuNTQzNiAxMC42MTc5TDIwLjA5NzEgM0gxOC41NDQxTDEyLjg1MzcgOS42MTQ0OEw4LjMwODg3IDNIMy4wNjY4OUw5LjkzOTY0IDEzLjAwMjNMMy4wNjY4OSAyMC45OTA4SDQuNjE5OTRMMTAuNjI5MSAxNC4wMDU2TDE1LjQyODggMjAuOTkwOEgyMC42NzA4TDEzLjU0MzIgMTAuNjE3OUgxMy41NDM2Wk0xMS40MTY1IDEzLjA5MDRMMTAuNzIwMiAxMi4wOTQ0TDUuMTc5NTMgNC4xNjkxMUg3LjU2NDkxTDEyLjAzNjMgMTAuNTY1MUwxMi43MzI2IDExLjU2MTFMMTguNTQ0OCAxOS44NzQ4SDE2LjE1OTVMMTEuNDE2NSAxMy4wOTA4VjEzLjA5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE4M18yMCI+CjxyZWN0IHg9IjMuMDY2ODkiIHk9IjMiIHdpZHRoPSIxNy42MDM5IiBoZWlnaHQ9IjE4IiByeD0iMC4yIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=\"\n                      alt=\"\"></a></li>\n                <li><a href=\"https://www.youtube.com/flipkart\"><img\n                      src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/YoutubeLogo-8425c4.svg\"\n                      alt=\"\"></a></li>\n\n              </ul>\n            </div>\n          </div>\n        </div>\n        <div class=\"col-lg-2 col-md-4 col-sm-6\">\n          <div class=\"footerI\">\n            <h5>Registered Office Address:</h5>\n            <p>Flipkart Internet Private Limited,\n              Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n              Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>\n            <p>CIN : U51109KA2012PTC066107</p>\n            <P>Telephone: <a class=\"text-primary\" href=\"tel:044-45614700\"> 044-45614700 </a>\n              / <a class=\"text-primary\" href=\"tel:044-67415800\"> 044-67415800\n              </a>\n            </P>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"container-fluid footerEnd\">\n      <div class=\"row align-items-center\" style=\"display: flex; width: 100vw; flex-wrap: wrap;\">\n        <div class=\"col-auto\">\n          <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/sell-image-9de8ef.svg\"\n            alt=\"Become a Seller\" width=\"13\" height=\"12\">\n          <a href=\"https://seller.flipkart.com/?utm_source=fkwebsite&amp;utm_medium=websitedirect\"\n            aria-label=\"Become a Seller\"><span>Become a Seller</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/advertise-image-866c0b.svg\"\n            alt=\"Advertise\" width=\"14\" height=\"14\">\n          <a href=\"https://brands.flipkart.com\" aria-label=\"Advertise\"><span>Advertise</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/gift-cards-image-d7ff24.svg\"\n            alt=\"Gift Cards\" width=\"13\" height=\"13\">\n          <a href=\"https://www.flipkart.com/the-gift-card-store?otracker=${otracker}_footer_navlinks\"\n            aria-label=\"Gift Cards\"><span>Gift Cards</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/help-centre-image-c4ace8.svg\"\n            alt=\"Help Center\" width=\"13\" height=\"13\">\n          <a href=\"https://www.flipkart.com/helpcentre?otracker=${otracker}_footer_navlinks\"\n            aria-label=\"Help Center\"><span>Help Center</span></a>\n        </div>\n        <div class=\"col-auto\">\n          <span>© 2007-2024 <span>Flipkart.com</span></span>\n        </div>\n        <div class=\"col-auto \">\n          <img\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/payment-method-c454fb.svg\"\n            class=\"pCGSTEF\" alt=\"Payment methods\">\n        </div>\n      </div>\n    </div>\n  </footer>\n  <script>\n    document.querySelectorAll('.faq-question').forEach(item => {\n      item.addEventListener('click', () => {\n        const faqAnswer = item.nextElementSibling;\n        const faqToggle = item.querySelector('.faq-toggle');\n        const isOpen = faqAnswer.style.maxHeight;\n\n        // Close all open FAQ answers\n        document.querySelectorAll('.faq-answer').forEach(answer => {\n          answer.style.maxHeight = null;\n          answer.previousElementSibling.querySelector('.faq-toggle').textContent = '+';\n        });\n\n        // Toggle the clicked FAQ answer\n        if (!isOpen) {\n          faqAnswer.style.maxHeight = faqAnswer.scrollHeight + 'px';\n          faqToggle.textContent = '-';\n        }\n      });\n    });\n\n\n  </script>\n</body>\n\n</html>"
  },
  {
    "path": "account/contact.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Contact Us - Your Website</title>\n    <link href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\" rel=\"stylesheet\">\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\" rel=\"stylesheet\">\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"../css/footer.css\">\n    <link rel=\"stylesheet\" href=\"../css/contact.css\">\n\n</head>\n<body>\n\n<!-- Header -->\n<div class=\"contact-header text-center\">\n    <a href=\"../\">Home</a>\n    <a href=\"../helpcentre/index.html\">Help Centre</a>\n    <a href=\"../sell-online/index.html\">Become a Seller</a>\n    <a href=\"../account/orders.html\">Orders</a>\n</div>\n\n<!-- Main Content -->\n<div class=\"container contact-section\">\n    <h1 class=\"text-center mb-5\">Contact Us</h1>\n\n    <div class=\"row mb-5\">\n        <div class=\"col-md-6 contact-info\">\n            <h2><img src=\"https://img.icons8.com/ios-filled/50/000000/map-marker.png\" alt=\"Address Icon\"> Mail Us:</h2>\n            <address>\n                Company Private Limited,<br>\n                1234 Street,<br>\n                City, 56789,<br>\n                State, Country\n            </address>\n            <h2><img src=\"https://img.icons8.com/ios-filled/50/000000/phone.png\" alt=\"Phone Icon\"> Registered Office Address:</h2>\n            <address>\n                Company Private Limited,<br>\n                1234 Your Street,<br>\n                City, 56789,<br>\n                State, Country<br>\n                CIN: U12345ABC12345<br>\n                Telephone: 123-456-7890\n            </address>\n        </div>\n        <div class=\"col-md-6 contact-form\">\n            <form>\n                <div class=\"form-group\">\n                    <label for=\"name\">Name</label>\n                    <input type=\"text\" class=\"form-control\" id=\"name\" placeholder=\"Your Name\">\n                </div>\n                <div class=\"form-group\">\n                    <label for=\"email\">Email address</label>\n                    <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Your Email\">\n                </div>\n                <div class=\"form-group\">\n                    <label for=\"message\">Message</label>\n                    <textarea class=\"form-control\" id=\"message\" rows=\"5\" placeholder=\"Your Message\"></textarea>\n                </div>\n                <button type=\"submit\" class=\"btn btn-primary btn-block\">Submit</button>\n            </form>\n        </div>\n    </div>\n</div>\n\n<!-- Bootstrap JS -->\n<script src=\"https://code.jquery.com/jquery-3.5.1.slim.min.js\"></script>\n<script src=\"https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js\"></script>\n<script src=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js\"></script>\n</body>\n</html>"
  },
  {
    "path": "account/feedback.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\n    <title> My Feedback</title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"../css/account.css\" />\n</head>\n\n<body>\n\n<header id=\"header-account\" class=\"text-center text-secondary fs-4\">\n    This is Header\n</header>\n\n<section>\n    <div class=\"container mt-5\"  style=\"background-color: rgb(225, 239, 239); border-radius: 20px;\">\n        <div class=\"row justify-content-center\">\n            <div class=\"col-12 col-md-8\">                \n                <h1 class=\"text-center mb-4\" style=\"display: inline-block;\">\n                    <img src=\"/img/flipkardLoader.png\" alt=\"Flipkart Logo\" class=\"img-fluid mb-4 mx-auto\" style=\"width: 100%; max-width: 180px;\">Share Your Feedback!\n                </h1>\n                <form>\n                    <div class=\"form-group\">\n                        <label for=\"name\">Full Name</label>\n                        <input type=\"text\" class=\"form-control\" id=\"name\" placeholder=\"Enter your full name\" required>\n                    </div>\n                    <div class=\"form-group\">\n                        <label for=\"email\">Email Address</label>\n                        <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Enter your email address\" required>\n                    </div>\n                    \n                    <div class=\"form-group\">\n                        <label>Rate Us!</label>\n                        <div class=\"form-check\">\n                            <input class=\"form-check-input\" type=\"radio\" name=\"gender\" id=\"male\" value=\"male\">\n                            <label class=\"form-check-label\" for=\"male\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" class=\"bi bi-emoji-smile\" viewBox=\"0 0 16 16\">\n                                <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\"/>\n                                <path d=\"M4.285 9.567a.5.5 0 0 1 .683.183A3.5 3.5 0 0 0 8 11.5a3.5 3.5 0 0 0 3.032-1.75.5.5 0 1 1 .866.5A4.5 4.5 0 0 1 8 12.5a4.5 4.5 0 0 1-3.898-2.25.5.5 0 0 1 .183-.683M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5\"/>\n                              </svg></label>\n                        </div>\n                        <div class=\"form-check\">\n                            <input class=\"form-check-input\" type=\"radio\" name=\"gender\" id=\"female\" value=\"female\">\n                            <label class=\"form-check-label\" for=\"female\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" class=\"bi bi-emoji-neutral\" viewBox=\"0 0 16 16\">\n                                <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\"/>\n                                <path d=\"M4 10.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5m3-4C7 5.672 6.552 5 6 5s-1 .672-1 1.5S5.448 8 6 8s1-.672 1-1.5m4 0c0-.828-.448-1.5-1-1.5s-1 .672-1 1.5S9.448 8 10 8s1-.672 1-1.5\"/>\n                              </svg></label>\n                        </div>\n                        <div class=\"form-check\">\n                            <input class=\"form-check-input\" type=\"radio\" name=\"gender\" id=\"other\" value=\"other\">\n                            <label class=\"form-check-label\" for=\"other\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" class=\"bi bi-emoji-frown\" viewBox=\"0 0 16 16\">\n                                <path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16\"/>\n                                <path d=\"M4.285 12.433a.5.5 0 0 0 .683-.183A3.5 3.5 0 0 1 8 10.5c1.295 0 2.426.703 3.032 1.75a.5.5 0 0 0 .866-.5A4.5 4.5 0 0 0 8 9.5a4.5 4.5 0 0 0-3.898 2.25.5.5 0 0 0 .183.683M7 6.5C7 7.328 6.552 8 6 8s-1-.672-1-1.5S5.448 5 6 5s1 .672 1 1.5m4 0c0 .828-.448 1.5-1 1.5s-1-.672-1-1.5S9.448 5 10 5s1 .672 1 1.5\"/>\n                              </svg></label>\n                        </div>\n                    </div>\n                    <div class=\"form-group\">\n                        <label for=\"orderHistory\">Your Feedback</label>\n                        <textarea class=\"form-control\" id=\"orderHistory\" rows=\"3\" placeholder=\"feedback\" required></textarea>\n                    </div>\n                    <button type=\"submit\" class=\"btn btn-primary\">Save</button>\n                </form>\n            </div>\n        </div>\n    </div>\n    \n   <br>\n</section>\n\n<footer id=\"footer-account\" style=\"background-color: #293649 !important\"></footer>\n<script src=\"../js/bootstrap.bundle.min.js\"></script>\n<script src=\"../js/account.js\"></script>\n\n</body>\n\n</html>\n"
  },
  {
    "path": "account/home_account.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title> My Profile </title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"C:/Flipkart_Clone/img/flipkart_lite.png\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"C:/Flipkart_Clone/css/bootstrap.min.css\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <link rel=\"stylesheet\" href=\"C:/Flipkart_Clone/css/account.css\" />\r\n</head>\r\n\r\n<header id=\"header-account\" class=\"text-center text-secondary fs-4\">\r\n    This is Header\r\n</header>\r\n\r\n<section>\r\n    <style>\r\n        @import url(\"https://fonts.googleapis.com/css2?family=Lato&family=Silkscreen&display=swap\");\r\n\r\n        body {\r\n            font-family: \"Lato\", sans-serif;\r\n        }\r\n\r\n        section .container {\r\n            background-color: #EEEEEE;\r\n            border: 1px solid #ddd;\r\n            border-radius: 8px;\r\n            padding: 30px;\r\n            box-shadow: 0 4px 8px rgba(91, 77, 77, 0.1);\r\n            max-width: 100%;\r\n        }\r\n\r\n        section h1 {\r\n            color: #1149ff;\r\n        }\r\n\r\n        .inner {\r\n            margin: 0 auto;\r\n            padding: 30px 40px;\r\n            background: linear-gradient(to top left, #FEF3E2, #ffffff6f);\r\n            border: 2px solid black;\r\n            border-radius: 15px;\r\n            line-height: 35px;\r\n            box-shadow: 2px 2px 7px #2773a5;\r\n            z-index: 2;\r\n        }\r\n\r\n        .profile {\r\n            margin: 15px 0px;\r\n        }\r\n\r\n        .profile div {\r\n            margin: 10px 0;\r\n        }\r\n\r\n        .profile div label {\r\n            display: block;\r\n            font-weight: bold;\r\n        }\r\n\r\n        .profile input {\r\n            width: 100%;\r\n            padding: 8px;\r\n            border: 2px solid rgba(113, 110, 110, 0.622);\r\n            border-radius: 10px;\r\n            font-family: a;\r\n            margin-top: 1px;\r\n            background-color: rgba(237, 234, 234, 0.622);\r\n        }\r\n\r\n        #orderHistory {\r\n            width: 100%;\r\n            padding: 8px;\r\n            border: 2px solid rgba(113, 110, 110, 0.622);\r\n            border-radius: 10px;\r\n            font-family: a;\r\n            margin-top: 1px;\r\n            background-color: rgba(237, 234, 234, 0.622);\r\n        }\r\n\r\n        #submit {\r\n            background-color: #3498db;\r\n            border: none;\r\n            cursor: pointer;\r\n        }\r\n\r\n        #submit:hover {\r\n            background-color: #14679fe1;\r\n        }\r\n\r\n        .gender {\r\n            display: flex;\r\n            flex-direction: column;\r\n            flex-flow: wrap;\r\n            align-items: center;\r\n        }\r\n\r\n        #form-gender {\r\n            display: flex;\r\n            flex-direction: row;\r\n            align-items: center;\r\n            justify-content: center;\r\n        }\r\n\r\n        #form-check-input {\r\n            padding: 0 5px;\r\n        }\r\n\r\n        .profile-img {\r\n            max-width: 200px; /* Increase the size */\r\n            margin-right: 20px;\r\n        }\r\n    </style>\r\n    <div class=\"container mt-5\">\r\n        <div class=\"row justify-content-center\">\r\n            <div class=\"col-12 col-md-4 text-center\">\r\n                <img src=\"../img/myprofile.jpg\" alt=\"my profile\" class=\"profile-img img-fluid\">\r\n            </div>\r\n            <div class=\"col-12 col-md-8\">\r\n                <h1 class=\"text-center mb-4\" style=\"display: inline-block;\"><img src=\"../img/flipkardLoader.png\"\r\n                        alt=\"Flipkart Logo\" class=\"img-fluid mb-4 mx-auto\"\r\n                        style=\"width: 100%; max-width: 180px;\">Flipkart Profile</h1>\r\n                <div class=\"inner\">\r\n                    <form class=\"profile\">\r\n                        <div class=\"form-group\">\r\n                            <label for=\"firstname\">Full Name</label>\r\n                            <input type=\"text\" id=\"firstname\" class=\"form-control\" placeholder=\"eg.H***\" required />\r\n                        </div>\r\n                        <div class=\"form-group\">\r\n                            <label for=\"email\">Email Address</label>\r\n                            <input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"eg.***@gmail.com\" required />\r\n                        </div>\r\n                        <div class=\"form-group\">\r\n                            <label for=\"address\">Address</label>\r\n                            <input type=\"text\" class=\"form-control\" id=\"address\" placeholder=\"Enter your address\">\r\n                        </div>\r\n                        <div class=\"form-group\">\r\n                            <label for=\"payment\">Payment Information</label>\r\n                            <input type=\"text\" class=\"form-control\" id=\"payment\" placeholder=\"Enter your payment information\">\r\n                        </div>\r\n                        <div class=\"form-group gender\">\r\n                            <label style=\"padding-right: 30px;\">Gender</label>\r\n                            <div id=\"form-gender\" class=\"form-check\">\r\n                                <input class=\"form-check-input\" type=\"radio\" name=\"gender\" id=\"male\" value=\"male\">\r\n                                <label id=\"form-check-input\" class=\"form-check-label\" for=\"male\">Male</label>\r\n                            </div>\r\n                            <div id=\"form-gender\" class=\"form-check\">\r\n                                <input class=\"form-check-input\" type=\"radio\" name=\"gender\" id=\"female\" value=\"female\">\r\n                                <label id=\"form-check-input\" class=\"form-check-label\" for=\"female\">Female</label>\r\n                            </div>\r\n                            <div id=\"form-gender\" class=\"form-check\">\r\n                                <input class=\"form-check-input\" type=\"radio\" name=\"gender\" id=\"other\" value=\"other\">\r\n                                <label id=\"form-check-input\" class=\"form-check-label\" for=\"other\">Other</label>\r\n                            </div>\r\n                        </div>\r\n                        <div class=\"form-group\">\r\n                            <label for=\"orderHistory\">Order History</label>\r\n                            <textarea class=\"form-control\" id=\"orderHistory\" rows=\"3\" placeholder=\"Enter your order history\"></textarea>\r\n                        </div>\r\n                        <div class=\"form-group\">\r\n                            <input class=\"btn btn-primary\" type=\"submit\" class=\"btn btn-primary\" id=\"submit\" value=\"Save\" />\r\n                        </div>\r\n                    </form>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</section>\r\n\r\n<footer id=\"footer-account\" style=\"background-color: #293649 !important\"></footer>\r\n<script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n<script src=\"../js/account.js\"></script>\r\n\r\n<body></body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "account/login-signup.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title>\r\n        Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture,\r\n        Grocery, Lifestyle, Books &amp; More. Best Offers!\r\n    </title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <link rel=\"stylesheet\" href=\"../css/login-signup.css\" />\r\n</head>\r\n<body>\r\n<header id=\"header-login\" class=\"text-center text-secondary fs-4\">\r\n    This is Header\r\n</header>\r\n\r\n<!-- signin page -->\r\n<div id=\"divA\">\r\n    <div class=\"signupin\">\r\n        <div class=\"leftpanal\">\r\n            <h4 class=\"login-display\">Login</h4>\r\n            <p> Get access to your Orders, Wishlist and Recommendations</p>\r\n        </div>\r\n        <div class=\"rightSignuppanal\">\r\n            <form autocomplete=\"on\">\r\n                <div class=\"I-qZ4MvLRlQb\">\r\n                    <input autocomplete=\"off\" id=\"inputsin\" type=\"text\" class=\"r4vIwl BV+Dqf input-field\" placeholder=\"Enter Email/Mobile number\" required />\r\n                    <label class=\"Gq-80aa label\" id=\"inputsin\"></label>\r\n                    <div class=\"underline\"></div>\r\n                </div>\r\n                <div class=\"EpHS0A\">By continuing, you agree to Flipkart's\r\n                    <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/terms/\">Terms of Use</a>\r\n\r\n                     and\r\n                    <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/privacypolicy/index.html\">Privacy Policy</a>.\r\n\r\n                    and\r\n                    <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/privacypolicy/\">Privacy Policy</a>.\r\n\r\n                </div>\r\n                <div class=\"LSOAQH mt-2\">\r\n                    <button id=\"requestOtpButton\" class=\"QqFHMw twnTnD _7Pd1Fp\">Request OTP</button>\r\n                </div>\r\n                <div class=\"ZJ3AS1 d-flex justify-content-center mt-4\">\r\n                    <a class=\"azBkHf\" href=\"#\" id=\"buttonA\">New to Flipkart? Create an account</a>\r\n                </div>\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<!-- signup page -->\r\n<div id=\"divB\">\r\n    <div class=\"signupin container-fluid\">\r\n        <div class=\"leftpanal\">\r\n            <h4 class=\"signupdisplay\">Looks like you're new here!</h4>\r\n            <p>Sign up with your mobile number to get started</p>\r\n        </div>\r\n        <div class=\"rightSignuppanal\">\r\n            <form autocomplete=\"on\">\r\n                <div class=\"I-qZ4MvLRlQb\">\r\n                    <input autocomplete=\"off\" id=\"inputi\" type=\"text\" class=\"r4vIwl BV+Dqf\" placeholder=\"Enter Email/Mobile number\" required />\r\n                    <label class=\"Gq-80aa label\" id=\"inputi\"></label>\r\n                    <div class=\"underlineii\"></div>\r\n                </div>\r\n                <div class=\"I-qZ4MvLRlQb\">\r\n                    <input autocomplete=\"off\" id=\"otpInput\" type=\"text\" class=\"r4vIwl BV+Dqf\" placeholder=\"Enter OTP\" required />\r\n                    <label class=\"Gq-80aa label\" id=\"otpInput\"></label>\r\n                    <div class=\"underlineii\"></div>\r\n                </div>\r\n                <div class=\"EpHS0A\">By continuing, you agree to Flipkart's\r\n                    <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/terms/\">Terms of Use</a>\r\n                    and\r\n                    <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/privacypolicy/index.html\">Privacy Policy</a>.\r\n                </div>\r\n                <div class=\"LSOAQH mt-2\">\r\n                    <button id=\"verifyOtpButton\" class=\"QqFHMw twnTnD _7Pd1Fp\">Verify OTP</button>\r\n                </div>\r\n                <div class=\"ZJ3AS1 d-flex justify-content-center mt-4\">\r\n                    <a class=\"azBkHf\" href=\"#\" id=\"buttonB\">Existing User? Log in</a>\r\n                </div>\r\n            </form>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<footer id=\"footer-login\" style=\"background-color: #293649 !important\"></footer>\r\n<script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n<script src=\"../js/login-signup.js\"></script>\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "account/notifications.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\n    <title>\n        Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture,\n        Grocery, Lifestyle, Books &amp; More. Best Offers!\n    </title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"../css/notifications.css\" />\n</head>\n\n<header id=\"header-orders\" class=\"text-center text-secondary fs-4\">\n    This is Header\n</header>\n\n<main>\n    <div class=\"main-content\">\n        <div class=\"options\">\n            <div class=\"options-hello\">\n                <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"50\" height=\"50\" viewBox=\"0 0 50 50\"><defs><path id=\"a\" d=\"M50 0v50H0V0z\"/><path id=\"c\" d=\"M0 50h50V0H0z\"/></defs><g fill=\"none\" fill-rule=\"evenodd\"><path fill=\"#EBCFB9\" d=\"M23.05 39.873h4.02v-5.357h-4.02z\"/><mask id=\"b\" fill=\"#fff\"><use xlink:href=\"#a\"/></mask><path fill=\"#FFE11B\" d=\"M50 25c0 13.807-11.192 25-25 25C11.193 50 0 38.807 0 25S11.193 0 25 0c13.808 0 25 11.193 25 25\" mask=\"url(#b)\"/><path fill=\"#FADDC5\" d=\"M11.418 45.78s-.166-5.062 5.118-7.024c1.96-.727 5.776-.654 8.393-.654 2.54 0 7.468-.107 9.404.596 5.435 1.97 4.635 7.07 4.635 7.07s-4.83 4.06-14.04 4.06c-10.832 0-13.512-4.047-13.512-4.047\"/><path fill=\"#47C3CF\" d=\"M11.418 45.78s-.166-5.062 5.118-7.024c1.106-.41 2.802-.565 4.54-.624 0 0 .088 4.137 4.252 4.137 4.184 0 4.318-4.14 4.318-4.14 1.866.056 3.682.202 4.688.568 5.435 1.97 4.635 7.07 4.635 7.07s-4.83 4.06-14.04 4.06c-10.832 0-13.512-4.047-13.512-4.047\"/><mask id=\"d\" fill=\"#fff\"><use xlink:href=\"#c\"/></mask><path fill=\"#FADDC5\" d=\"M23.27 39.873h4.02v-5.357h-4.02z\" mask=\"url(#d)\"/><path fill=\"#D3B8A3\" d=\"M23.257 35.083h4.03s-.54 1.764-2.008 1.774c-1.468.01-2.023-1.774-2.023-1.774\" mask=\"url(#d)\"/><path fill=\"#FADDC5\" d=\"M36.154 23.76c0 6.41-5.027 11.608-11.224 11.608-6.2 0-11.226-5.197-11.226-11.61 0-6.41 5.027-11.61 11.226-11.61 6.197 0 11.224 5.2 11.224 11.61\" mask=\"url(#d)\"/><path fill=\"#FFF\" d=\"M26.64 32.27s-.163 1.294-1.28 1.294c-1.116 0-1.46-1.295-1.31-1.295\" mask=\"url(#d)\"/><path fill=\"#A56826\" d=\"M18.204 19.192s1.665 5.688 7.124 4.148c7.347-2.073 10.62 2.023 10.826.715v-.296s1.81-13.04-11.225-13.04c-13.036 0-11.225 13.04-11.225 13.04s3.903-.937 4.5-4.568\" mask=\"url(#d)\"/></g></svg>\n                <h4>Hello</h4>                \n            </div>\n            <div class=\"options-myorders\">\n                <i class=\"fa-solid fa-boxes-packing\"></i>\n                <a href=\"orders.html\">MY ORDERS</a>\n                <i class=\"fa-solid fa-angle-right\"></i>\n            </div>\n            <div class=\"options-account\">\n                <div class=\"heading\">\n                    <i class=\"fa-solid fa-user\"></i>\n                    <div class=\"options-heading\">ACCOUNT SETTINGS</div>\n                </div>\n                <ul class=\"lists\">\n                    <li><a href=\"\">Personal Information</a></li>\n                    <li><a href=\"\">Manange Addresses</a></li>\n                    <li><a href=\"\">PAN Card Information</a></li>\n                </ul>\n            </div>\n            <div class=\"options-payments\">\n                <div class=\"heading\">\n                    <i class=\"fa-solid fa-credit-card\"></i>\n                    <div class=\"options-heading\">PAYMENTS</div>\n                </div>\n                <ul class=\"lists\">\n                    <li><a href=\"/the-gift-card-store/index.html\">Gift Cards</a>\n                    <p>₹0</p></li>\n                    <li><a href=\"\">Saved UPI</a></li>\n                    <li><a href=\"\">Saved Cards</a></li>\n                </ul>\n            </div>\n            <div class=\"options-mystuff\">\n                <div class=\"heading\">\n                    <i class=\"fa-solid fa-folder\"></i>\n                    <div class=\"options-heading\">MY STUFF</div>\n                </div>\n                <ul class=\"lists\">\n                    <li><a href=\"\">My coupons</a></li>\n                    <li><a href=\"\">My reviews & Ratings</a></li>\n                    <li><a href=\"\">All Notifications</a></li>\n                    <li><a href=\"\">My wishlist</a></li>\n                </ul>\n            </div>\n            <div class=\"options-logout\">\n                <div class=\"heading\">\n                    <i class=\"fa-solid fa-power-off\"></i>\n                    <div class=\"options-heading\">LOGOUT</div>\n                </div>\n            </div>\n            <div class=\"options-frequently_visited\">\n                <div class=\"row-heading\">Frequently Visited:</div>\n                <div class=\"row-contents\"><span id=\"one\">Track Order</span><span>Help Center</span></div>\n            </div>\n        </div>\n        <div class=\"notifications\">\n            <div class=\"notifications-heading\">All Notifications</div>\n            <div class=\"n1\">\n                <div class=\"n-img\">\n                    <img src=\"/images/upi_img.webp\" alt=\"notifi\">\n                </div>\n                <div class=\"n-info\">\n                    <div class=\"info-details\">Sign-up for Flipkart UPI & get guaranteed reward on 1st Payment!</div>\n                    <div class=\"info-date\">30 May, 2024</div>\n                </div>\n                <div class=\"n-details\">\n                    <div class=\"details-content\">\n                        More Details\n                        <i class=\"fa-solid fa-angle-right\"></i>\n                    </div>\n                </div>\n            </div>\n        </div>\n    </div>\n</main>\n\n\n<footer id=\"footer-orders\" style=\"background-color: #293649 !important\"></footer>\n<script src=\"../js/bootstrap.bundle.min.js\"></script>\n<script src=\"../js/notifications.js\"></script>\n\n<body></body>\n\n</html>"
  },
  {
    "path": "account/orders.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title>\r\n        Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More. Best Offers!\r\n    </title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <link rel=\"stylesheet\" href=\"../css/orders.css\" />\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header-orders\" class=\"text-center text-secondary fs-4\">\r\n        This is Header\r\n    </header>\r\n\r\n    <section class=\"container\">\r\n        <div class=\"row\">\r\n            <div id=\"filtersBox\" class=\"col-lg-3\">\r\n                <div class=\"filtersTitle\">\r\n                    <span>Filters</span>\r\n                </div>\r\n                <div class=\"orderStatus\">\r\n                    <div id=\"info\"><b>ORDER STATUS</b></div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"status1\">\r\n                        <label for=\"status1\">On the Way</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"status2\">\r\n                        <label for=\"status2\">Delivered</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"status3\">\r\n                        <label for=\"status3\">Cancelled</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"status4\">\r\n                        <label for=\"status4\">Returned</label>\r\n                    </div>\r\n                </div>\r\n                <div class=\"orderTime\">\r\n                    <div id=\"info\"><b>ORDER TIME</b></div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"time1\">\r\n                        <label for=\"time1\">Last 30 days</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"time2\">\r\n                        <label for=\"time2\">2023</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"time3\">\r\n                        <label for=\"time3\">2022</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"time4\">\r\n                        <label for=\"time4\">2021</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"time5\">\r\n                        <label for=\"time5\">2020</label>\r\n                    </div>\r\n                    <div class=\"opt\">\r\n                        <input type=\"checkbox\" id=\"time6\">\r\n                        <label for=\"time6\">Older</label>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n\r\n            <div class=\"col-lg-9\">\r\n                <div class=\"search mb-4\">\r\n                    <div class=\"input-group\">\r\n                        <input type=\"text\" class=\"form-control search-input\" placeholder=\"Search your orders here\">\r\n                        <button class=\"btn btn-primary search-button\">\r\n                            <i class=\"bi bi-search\"></i> Search Orders\r\n                        </button>\r\n                    </div>\r\n                </div>\r\n\r\n                <div class=\"orders\">\r\n                    <div class=\"orderContainer mb-4\">\r\n                        <div class=\"row order-row align-items-center\">\r\n                            <div class=\"col-image col-auto\">\r\n                                <img class=\"img-fluid\" alt=\"OnePlus12\" src=\"https://images-cdn.ubuy.co.in/65a4d1da79c8e03a06140a3c-oneplus-12-24gb-1tb-6-82-amoled.jpg\">\r\n                            </div>\r\n                            <div class=\"col-description col\">\r\n                                <div class=\"details-text\">\r\n                                    <span class=\"item names\">OnePlus 12 (Flowy Emerald, 256 GB) (12 GB RAM)</span>\r\n                                    <div class=\"attributes\">\r\n                                        <span class=\"color-attribute\"><b>Color:</b> Flowy Emerald</span>\r\n                                        <span class=\"size-attribute\"><b>Size:</b> 256 GB</span>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                            <div class=\"col-price col-auto\">\r\n                                ₹59,299\r\n                            </div>\r\n                            <div class=\"col-status col-auto text-center\">\r\n                                <div class=\"circle bg-success\"></div>\r\n                                <span class=\"date\">Delivered on May 2</span>\r\n                                <div class=\"msg\">Your item has been delivered</div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n\r\n                    <div class=\"orderContainer mb-4\">\r\n                        <div class=\"row order-row align-items-center\">\r\n                            <div class=\"col-image col-auto\">\r\n                                <img class=\"img-fluid\" alt=\"Tanso Jinsei Full Graphite\" src=\"https://rukminim2.flixcart.com/image/850/1000/xif0q/racquet/y/4/l/g4-3-25-inches-strung-jinsei-full-graphite-ultra-light-weight-original-imagx7vy2fachrzb.jpeg?q=90&crop=false\">\r\n                            </div>\r\n                            <div class=\"col-description col\">\r\n                                <div class=\"details-text\">\r\n                                    <span class=\"item names\">Tanso Jinsei Full Graphite Ultra Light W...</span>\r\n                                    <div class=\"attributes\">\r\n                                        <span class=\"color-attribute\"><b>Color:</b> White</span>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                            <div class=\"col-price col-auto\">\r\n                                ₹1,039\r\n                            </div>\r\n                            <div class=\"col-status col-auto text-center\">\r\n                                <div class=\"circle bg-success\"></div>\r\n                                <span class=\"date\">Delivered on Apr 20</span>\r\n                                <div class=\"msg\">Your item has been delivered</div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n\r\n                    <div class=\"orderContainer mb-4\">\r\n                        <div class=\"row order-row align-items-center\">\r\n                            <div class=\"col-image col-auto\">\r\n                                <img class=\"img-fluid\" alt=\"Apple 2020 Macbook Air\" src=\"https://shoplet.pl/286301-large_default/apple-macbook-air-m1-133-wqxga-8gb-256gb-mac-os-srebrny.jpg\">\r\n                            </div>\r\n                            <div class=\"col-description col\">\r\n                                <div class=\"details-text\">\r\n                                    <span class=\"item names\">Apple 2020 Macbook Air Apple M1 ..</span>\r\n                                    <div class=\"attributes\">\r\n                                        <span class=\"color-attribute\"><b>Color:</b> Space Grey</span>\r\n                                        <span class=\"size-attribute\"><b>Size:</b> 13.3 inch</span>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                            <div class=\"col-price col-auto\">\r\n                                ₹73,990\r\n                            </div>\r\n                            <div class=\"col-status col-auto text-center\">\r\n                                <div class=\"circle bg-success\"></div>\r\n                                <span class=\"date\">Delivered on Mar 17</span>\r\n                                <div class=\"msg\">Your item has been delivered</div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n\r\n                    <div class=\"orderContainer mb-4\">\r\n                        <div class=\"row order-row align-items-center\">\r\n                            <div class=\"col-image col-auto\">\r\n                                <img class=\"img-fluid\" alt=\"CASIO FX-350MS 2nd Edition Scientific Calculator\" src=\"https://www.casio.com/content/dam/casio/product-info/locales/intl/en/calc/product/scientific/F/FX/FX3/fx-350EX/fx-350EX_Seq1.jpg.transform/main-visual-sp/image.jpg\">\r\n                            </div>\r\n                            <div class=\"col-description col\">\r\n                                <div class=\"details-text\">\r\n                                    <span class=\"item names\">CASIO FX-350MS 2nd Edition Scientific C...</span>\r\n                                    <div class=\"attributes\">\r\n                                        <span class=\"color-attribute\"><b>Color:</b> Black</span>\r\n                                        <span class=\"size-attribute\"><b>Size:</b> Medium</span>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                            <div class=\"col-price col-auto\">\r\n                                ₹660\r\n                            </div>\r\n                            <div class=\"col-status col-auto text-center\">\r\n                                <div class=\"circle bg-success\"></div>\r\n                                <span class=\"date\">Delivered on Jan 20</span>\r\n                                <div class=\"msg\">Your item has been delivered</div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n\r\n                    <div class=\"end text-center\">\r\n                        <span>No more results to display</span>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section>\r\n\r\n    <footer id=\"footer-orders\" class=\"text-white text-center py-3\" style=\"background-color: #293649;\">\r\n        Footer Content\r\n    </footer>\r\n\r\n    <script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n    <script src=\"../js/orders.js\"></script>\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "account/rewards.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"/>\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title>\r\n        Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture,\r\n        Grocery, Lifestyle, Books &amp; More. Best Offers!\r\n    </title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/header.css\">\r\n    \r\n</head>\r\n<body>\r\n<!--header-->\r\n    <header id=\"header-bluebg\">\r\n        <nav class=\"container-fluid\" style=\"background-color: #2874F0;\">\r\n            <div class=\"container\">\r\n                <nav class=\"navbar bg-body-tertiary\">\r\n                    <div class=\"container-fluid\">\r\n                        <a class=\"navbar-brand\" href=\"../\">\r\n                            <img src=\"../img/flipcartlogo.PNG\" width=\"80px\">\r\n                        </a>\r\n                        <div class=\"searchBar_h\">\r\n                            <input id=\"inputField_h\" type=\"text\" autocomplete=\"off\"\r\n                                placeholder=\"Search for products, brands and more\">\r\n                            <i id=\"fetchButton_h\" class=\"bi bi-search btn\"></i>\r\n                        </div>\r\n                        <div>\r\n                            <button class=\"btn btn-primary\"><a href=\"../account/login-signup.html\">Login</a></button>\r\n                        </div>\r\n                        <div class=\"text-white b_a_s\">\r\n                            <a href=\"../sell-online/\">Become a Seller</a>\r\n                        </div>\r\n                        <div class=\"text-white\" id=\"more_h\">\r\n                            More <i class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i>\r\n                        </div>\r\n                        <div class=\"text-white cartLogoandname\">\r\n                            <a href=\"../viewcart/\">\r\n                                <img src=\"../img/svg/cart_h.svg\" alt=\"\"><span class=\"cart_h\">Cart </span><span\r\n                                    id=\"cartItems\"></span>\r\n                            </a>\r\n                        </div>\r\n                    </div>\r\n                </nav>\r\n            </div>\r\n        </nav>\r\n    \r\n        <nav class=\"navbar navbar-expand-lg bg-body-tertiary secondNav container-fluid\">\r\n            <div class=\"container\">\r\n                <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\"\r\n                    aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\r\n                    <span class=\"navbar-toggler-icon\"></span>\r\n                </button>\r\n                <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\r\n                    <ul class=\"navbar-nav\">\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=electronics\">Electronics <i\r\n                                    class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=appliances\">TVs & Appliances <i\r\n                                    class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=men\">Men <i class=\"bi bi-chevron-down\"></i><i\r\n                                    class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=women\">Women <i class=\"bi bi-chevron-down\"></i><i\r\n                                    class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=kids\">Baby & Kids <i\r\n                                    class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=home\">Home & Furniture <i\r\n                                    class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=books\">Sports, Books & More <i\r\n                                    class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=flights\">Flights <i class=\"bi bi-chevron-down\"></i><i\r\n                                    class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=offer\">Offer Zone <i\r\n                                    class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                        <li class=\"nav-item\">\r\n                            <a class=\"nav-link\" href=\"../search/?query=grocery\">Grocery <i class=\"bi bi-chevron-down\"></i><i\r\n                                    class=\"bi bi-chevron-up\"></i></a>\r\n                        </li>\r\n                    </ul>\r\n                </div>\r\n            </div>\r\n        </nav>\r\n    </header>\r\n\r\n<!--header-->\r\n\r\n\r\n    <section>\r\n        <style>\r\n            .container-rewards {\r\n                display: flex;\r\n                /* min-height: 100vh; */\r\n                font-family: Arial, sans-serif;\r\n                margin: auto;\r\n                padding: 10px 25px;\r\n                /* background-color: #f9f9f9; */\r\n            }\r\n    \r\n            .left-column {\r\n                width: 25%;\r\n                background-color: #fff;\r\n                border-right: 1px solid #ddd;\r\n                padding: 16px;\r\n                box-sizing: border-box;\r\n                \r\n            }\r\n    \r\n            .profile {\r\n                text-align: left;\r\n                display:flex;\r\n                align-items: center;\r\n                margin-bottom: 30px;\r\n                margin-top: 10px;\r\n            }\r\n            .profile h4{\r\n                margin: 0;\r\n                color:#333333;\r\n                font-weight: 600;\r\n                font-size: 20px;\r\n                margin-left: 35px;\r\n            }\r\n            .img-head{\r\n                display: flex;\r\n                align-items: flex-start;\r\n                justify-content: flex-start;\r\n                padding: 12px;\r\n            }\r\n            .navigation-orders{\r\n                display: flex;\r\n                align-items: center;\r\n                padding: 10px;\r\n                margin-bottom: 20px;\r\n                border-bottom: 1px solid #ddd;\r\n            }\r\n            .navigation-orders a{\r\n                text-decoration: none;\r\n                }\r\n            .navigation-orders h3{\r\n                margin: 0;\r\n                color:#8b8b8b;\r\n                font-weight: 600;\r\n                margin-left: 30px;\r\n                font-size: 20px;\r\n            }\r\n            .navigation-account{\r\n                display: flex;\r\n                flex-direction: column;\r\n                margin-bottom: 20px;\r\n                border-bottom: 1px solid #ddd;\r\n            }\r\n            \r\n            .navigation-account h3{\r\n                margin: 0;\r\n                color:#8b8b8b;\r\n                font-weight: 600;\r\n                font-size: 20px;\r\n            }\r\n            .navigation-account svg{\r\n                margin-right: 30px;\r\n                \r\n            }\r\n            .navigation-payments{\r\n                display: flex;\r\n                flex-direction: column;\r\n                margin-bottom: 20px;\r\n                border-bottom: 1px solid #ddd;\r\n            }\r\n            \r\n            .navigation-payments h3{\r\n                margin: 0;\r\n                color:#8b8b8b;\r\n                font-weight: 600;\r\n                font-size: 20px;\r\n            }\r\n            .navigation-payments svg{\r\n                margin-right: 30px;\r\n                \r\n            }\r\n            .navigation-my-stuff{\r\n                display: flex;\r\n                flex-direction:column;\r\n                margin-bottom: 20px;\r\n                border-bottom: 1px solid #ddd;\r\n            }\r\n            \r\n            .navigation-my-stuff h3{\r\n                margin: 0;\r\n                color:#8b8b8b;\r\n                font-weight: 600;\r\n                font-size: 20px;\r\n            }\r\n            .navigation-my-stuff svg{\r\n                margin-right: 30px;\r\n                \r\n            }\r\n            .nav-list{\r\n                list-style:none;\r\n                padding-left:55px;\r\n                margin:0;\r\n            }\r\n            .nav-list ul {\r\n                list-style: none; \r\n                padding: 0;\r\n                margin: 10px;\r\n}\r\n            .nav-list li{\r\n                margin:15px 0;\r\n            }\r\n            .nav-list ul li a {\r\n                text-decoration:none;\r\n                color: #000;\r\n                font-weight: 500;\r\n            }\r\n    \r\n            .nav-list ul li a:hover {\r\n                color: #0073e6;\r\n            }\r\n            .right-column {\r\n                width: 75%;\r\n                padding: 20px;\r\n                box-sizing: border-box;\r\n                background-color: #fff;\r\n            }\r\n    \r\n            .right-column h2 {\r\n                margin-top: 0;\r\n                color: #333;\r\n                margin-left: 10px;\r\n            }\r\n    \r\n            .reward {\r\n                background-color: #faf9f9;\r\n                border: 1px solid #ddd;\r\n                padding: 15px;\r\n                margin-bottom: 20px;\r\n                border-radius: 5px;\r\n            }\r\n            .row-reward{\r\n                display: flex;\r\n                flex-direction: row;\r\n                justify-content: space-between;\r\n                align-items: center;\r\n                padding: 10px;\r\n            }\r\n            .reward-name{\r\n                cursor:pointer;\r\n                color: #097809;\r\n            }\r\n            .reward-valid{\r\n                font-weight: bold;\r\n                color:#8b8b8b;\r\n                cursor:pointer;\r\n            }\r\n            .reward-details{\r\n                color:#000;\r\n                cursor:pointer;\r\n            }\r\n            .reward-tc{\r\n                font-size: large;\r\n                font-weight: bold;\r\n                color:#0073e6;\r\n                cursor:pointer;\r\n            }\r\n        </style>\r\n    \r\n        <div class=\"container-rewards\">\r\n            <div class=\"left-column\">\r\n                <div class=\"profile\">\r\n                    <svg xmlns=\"http://www.w3.org/2000/svg\"\r\n                        width=\"28\" height=\"22\" viewBox=\"0 0 448 512\">\r\n                        <path\r\n                            d=\"M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z\" />\r\n                    </svg>\r\n                    <h4>Hello User</h4>\r\n                </div>\r\n                <nav class=\"navigation\">\r\n                    <div class=\"navigation-orders\">\r\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"18\" viewBox=\"0 0 24 18\">\r\n                            <g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(-8.694 -11)\">\r\n                                <ellipse cx=\"20.557\" cy=\"20\" rx=\"20.557\" ry=\"20\" />\r\n                                <path fill=\"#2874F1\"\r\n                                    d=\"M9 11v17.108c0 .493.41.892.918.892h4.93v-5.257h-3.033l4.912-4.77 4.972 4.83h-3.035V29h12.417c.507 0 .918-.4.918-.892V11H9z\" />\r\n                            </g>\r\n                        </svg>\r\n                        <a href=\"orders.html\"><h3>MY ORDERS</h3></a>\r\n                        \r\n                    </div>\r\n                    <div class=\"navigation-account\">\r\n                        <div class=\"img-head\">\r\n                            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"22\" height=\"21\" viewBox=\"0 0 22 21\">\r\n                                <g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(-9.694 -10)\">\r\n                                    <path fill=\"#2874F0\"\r\n                                        d=\"M14.275 22.704c2.272-.412 4.347-.618 6.225-.618 1.878 0 3.953.206 6.225.618a5.15 5.15 0 0 1 4.23 5.068V31h-20.91v-3.228a5.15 5.15 0 0 1 4.23-5.068zm1.274-7.724c0-2.58 2.163-4.673 4.832-4.673 2.667 0 4.83 2.092 4.83 4.673 0 2.58-2.163 4.673-4.83 4.673-2.67 0-4.833-2.092-4.833-4.673z\" />\r\n                                    <ellipse cx=\"20.557\" cy=\"20\" rx=\"20.557\" ry=\"20\" />\r\n                                </g>\r\n                            </svg>\r\n                            <h3>ACCOUNT SETTINGS</h3>\r\n                        </div>\r\n                        <div class=\"nav-list\">\r\n                        <ul>\r\n                            <li><a href=\"#\">Personal Information</a></li>\r\n                            <li><a href=\"#\">Manage Address</a></li>\r\n                            <li><a href=\"#\">PAN Card Information</a></li>\r\n                        </ul></div>\r\n                    </div>\r\n                    <div class=\"navigation-payments\">\r\n                        <div class=\"img-head\">\r\n                            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"23\" height=\"22\" viewBox=\"0 0 23 22\">\r\n                                <g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(-9.694 -9)\">\r\n                                    <ellipse cx=\"20.557\" cy=\"20\" rx=\"20.557\" ry=\"20\" />\r\n                                    <path d=\"M7 6h28v28H7z\" />\r\n                                    <path fill=\"#2874F0\" fill-rule=\"nonzero\"\r\n                                        d=\"M31.5 27v1.167a2.34 2.34 0 0 1-2.333 2.333H12.833a2.333 2.333 0 0 1-2.333-2.333V11.833A2.333 2.333 0 0 1 12.833 9.5h16.334a2.34 2.34 0 0 1 2.333 2.333V13H21a2.333 2.333 0 0 0-2.333 2.333v9.334A2.333 2.333 0 0 0 21 27h10.5zM21 24.667h11.667v-9.334H21v9.334zm4.667-2.917c-.97 0-1.75-.782-1.75-1.75s.78-1.75 1.75-1.75c.968 0 1.75.782 1.75 1.75s-.782 1.75-1.75 1.75z\" />\r\n                                </g>\r\n                            </svg>\r\n                            <h3>PAYMENTS</h3>\r\n                        </div>\r\n                        <div class=\"nav-list\">\r\n                        <ul>\r\n                            <li><a href=\"/the-gift-card-store/index.html\">Gift Cards</a></li>\r\n                            <li><a href=\"#\">Saved UPI</a></li>\r\n                            <li><a href=\"#\">Saved Cards</a></li>\r\n                        </ul></div>\r\n                    </div>\r\n                    <div class=\"navigation-my-stuff\">\r\n                        <div class=\"img-head\">  \r\n                            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"23\" height=\"19\" viewBox=\"0 0 23 19\">\r\n                                <g fill=\"none\" fill-rule=\"evenodd\">\r\n                                    <path fill=\"#2874F0\" fill-rule=\"nonzero\"\r\n                                        d=\"M20.5 2.75h-9L9.25.5H2.5A2.247 2.247 0 0 0 .26 2.75l-.01 13.5A2.257 2.257 0 0 0 2.5 18.5h18a2.257 2.257 0 0 0 2.25-2.25V5a2.257 2.257 0 0 0-2.25-2.25zm-5.625 3.375a2.257 2.257 0 0 1 2.25 2.25 2.257 2.257 0 0 1-2.25 2.25 2.257 2.257 0 0 1-2.25-2.25 2.257 2.257 0 0 1 2.25-2.25zm4.5 9h-9V14c0-1.496 3.004-2.25 4.5-2.25s4.5.754 4.5 2.25v1.125z\" />\r\n                                    <path d=\"M-2-4h27v27H-2z\" />\r\n                                </g>\r\n                            </svg>\r\n                            <h3>MY STUFF</h3>\r\n                        </div>\r\n                        <div class=\"nav-list\">\r\n                        <ul>\r\n                            <li><a href=\"#\">My Coupons</a></li>\r\n                            <li><a href=\"#\">My Reviews & Ratings</a></li>\r\n                            <li><a href=\"#\">All Notifications</a></li>\r\n                            <li><a href=\"#\">My Wishlist</a></li>\r\n                        </ul></div>\r\n                    </div>\r\n                </nav>\r\n            </div>\r\n            <div class=\"right-column\">\r\n                <h2>Available Coupons</h2>\r\n                <div class=\"reward\">\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-name\"><h3>20% off on men's clothing</h3></div>\r\n                        <div class=\"reward-valid\"><p>Validity: 31st Dec 2024</p></div>\r\n                    </div>\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-details\"><p>Get 20% off on clothing with this coupon or receive cashback!</p></div>\r\n                        <div class=\"reward-tc\"><p>View T&C</p></div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"reward\">\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-name\">\r\n                            <h3>Extra 400/- off</h3>\r\n                        </div>\r\n                        <div class=\"reward-valid\">\r\n                            <p>Validity: 28th Aug 2024</p>\r\n                        </div>\r\n                    </div>\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-details\">\r\n                            <p>Get 400 off on clothing with this coupon or receive cashback!</p>\r\n                        </div>\r\n                        <div class=\"reward-tc\">\r\n                            <p>View T&C</p>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"reward\">\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-name\">\r\n                            <h3>25% off on children's clothing</h3>\r\n                        </div>\r\n                        <div class=\"reward-valid\">\r\n                            <p>Validity: 31st Dec 2024</p>\r\n                        </div>\r\n                    </div>\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-details\">\r\n                            <p>Get 25% off on clothing with this coupon or receive cashback!</p>\r\n                        </div>\r\n                        <div class=\"reward-tc\">\r\n                            <p>View T&C</p>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"reward\">\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-name\">\r\n                            <h3>Gift Voucher worth 2500</h3>\r\n                        </div>\r\n                        <div class=\"reward-valid\">\r\n                            <p>Validity: 31st July 2024</p>\r\n                        </div>\r\n                    </div>\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-details\">\r\n                            <p>Get 2500 off on clothing with this coupon or receive cashback!</p>\r\n                        </div>\r\n                        <div class=\"reward-tc\">\r\n                            <p>View T&C</p>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"reward\">\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-name\">\r\n                            <h3>Extra 599 off on grocery</h3>\r\n                        </div>\r\n                        <div class=\"reward-valid\">\r\n                            <p>Validity: 31st Dec 2024</p>\r\n                        </div>\r\n                    </div>\r\n                    <div class=\"row-reward\">\r\n                        <div class=\"reward-details\">\r\n                            <p>Get 599 off on clothing with this coupon or receive cashback!</p>\r\n                        </div>\r\n                        <div class=\"reward-tc\">\r\n                            <p>View T&C</p>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <!-- Add more rewards as needed -->\r\n            </div>\r\n        </div>\r\n    </section>\r\n\r\n    <footer id=\"footer-rewards\" style=\"background-color: #293649 !important\"></footer>\r\n    <script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n    <script src=\"../js/header_bluebg.js\"></script>\r\n    <script src=\"../js/rewards.js\"></script>\r\n</body>\r\n\r\n\r\n\r\n\r\n\r\n\r\n</html>"
  },
  {
    "path": "addtokart/checkout.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"theme-color\" content=\"#2874F0\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Checkout</title>\n    <link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\">\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n    <style>\n        body {\n            background-color: #f1f3f6;\n        }\n        .navbar-brand img {\n            width: 80px;\n        }\n        .main-container {\n            margin-top: 30px;\n        }\n        .step-number {\n            background-color: #2874F0;\n            color: #fff;\n            border-radius: 50%;\n            width: 30px;\n            height: 30px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            margin-right: 10px;\n        }\n        .step-title {\n            display: flex;\n            align-items: center;\n            margin-bottom: 20px;\n        }\n        .section-content {\n            background-color: #fff;\n            padding: 20px;\n            border: 1px solid #ccc;\n            border-radius: 5px;\n            margin-bottom: 20px;\n        }\n        .footer {\n            background-color: #f8f9fa;\n            padding: 20px;\n            text-align: center;\n            margin-top: 30px;\n        }\n        .footer a {\n            color: #2874F0;\n            text-decoration: none;\n        }\n    </style>\n</head>\n<body>\n    <!-- Header -->\n    <header>\n        <nav class=\"navbar navbar-expand-lg navbar-light bg-light\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../img/flipkardLoader.png\" alt=\"Brand Logo\">\n            </a>\n            <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarNav\">\n                <span class=\"navbar-toggler-icon\"></span>\n            </button>\n            <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n                <ul class=\"navbar-nav ml-auto\">\n                    <li class=\"nav-item\">\n                        <a class=\"nav-link\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">Home</a>\n                    </li>\n                    <li class=\"nav-item\">\n                        <a class=\"nav-link\" href=\"https://flipkart-clone-seven-azure.vercel.app/viewcart/\">Cart</a>\n                    </li>\n                    <li class=\"nav-item\">\n                        <a class=\"nav-link\" href=\"https://flipkart-clone-seven-azure.vercel.app/account/home_account.html\">Account</a>\n                    </li>\n                </ul>\n            </div>\n        </nav>\n    </header>\n\n    <main class=\"container main-container\">\n        <!-- Login or Signup Section -->\n        <div class=\"section-content\">\n            <div class=\"step-title\">\n                <div class=\"step-number\">1</div>\n                <h4>Login or Signup</h4>\n            </div>\n            <form id=\"loginForm\">\n                <div class=\"form-group\">\n                    <input type=\"text\" class=\"form-control\" id=\"emailPhone\" placeholder=\"Enter Email/Mobile number\" required>\n                </div>\n                <p>By continuing, you agree to Flipkart's <a href=\"#\" target=\"_blank\">Terms of Use</a> and <a href=\"#\" target=\"_blank\">Privacy Policy</a>.</p>\n                <button type=\"submit\" class=\"btn btn-primary\">CONTINUE</button>\n            </form>\n        </div>\n\n        <!-- Delivery Address Section -->\n        <div class=\"section-content\">\n            <div class=\"step-title\">\n                <div class=\"step-number\">2</div>\n                <h4>Delivery Address</h4>\n            </div>\n            <form id=\"addressForm\">\n                <div class=\"form-group\">\n                    <label for=\"fullName\">Full Name</label>\n                    <input type=\"text\" class=\"form-control\" id=\"fullName\" placeholder=\"Full Name\" required>\n                </div>\n                <div class=\"form-group\">\n                    <label for=\"address\">Address</label>\n                    <input type=\"text\" class=\"form-control\" id=\"address\" placeholder=\"Address\" required>\n                </div>\n                <div class=\"form-group\">\n                    <label for=\"city\">City</label>\n                    <input type=\"text\" class=\"form-control\" id=\"city\" placeholder=\"City\" required>\n                </div>\n                <div class=\"form-group\">\n                    <label for=\"postalCode\">Postal Code</label>\n                    <input type=\"text\" class=\"form-control\" id=\"postalCode\" placeholder=\"Postal Code\" required>\n                </div>\n                <div class=\"form-group\">\n                    <label for=\"phone\">Phone Number</label>\n                    <input type=\"text\" class=\"form-control\" id=\"phone\" placeholder=\"Phone Number\" required>\n                </div>\n                <button type=\"submit\" class=\"btn btn-primary\">SAVE & CONTINUE</button>\n            </form>\n        </div>\n\n        <!-- Order Summary Section -->\n        <div class=\"section-content\">\n            <div class=\"step-title\">\n                <div class=\"step-number\">3</div>\n                <h4>Order Summary</h4>\n            </div>\n            <div class=\"order-summary\">\n                <table class=\"table\">\n                    <thead>\n                        <tr>\n                            <th>Product</th>\n                            <th>Quantity</th>\n                            <th>Price</th>\n                        </tr>\n                    </thead>\n                    <tbody>\n                        <tr>\n                            <td>Product 1</td>\n                            <td>1</td>\n                            <td>$100</td>\n                        </tr>\n                        <tr>\n                            <td>Product 2</td>\n                            <td>2</td>\n                            <td>$50</td>\n                        </tr>\n                    </tbody>\n                    <tfoot>\n                        <tr>\n                            <th colspan=\"2\">Total</th>\n                            <th>$200</th>\n                        </tr>\n                    </tfoot>\n                </table>\n            </div>\n        </div>\n\n        <!-- Payment Options Section -->\n        <div class=\"section-content\">\n            <div class=\"step-title\">\n                <div class=\"step-number\">4</div>\n                <h4>Payment Options</h4>\n            </div>\n            <form id=\"paymentForm\">\n                <div class=\"form-group\">\n                    <label for=\"paymentMethod\">Select Payment Method</label>\n                    <select class=\"form-control\" id=\"paymentMethod\" required>\n                        <option value=\"\" disabled selected>Select your option</option>\n                        <option value=\"creditCard\">Credit Card</option>\n                        <option value=\"debitCard\">Debit Card</option>\n                        <option value=\"netBanking\">Net Banking</option>\n                        <option value=\"cashOnDelivery\">Cash on Delivery</option>\n                    </select>\n                </div>\n                <div id=\"paymentDetails\" class=\"mt-3\">\n                    <!-- Payment details form will be dynamically added here based on the selected payment method -->\n                </div>\n                <button type=\"submit\" class=\"btn btn-primary\">PLACE ORDER</button>\n            </form>\n        </div>\n    </main>\n\n    <!-- Footer -->\n    <footer class=\"footer\">\n        <p>Policies: Returns | Policy | Terms of use | Security | Privacy | Infringement | © 2007-2024 Flipkart.com</p>\n        <p>Need help? Visit the <a href=\"#\">Help Center</a> or <a href=\"#\">Contact Us</a></p>\n    </footer>\n\n    <!-- Bootstrap JS and dependencies -->\n    <script src=\"https://code.jquery.com/jquery-3.5.1.slim.min.js\"></script>\n    <script src=\"https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js\"></script>\n\n    <!-- Form Validation Script -->\n    <script>\n        document.getElementById('loginForm').addEventListener('submit', function(event) {\n            event.preventDefault();\n            const emailPhone = document.getElementById('emailPhone').value;\n            if (emailPhone) {\n                alert('Form submitted successfully!');\n            } else {\n                alert('Please enter your Email/Mobile number.');\n            }\n        });\n\n        document.getElementById('addressForm').addEventListener('submit', function(event) {\n            event.preventDefault();\n            const fullName = document.getElementById('fullName').value;\n            const address = document.getElementById('address').value;\n            const city = document.getElementById('city').value;\n            const postalCode = document.getElementById('postalCode').value;\n            const phone = document.getElementById('phone').value;\n            if (fullName && address && city && postalCode && phone) {\n                alert('Address saved successfully!');\n            } else {\n                alert('Please fill all the fields.');\n            }\n        });\n\n        document.getElementById('paymentMethod').addEventListener('change', function() {\n            const paymentMethod = this.value;\n            const paymentDetails = document.getElementById('paymentDetails');\n            paymentDetails.innerHTML = '';\n            if (paymentMethod === 'creditCard' || paymentMethod === 'debitCard') {\n                paymentDetails.innerHTML = `\n                    <div class=\"form-group\">\n                        <label for=\"cardNumber\">Card Number</label>\n                        <input type=\"text\" class=\"form-control\" id=\"cardNumber\" placeholder=\"Card Number\" required>\n                    </div>\n                    <div class=\"form-group\">\n                        <label for=\"expiryDate\">Expiry Date</label>\n                        <input type=\"text\" class=\"form-control\" id=\"expiryDate\" placeholder=\"MM/YY\" required>\n                    </div>\n                    <div class=\"form-group\">\n                        <label for=\"cvv\">CVV</label>\n                        <input type=\"text\" class=\"form-control\" id=\"cvv\" placeholder=\"CVV\" required>\n                    </div>\n                `;\n            } else if (paymentMethod === 'netBanking') {\n                paymentDetails.innerHTML = `\n                    <div class=\"form-group\">\n                        <label for=\"bank\">Select Bank</label>\n                        <select class=\"form-control\" id=\"bank\" required>\n                            <option value=\"\" disabled selected>Select your bank</option>\n                            <option value=\"bank1\">Bank 1</option>\n                            <option value=\"bank2\">Bank 2</option>\n                            <option value=\"bank3\">Bank 3</option>\n                        </select>\n                    </div>\n                `;\n            }\n        });\n\n        document.getElementById('paymentForm').addEventListener('submit', function(event) {\n            event.preventDefault();\n            const paymentMethod = document.getElementById('paymentMethod').value;\n            if (paymentMethod) {\n                alert('Order placed successfully!');\n            } else {\n                alert('Please select a payment method.');\n            }\n        });\n    </script>\n</body>\n</html>\n"
  },
  {
    "path": "addtokart/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title> Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More. Best Offers! </title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <!-- <link rel=\"stylesheet\" href=\"../css/\" /> -->\r\n</head>\r\n\r\n<header id=\"header-addkart\" class=\"text-center text-secondary fs-4\">\r\n    This is Header\r\n</header>\r\n\r\n<!-- search product show Showing addkart-->\r\n<div class=\"containter-fluid bg-white\">\r\n    <div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n    </div>\r\n    <div class=\"container-fluid mt-4\">\r\n        <div class=\"row m-1\" id=\"addkart\">\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<!-- show Similar Products -->\r\n<div class=\"container-fluid\">\r\n    <div class=\"fs-3 m-4\">Similar products</div>\r\n    <div class=\"row\" id=\"similarProducts\">\r\n    </div>\r\n</div>\r\n\r\n<footer id=\"footer-addkart\" style=\"background-color: #203a61 !important\"></footer>\r\n<script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n<script src=\"../js/addKartProduct.js\"></script>\r\n\r\n<body></body>\r\n\r\n</html>"
  },
  {
    "path": "addtokart/style.css",
    "content": " \n.NOs-Bf {\n    font-size: 14px;\n    color: #2874f0;\n    font-weight: 500;\n    padding: 16px 0;\n    border-bottom: 1px solid #f0f0f0;\n    cursor: pointer;\n    border-top: 1px solid #f0f0f0\n}\n\n.spx1HA {\n    -webkit-transform: rotate(-90deg);\n    transform: rotate(-90deg);\n    vertical-align: middle;\n    margin: 0 20px 0 26px\n}\n\n.gIBRFT {\n    border-bottom: 1px solid #f0f0f0;\n    padding: 16px 24px 12px\n}\n\n.gIBRFT.tC-hMK {\n    background-color: #f5faff\n}\n\n._7PCxNx {\n    color: #ff6161;\n    text-decoration: line-through\n}\n\n.wF33mi {\n    margin-bottom: 20px\n}\n\n.JWHZpD {\n    margin-left: 3px;\n    display: inline-block\n}\n\n.N2nSHK {\n    padding: 20px;\n    margin: auto;\n    max-width: 400px;\n    font-size: 14px\n}\n\n.N2nSHK .Geh36c {\n    max-height: calc(100vh - 275px);\n    overflow-y: auto\n}\n\n.N2nSHK ._0rd8tv {\n    font-weight: 500;\n    margin-bottom: 10px\n}\n\n.N2nSHK .QrwzX0 {\n    margin-bottom: 22px\n}\n\n.N2nSHK .bdVnlb {\n    margin-left: 10px\n}\n\n.N2nSHK .qUnWIC {\n    margin-top: 12px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.N2nSHK .uwk3PL {\n    width: 172px;\n    padding-top: 14px;\n    padding-bottom: 14px;\n    margin-top: 8px;\n    box-shadow: none;\n    text-transform: uppercase\n}\n\n.v2VFa- {\n    border: 1px solid #e0e0e0\n}\n\n.v2VFa-[type=number]::-webkit-inner-spin-button,.v2VFa-[type=number]::-webkit-outer-spin-button {\n    -webkit-appearance: none;\n    margin: 0\n}\n\n.v2VFa-:disabled {\n    background-color: #fafafa;\n    cursor: not-allowed\n}\n\n.v2VFa-:focus {\n    border-color: #2874f0\n}\n\n.OPfM39 {\n    border-color: #ff6161!important\n}\n\n.APCuPL {\n    color: #ff6161!important\n}\n\n._0kSq\\+5 {\n    color: #ff6161\n}\n\n/* .lBFHyk {\n    -webkit-transform-origin: top left;\n    color: #878787;\n    transition: -webkit-transform .2s ease;\n    transition: transform .2s ease,-webkit-transform .2s ease\n}\n\n.dKXc0R,.v2VFa-:focus~.lBFHyk {\n    -webkit-transform: translateY(-15%) scale(.815)\n} */\n\n.jHYdLK {\n    position: relative;\n    display: block\n}\n\n.jHYdLK._78YC\\+B:after {\n    border-top: 10px solid #e0e0e0\n}\n\n.jHYdLK._78YC\\+B .WRAbSt:after,.jHYdLK._78YC\\+B .WRAbSt:before {\n    display: none\n}\n\n.jHYdLK:after {\n    display: block;\n    content: \" \";\n    position: absolute;\n    top: 50%;\n    right: .7em;\n    pointer-events: none;\n    width: 0;\n    height: 0;\n    border-left: 7px solid transparent;\n    border-right: 7px solid transparent;\n    border-top: 10px solid #212121;\n    margin-top: -3px\n}\n\n.OZuttk {\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    border-radius: 0;\n    background: #fff;\n    border: 1px solid transparent;\n    padding: .6em .8em .5em 0;\n    width: 100%;\n    color: #878787;\n    font-size: 16px\n}\n\n.OZuttk:focus {\n    outline: none\n}\n\n.OZuttk:disabled {\n    color: #c2c2c2\n}\n\n.OZuttk:hover~.WRAbSt:after,.OZuttk:hover~.WRAbSt:before {\n    width: 50%\n}\n\n.WRAbSt {\n    position: relative;\n    display: block;\n    width: 100%;\n    background-color: #e0e0e0;\n    height: 2px\n}\n\n.WRAbSt:after,.WRAbSt:before {\n    content: \"\";\n    height: 2px;\n    width: 0;\n    bottom: 0;\n    position: absolute;\n    background: #2874f0;\n    transition: width .2s ease\n}\n\n.WRAbSt:before {\n    left: 50%\n}\n\n.WRAbSt:after {\n    right: 50%\n}\n\n.aChTzo {\n    margin-bottom: 16px\n}\n\n.aChTzo .WNuczz {\n    padding: 14px 24px;\n    font-size: 14px\n}\n\n.aChTzo .da7\\+UC {\n    margin-right: 6px;\n    vertical-align: text-bottom\n}\n\n._8UUcDg {\n    min-height: 0!important;\n    padding: 14px 0;\n    text-align: center\n}\n\n._8UUcDg .Zy20mi {\n    display: inline-block;\n    width: 24px;\n    vertical-align: middle;\n    margin-right: 12px\n}\n\n.sK8-s3 {\n    width: 420px\n}\n\n.Aaev\\+q {\n    text-align: center;\n    padding: 38px;\n    color: #212121\n}\n\n.Aaev\\+q .BQQLM0 {\n    font-size: 20px;\n    font-weight: 500;\n    display: block;\n    margin-top: 16px;\n    margin-bottom: 12px\n}\n\n.Aaev\\+q .m-VMnV {\n    font-size: 14px;\n    line-height: 1.5\n}\n\n.Aaev\\+q .m-VMnV .D-F\\+V2 {\n    font-weight: 500\n}\n\n.Aaev\\+q .PVOsq7 {\n    margin-top: 48px;\n    padding: 14px 60px;\n    text-transform: uppercase\n}\n\n.Aaev\\+q .RdElL1 {\n    margin-top: 18px;\n    display: block\n}\n\n.Aaev\\+q .PVOsq7,.Aaev\\+q .RdElL1 {\n    font-size: 16px\n}\n\n.lJPVok {\n    position: relative;\n    width: 100%\n}\n\n.Reem3Q {\n    position: absolute;\n    background-color: #fff;\n    width: 100%;\n    bottom: 0;\n    -webkit-transform: translateY(100%);\n    transform: translateY(100%);\n    border-left: 1px solid #e0e0e0;\n    border-right: 1px solid #e0e0e0;\n    box-shadow: 0 0 4px #e0e0e0;\n    z-index: 1;\n    display: none\n}\n\n.Reem3Q.jD-g0X {\n    display: block\n}\n\n.J3nH8z {\n    padding: 16px;\n    border-bottom: 1px solid #e0e0e0\n}\n\n._92tk\\+3 .J3nH8z:hover,.h63Zow {\n    background-color: #efefef\n}\n\n.U1LCmH {\n    position: relative;\n    margin-bottom: 10px\n}\n\n.v2VFa- {\n    width: 100%;\n    font-size: 14px;\n    border: 1px solid var(--color-grey-grade2);\n    outline: none;\n    border-radius: 2px;\n    padding: 20px 16px 0 13px;\n    box-shadow: none;\n   \n\n    &[type=number]::-webkit-inner-spin-button,\n    &[type=number]::-webkit-outer-spin-button {\n        -webkit-appearance: none;\n        margin: 0;\n    }\n\n    &:disabled {\n        background-color: var(--color-grey-grade0);\n        cursor: not-allowed;\n    }\n}\n\n\n.z2D4XG {\n    height: 50px\n}\n\n.g-nBNP {\n    resize: vertical;\n    padding-top: 25px;\n    vertical-align: top\n}\n\n.v2VFa-:focus {\n    outline: none;\n    border-color: var(--color-brand-blue)\n}\n\n.OPfM39 {\n    border-color: var(--color-error-red)!important\n}\n\n.APCuPL {\n    color: var(--color-error-red)!important\n}\n\n._0kSq\\+5 {\n    margin: 0 0 0 12px;\n    font-size: 12px;\n    color: var(--color-error-red);\n    display: inline-block\n}\n\n._0kSq\\+5,.lBFHyk {\n    pointer-events: none;\n    width: 100%\n}\n\n.lBFHyk {\n    position: absolute;\n    left: 0;\n    top: 0;\n    transform-origin: top left;\n    padding: 18px 20px 0;\n    font-size: 14px;\n    color: var(--color-grey-grade4);\n    transition: transform .2s ease\n}\n\n.dKXc0R,.v2VFa-:focus~.lBFHyk {\n    transform: translateY(-15%) scale(.815);\n    padding: 18px 0 0 15px\n}\n\n.iXsmkH {\n    color: #2874f0;\n    font-weight: 500\n}\n\n.rd3Ege {\n    margin-top: 16px;\n    width: 570px\n}\n\n.-PsvFv {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.ZU-viH {\n    margin-bottom: 10px\n}\n\n.raia51 {\n    margin-bottom: 0\n}\n\n.VgOevZ {\n    -webkit-justify-content: flex-start;\n    -ms-flex-pack: start;\n    justify-content: flex-start;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin-top: 30px\n}\n\n.ACw3Xy {\n    width: 280px\n}\n\n.ACw3Xy.O1czOX:after {\n    top: 35%;\n    border-top-width: 7px;\n    border-right-width: 5px;\n    border-left-width: 5px\n}\n\n.ACw3Xy._8pGkYY.O1czOX:after {\n    border-top-color: #ff6161\n}\n\n.oDxCeH {\n    width: 100%;\n    margin-bottom: 0\n}\n\n._9-gNKZ {\n    resize: none!important\n}\n\n.SUn3yL {\n    height: 48px;\n    width: 230px\n}\n\n.SUn3yL,.y\\+RUHq {\n    font-size: 14px;\n    text-transform: uppercase\n}\n\n.y\\+RUHq {\n    font-weight: 500;\n    color: #2874f0;\n    background-color: transparent;\n    border: none;\n    margin-left: 20px;\n    padding-right: 0\n}\n\n.y\\+RUHq,.y\\+RUHq:hover {\n    box-shadow: none\n}\n\n.EcJ375 {\n    font-size: 12px;\n    color: #878787;\n    margin-bottom: 10px\n}\n\n.QGUDUT {\n    background-color: #fff7f8;\n    color: #ff6161;\n    padding: 10px 5px;\n    margin: 20px 0;\n    border: 1px solid #ff6161\n}\n\n.AD3Q-k {\n    display: inline-block;\n    vertical-align: middle;\n    margin: 0 10px\n}\n\n.VqFmfV {\n    margin-bottom: 16px;\n    width: 100%\n}\n\n.VqFmfV .FEpUSR {\n    margin-bottom: 4px\n}\n\n.McjNgr {\n    padding-left: 13px;\n    width: 100%;\n    margin-top: 8px;\n    margin-bottom: 8px\n}\n\n.SWXSwy {\n    padding: 2px 16px 7px 13px;\n    font-size: 14px;\n    color: inherit;\n    border: none\n}\n\n.Z5gkGb {\n    border: 1px solid #e0e0e0;\n    background-color: #fff\n}\n\n.Z5gkGb._8pGkYY {\n    border-color: #ff6161\n}\n\n.aan-Wb {\n    display: none!important\n}\n\n.AyivT9 {\n    font-size: 12px;\n    padding-top: 6px;\n    padding-left: 13px;\n    cursor: default;\n    color: #878787\n}\n\n._8pGkYY {\n    color: #ff6161\n}\n\n.FZKw\\+X {\n    margin-bottom: 10px\n}\n\n.GLlzzT.F2e49l {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.GLlzzT.F2e49l ._1cdkXo {\n    width: 70%;\n    margin-right: 5%\n}\n\n.GLlzzT.F2e49l .WtykFU {\n    width: 25%\n}\n\n.WtykFU {\n    color: #878787\n}\n\n.bA4Q-G {\n    white-space: nowrap;\n    text-overflow: ellipsis;\n    overflow: hidden\n}\n\n.xe4Z9L {\n    max-width: 848px\n}\n\n.MJrwCP {\n    max-width: 523px;\n    float: left;\n    cursor: pointer;\n    width: 100%\n}\n\n.MJrwCP .Kvq1RS {\n    cursor: default\n}\n\n.OuY1an {\n    max-width: 325px;\n    float: right\n}\n\n._2CGQQ4 {\n    line-height: 1.5\n}\n\n.H9XH1D {\n    margin-top: 10px;\n    display: block\n}\n\n.VpZoP0 {\n    text-transform: uppercase;\n    font-size: 11px;\n    color: #878787;\n    vertical-align: middle;\n    padding: 4px 7px;\n    border-radius: 2px;\n    background-color: #f0f0f0;\n    font-weight: 500\n}\n\n.AhImHH,.VpZoP0 {\n    margin: 0 0 0 11px\n}\n\n.FA45gW {\n    font-size: 14px;\n    text-transform: uppercase;\n    width: 200px;\n    height: 48px;\n    margin-top: 12px\n}\n\n._0eTOkm {\n    font-size: 14px;\n    color: #2874f0;\n    border: 0;\n    background: none;\n    cursor: pointer;\n    outline: none\n}\n\n._0eTOkm,._7Csqyg {\n    font-weight: 500\n}\n\n.C\\+xBRe {\n    color: #ff6161\n}\n\n.awNB40,.C\\+xBRe {\n    font-weight: 500;\n    margin: 20px 0 0\n}\n\n.awNB40 {\n    color: #ff9f00\n}\n\n._2vQwZw {\n    font-size: 14px;\n    color: #2874f0;\n    font-weight: 500;\n    padding: 16px 0;\n    border-bottom: 1px solid #f0f0f0;\n    cursor: pointer\n}\n\n._2vQwZw .DI-sr8 {\n    margin: 0 22px 0 26px;\n    vertical-align: middle\n}\n\n._2vQwZw.pg\\+tPA {\n    border-bottom: none;\n    border-top: 1px solid #f0f0f0\n}\n\n.DaIMoy {\n    border-bottom: 1px solid #f0f0f0;\n    padding: 16px 24px\n}\n\n.DaIMoy.a8qW11 {\n    background-color: #f5faff\n}\n\n.IEkT52 {\n    box-shadow: 0 -1px 1px 0 rgba(0,0,0,.2);\n    background-color: #f1f3f6;\n    height: 8px;\n    border: 1px solid #f0f0f0\n}\n\n.QBX\\+ly {\n    padding: 16px 24px\n}\n\n.\\+e12Bw,.B6gd3a,.deoySD,.iMX6GU {\n    height: 16px\n}\n\n.\\+e12Bw,.B6gd3a,.deoySD,.iMX6GU,.V\\+Vav8 {\n    background: #fafafa\n}\n\n.B6gd3a,.deoySD,.iMX6GU {\n    display: inline-block;\n    vertical-align: middle;\n    margin-right: 20px\n}\n\n.YWSGCu {\n    height: 136px;\n    padding: 16px 56px\n}\n\n.PptnQ0 {\n    margin-bottom: 12px\n}\n\n.PptnQ0 .deoySD {\n    width: 67px\n}\n\n.PptnQ0 .iMX6GU {\n    width: 32px\n}\n\n.PptnQ0 .B6gd3a {\n    width: 80px\n}\n\n.\\+e12Bw {\n    margin-bottom: 12px;\n    width: 532px\n}\n\n.V\\+Vav8 {\n    height: 48px;\n    width: 200px\n}\n\n.PhPPJb {\n    padding: 16px 24px;\n    border-bottom: 1px solid #f0f0f0\n}\n\n.PhPPJb.cFxurz {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    background-color: #ffffe6\n}\n\n.PhPPJb._5xCLgh {\n    background-color: #fff7f8\n}\n\n.PhPPJb .qg\\+tbN {\n    display: inline-block;\n    vertical-align: middle;\n    max-width: 747px;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    margin-right: 15px\n}\n\n.PhPPJb .qg\\+tbN.nk6xVS {\n    max-width: 450px;\n    text-overflow: none;\n    white-space: normal\n}\n\n.PhPPJb .KCMCR6 {\n    cursor: pointer;\n    display: inline-block;\n    text-transform: uppercase;\n    color: #2874f0;\n    font-size: 14px;\n    font-weight: 500;\n    vertical-align: middle\n}\n\n.PhPPJb .Xry6ds {\n    vertical-align: middle;\n    margin-bottom: -3px\n}\n\n.A03VS- {\n    padding: 0\n}\n\n.UbMpE3._3789DR {\n    margin-bottom: 36px\n}\n\n._3789DR {\n    margin-bottom: 24px\n}\n\n.iKSOtZ {\n    box-shadow: none;\n    height: auto;\n    border: none;\n    color: #2874f0\n}\n\n.aPGMpN {\n    margin-top: 24px\n}\n\n._3789DR .Jr-g\\+f:-moz-read-only {\n    color: #878787\n}\n\n._3789DR .Jr-g\\+f:read-only {\n    color: #878787\n}\n\n.Q4KFvK {\n    display: none\n}\n\n.YhpBe\\+ {\n    font-family: inherit;\n    width: 100%;\n    height: 48px;\n    font-size: 15px;\n    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);\n    text-transform: uppercase\n}\n\n.eiJRN2 {\n    padding: 26px 20px 18px 50px;\n    position: relative\n}\n\n.u7Hi8Y {\n    padding: 0 20px 18px 50px;\n    font-size: 14px;\n    color: #878787\n}\n\n.p9bih- {\n    padding-left: 100px;\n    font-size: 14px\n}\n\n.p9bih- .T5aONK {\n    color: #878787\n}\n\n.p9bih- .\\-1CINL {\n    margin: 16px 0;\n    color: #212121\n}\n\n.p9bih- .GG3DXG {\n    fill: #2874f0;\n    color: #2874f0;\n    font-size: 17px;\n    margin-right: 12px;\n    vertical-align: middle\n}\n\n.KGs0fa {\n    padding: 0 0 18px 38px\n}\n\n.KGs0fa .JXlYW- {\n    font-weight: 500;\n    margin-right: 5px\n}\n\n.ZghR-X ._03Ja9E {\n    margin-bottom: 12px\n}\n\n.ZghR-X ._03Ja9E .XZtPIa {\n    color: #878787\n}\n\n.ZghR-X ._03Ja9E .wWa8oI {\n    margin-left: 15px;\n    font-weight: 500\n}\n\n.ZghR-X ._03Ja9E .hSvhnF {\n    color: #2874f0;\n    font-weight: 500\n}\n\n.ZghR-X ._03Ja9E ._8VkH23 {\n    height: 48px;\n    width: 100%;\n    text-transform: uppercase;\n    font-size: 16px\n}\n\n.number {\n    font-size: 12px;\n    color: #2874f0;\n    background-color: #f0f0f0;\n    border-radius: 2px;\n    padding: 3px 7px;\n    vertical-align: baseline;\n    margin-right: 17px\n}\n\n.xUOoA- {\n    margin-left: 22px\n}\n\n.text {\n    height: 48px;\n    text-transform: uppercase;\n    color: #878787;\n    font-size: 16px;\n    font-weight: 500;\n    padding: 14px 24px;\n    border-radius: 2px 2px 0 0\n}\n\n.login-text-container.text {\n    color: #fff;\n    background-color: #2874f0\n}\n\n.login-text-container .number {\n    background-color: #fff;\n    position: relative;\n    top: -2px\n}\n\n.login-text-container.mXsdjP {\n    display: none\n}\n\n@media (max-width: 1240px) and (min-width:978px) {\n    .AWaTLw {\n        width:800px\n    }\n}\n\n@media (max-width: 978px) {\n    .AWaTLw {\n        width:754px\n    }\n}\n\n@media (min-width: 1240px) {\n    .AWaTLw {\n        width:848px\n    }\n}\n\n.AWaTLw {\n    margin-bottom: 16px;\n    position: relative;\n    display: inline-block;\n    box-shadow: 0 1px 1px 0 rgba(0,0,0,.2)\n}\n\n.AWaTLw .N53RAe {\n    padding: 16px 24px;\n    min-height: 72px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.AWaTLw .N53RAe ._3rrek0 {\n    vertical-align: top;\n    height: 20px;\n    margin-left: 8px\n}\n\n.AWaTLw .N53RAe ._0pnO36 {\n    padding: 0\n}\n\n.AWaTLw .N53RAe .DtjciV {\n    display: inline-block\n}\n\n.AWaTLw .N53RAe .DtjciV .PXFoIh {\n    color: #878787;\n    font-size: 16px;\n    font-weight: 500;\n    margin-bottom: 6px;\n    text-transform: uppercase\n}\n\n.AWaTLw .N53RAe .DtjciV ._3l1W1x {\n    font-size: 14px;\n    max-width: 630px\n}\n\n.AWaTLw .N53RAe .C180vJ {\n    padding: 0 32px;\n    height: 40px;\n    border-radius: 2px;\n    border: 1px solid #e0e0e0;\n    color: #2874f0;\n    font-size: 14px;\n    font-weight: 500;\n    background: #fff;\n    margin-left: auto;\n    cursor: pointer;\n    text-transform: uppercase\n}\n\n.AWaTLw .N53RAe .C180vJ:disabled {\n    color: #878787;\n    cursor: auto\n}\n\n.AWaTLw .pMJ9ZM {\n    position: relative\n}\n\n.SYMsSU {\n    height: 100%;\n    position: absolute;\n    z-index: 1;\n    left: 0;\n    top: 0;\n    background-color: hsla(0,0%,100%,.7);\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.SYMsSU,.SYMsSU .dpNMTu {\n    width: 100%;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.SYMsSU .dpNMTu {\n    text-align: center;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center\n}\n\n.SYMsSU .dpNMTu .KNF2OA {\n    display: inline-block\n}\n\n.SYMsSU .dpNMTu .KNF2OA .iDHNv- {\n    width: 24px;\n    height: 24px;\n    margin-right: 24px\n}\n\n.SYMsSU .dpNMTu .dngY0E,.SYMsSU .dpNMTu .KNF2OA .iDHNv- {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.SYMsSU .dpNMTu .dngY0E {\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    background: #fff;\n    font-size: 18px;\n    box-shadow: 0 2px 4px 0 rgba(0,0,0,.14),0 2px 4px 0 rgba(0,0,0,.24);\n    height: 64px;\n    padding: 0 50px\n}\n\n.SYMsSU .dpNMTu .dngY0E .m9JjA0 {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.oZSSUv,.SYMsSU .dpNMTu .dngY0E .m9JjA0 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.oZSSUv {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    width: 480px;\n    height: 460px;\n    border-radius: 4px;\n    overflow: hidden\n}\n\n.oZSSUv .QHM0AH {\n    background: #fffbf6;\n    padding: 20px 24px\n}\n\n.oZSSUv .QHM0AH .Tihjbq {\n    font-size: 20px;\n    line-height: 28px;\n    font-weight: 500\n}\n\n.oZSSUv .QHM0AH .o42yY\\+ {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    white-space: pre;\n    margin-top: 4px\n}\n\n.oZSSUv .QHM0AH .o42yY\\+ .Fp8Vkc {\n    margin: 3px 3px 0 0\n}\n\n.oZSSUv .QOd5hU {\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    font-size: 14px;\n    overflow: auto\n}\n\n.oZSSUv .QOd5hU .drVX-p {\n    vertical-align: top!important;\n    margin-top: 4px\n}\n\n.oZSSUv .QOd5hU .xPEXym {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    padding: 24px 24px 16px;\n    border-bottom: 1px solid #f0f0f0\n}\n\n.oZSSUv .QOd5hU .xPEXym .AlNbNH {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1\n}\n\n.oZSSUv .QOd5hU .xPEXym .AlNbNH ._0P15fN {\n    width: 80px;\n    height: 80px\n}\n\n.oZSSUv .QOd5hU .xPEXym .AlNbNH .KXEBbK {\n    margin: 0 auto\n}\n\n.oZSSUv .QOd5hU .xPEXym .IHJM7y {\n    margin-left: 15px\n}\n\n.oZSSUv .QOd5hU .xPEXym .IHJM7y .Tihjbq {\n    white-space: normal;\n    line-height: 20px\n}\n\n.oZSSUv .QOd5hU .xPEXym .IHJM7y ._1D1eST {\n    margin-top: 8px;\n    font-size: 20px;\n    line-height: 24px;\n    font-weight: 500\n}\n\n.oZSSUv .QOd5hU .xPEXym .IHJM7y .Fp8Vkc {\n    display: inline-block;\n    margin: 0 2px -1px 0\n}\n\n.oZSSUv .QOd5hU .xPEXym .IHJM7y .k1zEm2 {\n    margin-top: 6px;\n    color: #26a541;\n    line-height: 20px\n}\n\n.oZSSUv .-l9yRi {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: flex-end;\n    -ms-flex-pack: end;\n    justify-content: flex-end;\n    padding: 22px 24px;\n    border-top: 1px solid #f0f0f0\n}\n\n.oZSSUv .-l9yRi .GJ-YXj {\n    padding: 16px 64px;\n    -webkit-align-content: flex-end;\n    -ms-flex-line-pack: end;\n    align-content: flex-end\n}\n\n.wl1hE4 {\n    padding: 8px;\n    background: #fff\n}\n\n.wl1hE4 .LMSspQ {\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    background: #fffbf6;\n    padding: 16px\n}\n\n.wl1hE4 .LMSspQ,.wl1hE4 .LMSspQ .o0-oNF {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.wl1hE4 .LMSspQ .o0-oNF {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    padding-left: 8px\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .n6gzsd {\n    font-size: 18px;\n    font-weight: 500\n}\n\n.wl1hE4 .LMSspQ .o0-oNF ._7V6zgx {\n    font-size: 16px\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .FqmNAh {\n    margin-bottom: 2px\n}\n\n.wl1hE4 .LMSspQ .o0-oNF ._5S1Jmd {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    margin-top: 12px;\n    font-weight: 500\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .ZLUqo9 {\n    color: #26a541\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .D8dkzl {\n    color: #26a541;\n    background: #e9f3e3;\n    border-radius: 20px;\n    padding: 0 12px;\n    line-height: 24px\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .N4Wu3- {\n    color: #878787\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .bs6QRr {\n    color: #2874f0;\n    font-weight: 500;\n    margin-left: 8px;\n    line-height: 24px;\n    cursor: pointer\n}\n\n.wl1hE4 .LMSspQ .o0-oNF .Qy8LPI {\n    margin: 2px 4px -2px -4px\n}\n\n.wl1hE4 .LMSspQ .WmZNZO {\n    font-size: 14px;\n    min-width: 120px;\n    max-width: 140px;\n    height: 40px;\n    border-radius: 2px;\n    text-transform: uppercase;\n    font-weight: 500\n}\n\n.wl1hE4 .LMSspQ .OWHBG6 {\n    background: #c2c2c2;\n    color: #fff;\n    box-shadow: none\n}\n\n.wl1hE4 .LMSspQ .Al3gRY {\n    border: 1px solid #e0e0e0;\n    color: #2874f0;\n    background: #fff;\n    cursor: pointer\n}\n\n.wl1hE4 .LMSspQ .Al3gRY .Qy8LPI {\n    margin: 0 4px -2px -4px\n}\n\n.wl1hE4 .LMSspQ ._5swMGv {\n    display: inline-block;\n    vertical-align: text-top;\n    width: 16px;\n    height: 16px\n}\n\n._0rVeDX {\n    background-color: #f1f3f6\n}\n\n._0rVeDX ._8z1Uds {\n    height: 80px;\n    border-top: 1px solid #f0f0f0;\n    padding: 16px 24px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: flex-end;\n    -ms-flex-pack: end;\n    justify-content: flex-end;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n._0rVeDX ._8z1Uds .VuSC8m {\n    height: 48px;\n    width: 200px;\n    text-transform: uppercase;\n    font-size: 16px;\n    font-weight: 500;\n    float: right\n}\n\n._0rVeDX .uccKP\\+ {\n    margin-top: 8px\n}\n\n._0rVeDX .uccKP\\+ ._2HVM73 {\n    background: #fff7f8;\n    padding: 16px 24px;\n    border-bottom: 1px solid #f0f0f0\n}\n\n._0rVeDX .uccKP\\+ .Jh-tiv {\n    color: #ff6161;\n    font-weight: 500;\n    font-size: 14px\n}\n\n._0rVeDX .uccKP\\+ ._7HU3p2 ._1JZX4d {\n    list-style: disc;\n    margin-left: 19px;\n    font: 14px;\n    color: #212121\n}\n\n._0rVeDX .gVoItT {\n    background: #fff\n}\n\n._0rVeDX .W2hvn- {\n    font-size: 16px;\n    font-weight: 500;\n    color: #212121;\n    padding: 24px;\n    display: block\n}\n\n._0rVeDX .GqYYBG {\n    display: inline-block;\n    padding-bottom: 7px;\n    padding-top: 7px;\n    border-bottom: 2px solid #2874f0\n}\n\n._0rVeDX .GqYYBG .HFxIVK {\n    outline: none;\n    border: none;\n    color: #212121;\n    font-size: 14px;\n    width: 200px;\n    background-color: #fafafa\n}\n\n._0rVeDX .GqYYBG.q4tIZp {\n    border-bottom: none\n}\n\n._0rVeDX .GqYYBG.q4tIZp .HFxIVK {\n    font-weight: 500\n}\n\n.pnJJcA {\n    width: 480px\n}\n\n.OZ7IoL {\n    width: 428px;\n    height: 244px\n}\n\n.wwB1qU {\n    height: 136px;\n    background: #f1f3f6\n}\n\n.LPXEoJ {\n    font-size: 20px;\n    padding: 20px;\n    border-bottom: 1px solid #f0f0f0\n}\n\n.LQSFxm {\n    font-size: 14px;\n    line-height: 24px;\n    padding: 20px\n}\n\n.rjEjds {\n    width: 500px\n}\n\n.lzXNVF {\n    box-shadow: 0 -1px 1px 0 rgba(0,0,0,.2);\n    background-color: #f1f3f6;\n    height: 8px;\n    border: 1px solid #f0f0f0\n}\n\n.lT5crD {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.lT5crD .hTIkqv {\n    padding: 16px;\n    border-bottom: 1px solid #f0f0f0\n}\n\n.lT5crD .hTIkqv .DZyCkD {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    font-size: 16px;\n    font-weight: 500\n}\n\n.lT5crD .hTIkqv .DZyCkD .\\+97jwh {\n    width: 24px;\n    height: 24px;\n    margin-right: 8px\n}\n\n.lT5crD .hTIkqv .DZyCkD .gUkJZA {\n    position: absolute;\n    right: 16px;\n    width: 16px;\n    height: 16px\n}\n\n.lT5crD .hTIkqv ._56v8DY {\n    overflow-x: scroll;\n    overflow-y: hidden;\n    white-space: nowrap;\n    padding: 16px 0\n}\n\n.lT5crD .hTIkqv ._56v8DY .sZY93V {\n    height: 58px;\n    margin-right: 24px\n}\n\n.lT5crD .hTIkqv ._3Uam4C {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.lT5crD .hTIkqv ._3Uam4C,.lT5crD .hTIkqv .Nkbe5\\+ {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.lT5crD .hTIkqv .Nkbe5\\+ {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin-bottom: 16px\n}\n\n.lT5crD .hTIkqv .Nkbe5\\+ .VfOq\\+G {\n    margin-right: 16px;\n    width: 56px;\n    height: 56px\n}\n\n.lT5crD .hTIkqv .Nkbe5\\+ .VfOq\\+G .xEVZEw {\n    height: 100%\n}\n\n.lT5crD .hTIkqv .TrvE2N {\n    font-size: 12px;\n    color: #878787;\n    font-weight: 500\n}\n\n.lT5crD ._0ofT-K {\n    -webkit-align-self: center;\n    -ms-flex-item-align: center;\n    align-self: center;\n    text-transform: capitalize;\n    font-weight: 500;\n    width: 70%;\n    height: 40px;\n    border-radius: 2px;\n    margin: 16px\n}\n\n.Swtw-9 {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    padding: 40px\n}\n\n.pQAeJS,.Swtw-9 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.pQAeJS {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    font-size: 20px;\n    font-weight: 500;\n    line-height: 28px\n}\n\n.xiJk68 {\n    font-size: 16px;\n    font-weight: 400;\n    line-height: 24px\n}\n\n.H-oWvv,.xiJk68 {\n    margin-top: 24px\n}\n\n._5c9gG0 {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    background: #2a55e5;\n    border-radius: 4px;\n    height: 40px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center\n}\n\n.uXJN0Y {\n    font-size: 14px;\n    font-weight: 500;\n    color: #fff;\n    line-height: 20px\n}\n\n.PUgsAv {\n    background-color: #fff;\n    border-radius: 2px;\n    overflow: hidden\n}\n\n.PUgsAv .RkhWdC {\n    cursor: pointer;\n    display: inline-block;\n    font-size: 14px;\n    line-height: 16px\n}\n\n.PUgsAv .EyZ0EE .CXJpeE {\n    padding-top: 10px;\n    background: initial\n}\n\n.PUgsAv .EyZ0EE .RkhWdC {\n    padding: 8px 12px\n}\n\n.PUgsAv .EyZ0EE .RkhWdC:first-child {\n    padding-left: 24px\n}\n\n.PUgsAv .EyZ0EE .lLg6VY {\n    color: #2874f0;\n    font-weight: 500\n}\n\n.PUgsAv .DmVF1v .CXJpeE {\n    padding-top: 0;\n    background: #fbfbfb\n}\n\n.PUgsAv .DmVF1v ._1yUdt9 {\n    background: #fbfbfb;\n    display: table\n}\n\n.PUgsAv .DmVF1v .RkhWdC {\n    display: table-cell;\n    padding: 12px;\n    overflow: hidden;\n    position: relative\n}\n\n.PUgsAv .DmVF1v .RkhWdC:not(:nth-last-child(2)) {\n    border-right: 1px solid #f0f0f0\n}\n\n.PUgsAv .DmVF1v .RkhWdC:after {\n    content: \"\";\n    width: 10px;\n    height: 10px;\n    display: block;\n    opacity: 0;\n    position: absolute;\n    bottom: 0;\n    left: 50%;\n    -webkit-transform: translate(-5px,5px) rotate(45deg);\n    transform: translate(-5px,5px) rotate(45deg);\n    transition: opacity .3s ease-out\n}\n\n.PUgsAv .DmVF1v .lLg6VY {\n    color: #f0f0f0;\n    background: #2874f0;\n    transition: all .3s ease-out\n}\n\n.PUgsAv .DmVF1v .lLg6VY:after {\n    opacity: 1;\n    background: #f1f3f6\n}\n\n.PUgsAv .R42lz3 {\n    font-size: 0\n}\n\n.PUgsAv .R42lz3 .CXJpeE {\n    position: relative;\n    overflow: hidden\n}\n\n.PUgsAv .R42lz3 .Gts9cG,.PUgsAv .R42lz3 .HiYIP0 {\n    position: absolute;\n    -webkit-transform: translateY(-50%);\n    transform: translateY(-50%);\n    top: 50%;\n    padding: 18px 12px 20px;\n    bottom: 0;\n    background-color: #fff;\n    border: 1px solid #f0f0f0;\n    cursor: pointer;\n    font-size: 21px\n}\n\n.PUgsAv .R42lz3 .Gts9cG {\n    left: 0\n}\n\n.PUgsAv .R42lz3 .HiYIP0 {\n    right: 0\n}\n\n.PUgsAv .R42lz3 ._1yUdt9 {\n    will-change: transform;\n    transition: -webkit-transform .3s cubic-bezier(0,0,.3,1);\n    transition: transform .3s cubic-bezier(0,0,.3,1);\n    transition: transform .3s cubic-bezier(0,0,.3,1),-webkit-transform .3s cubic-bezier(0,0,.3,1)\n}\n\n.PUgsAv .YTks6x {\n    position: relative;\n    height: 3px\n}\n\n.PUgsAv .YTks6x .L6CVby {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    width: 1px;\n    background: #2874f0;\n    will-change: transform;\n    -webkit-transform-origin: left;\n    transform-origin: left;\n    transition: -webkit-transform .3s cubic-bezier(0,0,.3,1);\n    transition: transform .3s cubic-bezier(0,0,.3,1);\n    transition: transform .3s cubic-bezier(0,0,.3,1),-webkit-transform .3s cubic-bezier(0,0,.3,1)\n}\n\n.PUgsAv .iM7Ggj {\n    border-top: 1px solid hsla(0,0%,50.2%,.18)\n}\n\n.JGCiQO {\n    position: relative;\n    margin-top: 16px;\n    width: 652px;\n    border-radius: 2px;\n    border: 1px solid #e0e0e0\n}\n\n@media only screen and (max-width: 1240px) {\n    .JGCiQO {\n        width:561px\n    }\n}\n\n.bsmZkl {\n    border: 1px solid #ff6161\n}\n\n.JGCiQO .mvP2xq {\n    margin: 8px 0\n}\n\n.JGCiQO .Z7rr9\\+ {\n    padding: 12px 16px 12px 6px;\n    border-bottom: 1px solid #e0e0e0;\n    font-size: 14px;\n    margin: 0 0 0 16px\n}\n\n.JGCiQO .v4Tnrj {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    padding: 2px 0\n}\n\n.JGCiQO .F596fl {\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1\n}\n\n.JGCiQO .-NVs5P {\n    font-weight: 500;\n    color: #26a541\n}\n\n.JGCiQO .-NVs5P,.JGCiQO .DVhHNz {\n    -webkit-flex: 0 auto;\n    -ms-flex: 0 auto;\n    flex: 0 auto\n}\n\n.JGCiQO .DVhHNz {\n    font-weight: 400;\n    color: #878787\n}\n\n.JGCiQO .kf3NiE {\n    -webkit-flex: 0 auto;\n    -ms-flex: 0 auto;\n    flex: 0 auto\n}\n\n.JGCiQO .kf3NiE .rVjU-n:not(:last-child) {\n    margin-right: 5px\n}\n\n.JGCiQO .kf3NiE .rVjU-n.xDAkPh {\n    text-decoration: line-through\n}\n\n.JGCiQO ._4He\\+Z5 {\n    text-align: center;\n    margin-bottom: 2px\n}\n\n@media only screen and (min-width: 1241px) {\n    .JGCiQO ._4He\\+Z5 {\n        width:68px\n    }\n}\n\n@media only screen and (max-width: 1240px) {\n    .JGCiQO ._4He\\+Z5 {\n        width:55px\n    }\n}\n\n.JGCiQO .Qu5tHW {\n    font-size: 14px;\n    color: #212121;\n    text-transform: uppercase\n}\n\n.JGCiQO .t7oto0 {\n    font-size: 12px;\n    color: #878787;\n    margin-bottom: 6px\n}\n\n.JGCiQO ._8nIbag .Qu5tHW,.JGCiQO ._8nIbag .t7oto0 {\n    color: #f0f0f0\n}\n\n.k43KuQ {\n    font-size: 11px\n}\n\n.Fi7zB9,.raXdjI {\n    color: #388e3c\n}\n\n.Fi7zB9 {\n    font-size: 10px;\n    line-height: 1.1;\n    border-radius: 6px;\n    background-color: #e9f2e9;\n    text-align: center;\n    padding: 3px 8px\n}\n\n@media only screen and (max-width: 1240px) {\n    .Fi7zB9 {\n        display:none\n    }\n}\n\n.QXt8UN {\n    width: 64px;\n    height: 48px;\n    border-radius: 2px;\n    border: 1px solid #f0f0f0;\n    background-color: #fff;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    cursor: pointer;\n    box-sizing: content-box;\n    word-wrap: break-word;\n    word-break: break-word;\n    text-align: center\n}\n\n.QXt8UN .b5S0Py {\n    font-size: 12px;\n    color: #878787\n}\n\n.QXt8UN .v\\+0NOg {\n    font-weight: 500\n}\n\n.QXt8UN .E2IcU- {\n    margin-right: 5px;\n    font-size: 12px;\n    color: #212121\n}\n\n.QXt8UN .E2IcU-.JQRqIk {\n    text-decoration: line-through;\n    color: #878787\n}\n\n.QXt8UN .RPqkr6 {\n    font-size: 10px;\n    color: #ff4343\n}\n\n.QXt8UN .QKHxT\\+ {\n    font-size: 12px;\n    color: #26a541\n}\n\n.BSkbDi {\n    background-color: #f0f0f0\n}\n\n.BSkbDi,.Rf-CB2 {\n    pointer-events: none\n}\n\n.Rf-CB2 {\n    border: 1px solid #2874f0;\n    background-color: #f4f8ff\n}\n\n.fsbLq7 {\n    font-size: 14px;\n    color: #878787;\n    margin-top: 18px\n}\n\n.LdNbEY {\n    position: relative;\n    margin-top: 13px;\n    border-radius: 2px;\n    border: 1px solid #e0e0e0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.LdNbEY ._0J80kB {\n    font-weight: 500;\n    color: #878787\n}\n\n.LdNbEY .CriSFC {\n    width: 136px;\n    font-size: 12px;\n    box-shadow: 1px 0 4px 0 rgba(0,0,0,.08);\n    z-index: 2\n}\n\n.LdNbEY .CriSFC .CPNBx4 {\n    height: 48px;\n    background-color: #f1f3f6;\n    border-bottom: 1px solid #e0e0e0\n}\n\n.LdNbEY .CriSFC .Af7yGU,.LdNbEY .CriSFC .CPNBx4 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    color: #212121\n}\n\n.LdNbEY .CriSFC .Af7yGU {\n    width: 136px;\n    height: 56px;\n    background-color: #fff\n}\n\n.LdNbEY .CriSFC .Af7yGU:last-child {\n    height: 60px\n}\n\n.LdNbEY .CriSFC ._6mZhN3 {\n    background-color: #dfeafd;\n    font-weight: 500\n}\n\n.LdNbEY .btl5y- {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    padding-bottom: 2px;\n    padding-left: 4px;\n    padding-right: 5px;\n    overflow: auto\n}\n\n.LdNbEY .lG8Ttr {\n    min-width: 72px\n}\n\n.LdNbEY .lG8Ttr .CPNBx4 {\n    height: 48px;\n    color: #212121;\n    background-color: #f1f3f6;\n    font-size: 12px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    border-bottom: 1px solid #e0e0e0;\n    border-right: 1px solid #e0e0e0;\n    margin-bottom: 2px\n}\n\n.LdNbEY .lG8Ttr .H6yuPW {\n    width: 77px;\n    margin-left: -5px\n}\n\n.LdNbEY .lG8Ttr .eFO3ZR {\n    width: 77px;\n    margin-right: -5px;\n    border-right: none\n}\n\n.LdNbEY .lG8Ttr .RE8E5v {\n    background-color: #dfeafd\n}\n\n.LdNbEY .lG8Ttr .Af7yGU {\n    height: 56px\n}\n\n.LdNbEY .lG8Ttr ._1wKjhv,.LdNbEY .lG8Ttr .Af7yGU {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.LdNbEY .lG8Ttr ._1wKjhv {\n    height: 48px;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.LdNbEY .lG8Ttr ._0dmy40 {\n    color: var(---color-grey-grade5);\n    text-transform: capitalize\n}\n\n.LdNbEY .lG8Ttr ._8y4k\\+7 {\n    font-weight: 500\n}\n\n.LdNbEY .lG8Ttr .yqtLsM {\n    color: #878787\n}\n\n.W\\+BdmE {\n    border: 1px solid #ff6161\n}\n\n@media (max-width: 1240px) and (min-width:978px) {\n    .LdNbEY {\n        max-width:574px\n    }\n}\n\n@media (max-width: 978px) {\n    .LdNbEY {\n        max-width:502px\n    }\n}\n\n@media (min-width: 1240px) {\n    .LdNbEY {\n        max-width:653px\n    }\n}\n\n.U5\\+36f {\n    font-size: 11px\n}\n\n.Oog5y4 {\n    height: 100%;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    overflow: auto\n}\n\n.Oog5y4 .PmfrBK {\n    -webkit-flex: none;\n    -ms-flex: none;\n    flex: none;\n    font-size: 18px;\n    line-height: 56px;\n    padding: 0 24px;\n    border-bottom: 1px solid #f9f9f9\n}\n\n.Oog5y4 .cmtHG8 {\n    -webkit-flex: auto;\n    -ms-flex: auto;\n    flex: auto;\n    width: 100%;\n    position: relative;\n    max-height: 450px;\n    overflow-y: scroll\n}\n\n.Oog5y4 .cmtHG8 .D-8QVA {\n    padding: 16px 0;\n    margin: 0 24px 0 18px;\n    border-bottom: 1px solid #f9f9f9\n}\n\n.Oog5y4 .cmtHG8 .D-8QVA:last-child {\n    border-bottom: none\n}\n\n.mXzLSV {\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-filter: none!important;\n    filter: none!important\n}\n\n.mXzLSV ._3NaAjA {\n    padding: 2px 8px;\n    margin-left: 12px;\n    border-radius: 2px;\n    line-height: 16px;\n    font-size: 12px;\n    cursor: pointer;\n    color: #fff;\n    background: #26a541\n}\n\n.mXzLSV .KpBPtM {\n    position: relative;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.mXzLSV .KpBPtM .WhX\\+Nt {\n    width: 72px;\n    height: 72px\n}\n\n.mXzLSV .KpBPtM .WhX\\+Nt,.mXzLSV .KpBPtM .WhX\\+Nt .Ih20Jq {\n    -webkit-align-self: center;\n    -ms-flex-item-align: center;\n    align-self: center\n}\n\n.mXzLSV .KpBPtM .WhX\\+Nt .Ih20Jq {\n    max-height: 64px;\n    max-width: 64px;\n    margin: auto;\n    display: block\n}\n\n.mXzLSV .KpBPtM .SMZPCt {\n    height: 20px;\n    font-size: 12px;\n    margin: 0 auto;\n    border-radius: 2px;\n    background-color: #fff;\n    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);\n    text-align: center;\n    pointer-events: none;\n    position: absolute;\n    left: 4px;\n    bottom: 4px;\n    overflow-x: hidden;\n    width: 24px;\n    color: #212121;\n    padding-top: 2px\n}\n\n.mXzLSV .KpBPtM .t5W6XP {\n    display: block;\n    margin: 0 8px 6px 18px\n}\n\n.mXzLSV .KpBPtM .t5W6XP ._5fBz8U:hover {\n    color: #2874f0\n}\n\n.mXzLSV .KpBPtM .t5W6XP .YHStn4 {\n    max-width: 320px\n}\n\n.mXzLSV .KpBPtM .t5W6XP .CK7p-2 {\n    margin-top: 4px;\n    color: #878787;\n    font-size: 12px;\n    font-weight: 500\n}\n\n.mXzLSV .KpBPtM .t5W6XP ._8x16LD {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    font-size: 14px;\n    -webkit-align-items: flex-end;\n    -ms-flex-align: end;\n    align-items: flex-end;\n    margin-bottom: 3px;\n    margin-top: 8px\n}\n\n.mXzLSV .KpBPtM .t5W6XP ._8x16LD .TNODUZ {\n    font-size: 18px;\n    font-weight: 500;\n    display: inline-block;\n    margin-right: 12px;\n    line-height: 1\n}\n\n.mXzLSV .KpBPtM .t5W6XP ._8x16LD .oJAVPt {\n    text-decoration: line-through;\n    color: #878787;\n    display: inline-block;\n    margin-right: 8px\n}\n\n.mXzLSV .KpBPtM .t5W6XP ._8x16LD .xEaQcS {\n    display: inline-block;\n    color: #388e3c;\n    font-weight: 500;\n    margin: 0 5px\n}\n\n.mXzLSV .KpBPtM .t5W6XP .mygCxD {\n    color: #388e3c;\n    font-size: 12px;\n    font-weight: 500;\n    margin-top: 10px\n}\n\n.mXzLSV .CDOMX- {\n    -webkit-align-self: center;\n    -ms-flex-item-align: center;\n    align-self: center;\n    min-width: 128px;\n    height: 40px\n}\n\n.mXzLSV .CDOMX- .xq1dqa {\n    box-shadow: 0 0 0 0 transparent\n}\n\n.mXzLSV .XMcYEE {\n    display: block;\n    font-size: 14px;\n    margin-bottom: 3px;\n    margin-top: 6px\n}\n\n.mXzLSV .XMcYEE .hFqQ1o {\n    font-size: 12px;\n    color: #ff6161\n}\n\n.mXzLSV .XMcYEE .kxe4VW {\n    font-size: 18px;\n    color: #ff6161;\n    display: block\n}\n\n.mXzLSV .aXPp6T {\n    -webkit-filter: grayscale(1);\n    filter: grayscale(1);\n    opacity: .5\n}\n\n.UEbJOv {\n    font-size: 14px;\n    margin-bottom: 3px;\n    margin-top: 6px;\n    max-width: 320px\n}\n\n.UEbJOv .hFqQ1o {\n    font-size: 12px;\n    color: #ff6161\n}\n\n._9UFhim {\n    display: block;\n    font-size: 14px;\n    padding: 8px;\n    min-width: 128px;\n    font-weight: 500;\n    color: #000;\n    text-align: center;\n    line-height: 1;\n    cursor: pointer\n}\n\n.LRxlM1 {\n    cursor: pointer;\n    z-index: 12;\n    max-width: 350px;\n    border-radius: 4px\n}\n\n.LRxlM1 .czZRd8 {\n    padding: 0 4px;\n    margin: 0\n}\n\n.eDXTq4 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    font-size: 13px;\n    padding: 4px 0\n}\n\n.eDXTq4 .Uhf1U8 {\n    margin-left: 8px;\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.eDXTq4 .\\-8uxPW {\n    margin: 2px 4px 0 0;\n    height: 14px\n}\n\n.g9djFF {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    height: 40px;\n    border-radius: 2px;\n    background-color: #fff;\n    box-shadow: 0 0 2px 0 rgba(0,0,0,.2);\n    border: none\n}\n\n.g9djFF .dxenpX {\n    -webkit-flex: 2 2 0;\n    -ms-flex: 2 2 0px;\n    flex: 2 2 0;\n    height: 100%\n}\n\n.g9djFF .EPWq36,.g9djFF .OutfY9 {\n    -webkit-flex: 3 3 0;\n    -ms-flex: 3 3 0px;\n    flex: 3 3 0;\n    -webkit-align-self: stretch;\n    -ms-flex-item-align: stretch;\n    align-self: stretch;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    border-right: 1px solid #e5e5e5;\n    border-left: 1px solid #e5e5e5\n}\n\n.g9djFF .yaUASO {\n    width: 30px\n}\n\n.g9djFF .vSNayu {\n    background-color: #fafafa;\n    box-shadow: none;\n    border: none;\n    padding: 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    width: 100%;\n    height: 100%\n}\n\n.sMNn5d {\n    position: relative;\n    overflow: hidden;\n    -webkit-flex: auto;\n    -ms-flex: auto;\n    flex: auto\n}\n\n.sMNn5d.Lyzykv {\n    word-break: break-all\n}\n\n.dSU\\+Ya {\n    position: absolute;\n    width: 100%\n}\n\n.cBMxhF {\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis\n}\n\n.GK7Sfa {\n    visibility: hidden\n}\n\n.kLQyot {\n    position: absolute;\n    right: 0;\n    bottom: 0;\n    width: 50px;\n    text-align: right;\n    background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff 80%)\n}\n\n._5-DUVw {\n    padding: 26px 16px 26px 26px;\n    width: 418px\n}\n\n._5-DUVw .RSIK8i {\n    margin-right: 12px\n}\n\n._5-DUVw .\\+e84uQ {\n    width: 56px;\n    height: 64px\n}\n\n._5-DUVw .DzBvD1 {\n    font-size: 18px;\n    margin-bottom: 24px;\n    font-weight: 500\n}\n\n._5-DUVw .b5r1Qo {\n    color: #2874f0;\n    cursor: pointer\n}\n\n._5-DUVw ._0D3Hmv {\n    font-weight: 500;\n    color: #ff6161;\n    margin: 2px 0 4px;\n    display: block\n}\n\n._5-DUVw .ZbiUjB {\n    margin-top: 24px\n}\n\n._5-DUVw .vFaLzb {\n    font-weight: 500;\n    padding: 14px 0;\n    min-width: 166px;\n    border-radius: 2px;\n    box-shadow: none;\n    border: 1px solid #c2c2c2;\n    text-transform: uppercase\n}\n\n._5-DUVw .GEscZg {\n    margin-right: 30px\n}\n\n._5-DUVw .AuhJKm {\n    color: #fff;\n    background: #2874f0;\n    border: none\n}\n\n._5-DUVw .tVGq8D {\n    display: inline-block;\n    vertical-align: text-top;\n    width: 16px;\n    height: 16px;\n    margin-right: 10px\n}\n\n._5-DUVw .ovbRlA {\n    height: 120px;\n    max-height: 360px;\n    overflow: auto;\n    margin-top: 18px\n}\n\n._5-DUVw .B8KgaM {\n    margin-bottom: 15px\n}\n\n._5-DUVw .f8nkL9 {\n    font-size: 16px;\n    margin-bottom: 6px;\n    font-weight: 500\n}\n\n._5-DUVw ._7xe3QD {\n    font-weight: 500;\n    color: #ff6161;\n    margin: 2px 0 4px;\n    display: block\n}\n\n._5-DUVw .mO72jH {\n    display: block;\n    font-size: 16px;\n    line-height: 24px;\n    margin-bottom: 20px;\n    color: #212121\n}\n\n.EJR0Hq {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row\n}\n\n.EJR0Hq .vFaLzb {\n    width: 100%\n}\n\n.swxuJn {\n    overflow: auto\n}\n\n.swxuJn ._4qQGiQ {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    padding: 20px 24px;\n    background: #fff;\n    border-bottom: 1px solid #f0f0f0\n}\n\n.swxuJn .\\+J55e5 {\n    font-size: 16px\n}\n\n.swxuJn .sHYx5e {\n    padding-left: 24px\n}\n\n.swxuJn .BG0TWS {\n    vertical-align: top;\n    -webkit-flex: 0 0 242px;\n    -ms-flex: 0 0 242px;\n    flex: 0 0 242px;\n    margin-left: auto\n}\n\n@media (width < 978px) {\n    .swxuJn .BG0TWS {\n        -webkit-flex: 0 0 200px;\n        -ms-flex: 0 0 200px;\n        flex: 0 0 200px\n    }\n}\n\n.swxuJn .NPHNl9 {\n    margin-top: 8px\n}\n\n.swxuJn .NPHNl9 .A4HYcW {\n    background: #fff7f8;\n    padding: 16px 24px;\n    border-bottom: 1px solid #f0f0f0\n}\n\n.swxuJn .NPHNl9 ._8UyEaN {\n    color: #ff6161;\n    font-weight: 500;\n    font-size: 14px\n}\n\n.swxuJn ._0rELem {\n    text-transform: uppercase;\n    font-size: 14px;\n    font-weight: 500;\n    cursor: pointer;\n    margin-top: 16px;\n    margin-right: 25px\n}\n\n.swxuJn ._0rELem:hover {\n    color: #2874f0\n}\n\n.swxuJn .Glz5T2 {\n    font-size: 14px;\n    color: #2874f0;\n    cursor: pointer;\n    margin-left: 8px;\n    font-weight: 500\n}\n\n.swxuJn .vct-kf {\n    -webkit-align-self: flex-start;\n    -ms-flex-item-align: start;\n    align-self: flex-start;\n    width: 68px;\n    margin: 0 26px\n}\n\n.tu3DrA {\n    margin-top: 4px;\n    line-height: 20px\n}\n\n._3SrIiE {\n    display: inline-block;\n    font-size: 20px;\n    line-height: 28px;\n    font-weight: 500;\n    margin: 12px 8px 0 0\n}\n\n.pWM53N {\n    margin-top: 4px;\n    line-height: 20px\n}\n\n.F8mkQ6 {\n    display: inline-block;\n    font-size: 20px;\n    line-height: 28px;\n    font-weight: 500;\n    margin: 12px 8px 0 0\n}\n\n._3TcOzv ._6TmKsq {\n    color: #2874f0;\n    margin-left: 6px\n}\n\n._9\\+evkf {\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    padding: 16px 24px 22px\n}\n\n._9\\+evkf,._9\\+evkf .iWFbEA {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n._9\\+evkf .iWFbEA {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    line-height: 16px\n}\n\n._9\\+evkf .dptfsu {\n    width: auto\n}\n\n._9\\+evkf .vhl7nH {\n    width: 16px;\n    height: 16px;\n    border-radius: 2px;\n    border: 2px solid #878787\n}\n\n._9\\+evkf .vhl7nH:before {\n    top: 2px;\n    width: 4px;\n    height: 8px\n}\n\n._9\\+evkf .qe0Ly5 {\n    margin-left: 16px;\n    font-size: 14px;\n    font-weight: 500\n}\n\n.PZCF8S {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    width: 100%;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.PZCF8S,.PZCF8S .HfkolS {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row\n}\n\n.PZCF8S .HfkolS {\n    padding-left: 31px;\n    font-size: 14px;\n    color: #878787\n}\n\n.PZCF8S .HfkolS .bXMjbj {\n    margin: 0 8px\n}\n\n.U9cu6s {\n    padding: 8px;\n    background: #fff7e1;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    border-radius: 4px\n}\n\n.U9cu6s .L0wt0o {\n    margin-left: 8px;\n    font-size: 14px;\n    font-weight: 500;\n    color: #e79900\n}\n\n.U9cu6s .ScjJg- {\n    margin-left: 52px;\n    border: none;\n    background: none;\n    font-size: 14px;\n    font-weight: 500;\n    cursor: pointer\n}\n\n.hPTlfK .U9cu6s {\n    margin-top: 8px\n}\n\n._4qi7Vq {\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    margin: -12px 0 16px 56px\n}\n\n.MD1KCs {\n    padding: 40px;\n    width: 432px;\n    height: 362px\n}\n\n.N\\+HhTq {\n    font-size: 18px;\n    font-weight: 500;\n    margin-bottom: 30px\n}\n\n.hPTlfK {\n    padding: 40px;\n    width: 432px\n}\n\n.hPTlfK .Oaldyn {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.hPTlfK ._00zTCU,.hPTlfK .xGeaCh {\n    display: block\n}\n\n.hPTlfK ._00zTCU {\n    font-size: 16px;\n    font-weight: 400;\n    color: rgba(0,0,0,.87)\n}\n\n.hPTlfK .xGeaCh {\n    font-size: 14px;\n    font-weight: 400;\n    color: rgba(0,0,0,.54)\n}\n\n.wI0YzA {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    cursor: pointer;\n    margin: 16px 0\n}\n\n.wI0YzA .AkFOEU {\n    font-size: 14px;\n    font-weight: 500;\n    color: #2874f0;\n    margin-left: 12px;\n    padding: 8px 0\n}\n\n.wI0YzA .QmlNfy {\n    width: 14px;\n    height: 14px\n}\n\n.CWRlxZ {\n    border-top: 1px solid #f0f0f0;\n    margin: 8px 0\n}\n\n.WfvRSb {\n    width: 100%;\n    height: 48px;\n    font-size: 14px\n}\n\n.P6YPnF {\n    width: 80px;\n    height: 32px;\n    line-height: 32px;\n    padding: 0;\n    color: #2874f0\n}\n\n.UEbKmn {\n    padding: 16px 24px;\n    font-size: 14px;\n    font-weight: 500\n}\n\n.UEbKmn .K66sQp {\n    color: #212121\n}\n\n.UEbKmn .kL-vXE {\n    color: #2874f0;\n    margin-left: 4px;\n    cursor: pointer\n}\n\n.vM6m0x {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    padding: 32px;\n    width: 432px;\n    height: 267px;\n    text-align: center\n}\n\n.vM6m0x .AkFOEU {\n    color: #212121;\n    font-size: 20px;\n    margin-bottom: 12px;\n    font-weight: 500\n}\n\n.vM6m0x .qe0Ly5 {\n    font-size: 14px;\n    color: #212121\n}\n\n.RsFyOI {\n    width: 280px;\n    height: 48px;\n    margin-top: 51px;\n    font-size: 16px\n}\n\n.qo7OFV {\n    font-size: 18px;\n    color: #212121;\n    font-weight: 500;\n    margin-bottom: 21px\n}\n\n.YFfE10 {\n    margin-bottom: 32px;\n    height: 50px\n}\n\n.UniN3V {\n    width: 100%;\n    height: 48px;\n    font-size: 14px\n}\n\n.BxQKIy {\n    font-size: 12px;\n    color: #212121;\n    margin: -8px 0 16px\n}\n\n.BxQKIy,.BxQKIy ._1Crc14 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.BxQKIy ._1Crc14 {\n    width: 12px;\n    height: 12px;\n    background: #2874f0;\n    color: #fff;\n    font-size: 8px;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    border-radius: 50%;\n    font-weight: 500;\n    margin-right: 8px\n}\n\n._91b5H4 {\n    text-align: center;\n    padding: 48px 0;\n    background-color: #fff;\n    position: relative\n}\n\n._91b5H4 .wqdZKa {\n    margin: 0 auto;\n    width: 400px\n}\n\n._91b5H4 .RDDh1V {\n    font-size: 20px;\n    font-weight: 500;\n    margin-top: 20px;\n    color: #212121\n}\n\n._91b5H4 .whyaRk {\n    margin-top: 12px;\n    margin-bottom: 24px;\n    font-size: 14px;\n    color: #212121\n}\n\n.qjM3uw {\n    background: #fff7f8;\n    border: 1px solid #ff6161;\n    padding: 10px;\n    margin: 10px 0 20px;\n    max-width: 752px\n}\n\n.XEaeMM {\n    margin-bottom: 10px;\n    margin-top: 10px;\n    color: #212121\n}\n\n._4O\\+EWC {\n    margin: 10px 0;\n    padding: 10px 0;\n    color: #212121;\n    text-decoration: underline;\n    font-size: 16px\n}\n\n._5H4qC- {\n    position: relative;\n    width: 128px;\n    margin-right: 20px\n}\n\n.m2cjM\\+ {\n    position: absolute;\n    right: 8px;\n    top: 16px;\n    color: #fff;\n    border-radius: 50% 50%;\n    background: #c2c2c2;\n    padding: 0 5px;\n    cursor: pointer;\n    line-height: 1.3\n}\n\n.RWP\\+ia {\n    margin: 20px auto;\n    display: block\n}\n\n.Q6d0IH {\n    font-size: 20px;\n    margin-bottom: 20px;\n    font-weight: 500\n}\n\n.\\+3Lv2t,.Q6d0IH {\n    text-align: center\n}\n\n.\\+3Lv2t {\n    font-size: 14px;\n    color: #878787;\n    font-weight: 400;\n    width: 80%;\n    margin: 0 auto 20px;\n    display: block\n}\n\n.TqFnxa {\n    width: 100%\n}\n\n.PF76La {\n    display: none\n}\n\n.k3Rv0R {\n    top: -50px\n}\n\n.OUwLWU {\n    max-width: 400px;\n    border-radius: 2px;\n    box-shadow: 0 0 4px 1px rgba(0,0,0,.3)!important\n}\n\n.YhlfwQ {\n    left: 17%!important\n}\n\n._7Y7udB {\n    margin: 20px 0\n}\n\n.hvWqk9 {\n    margin-bottom: 12px;\n    font-weight: 500;\n    display: block\n}\n\n.b9maPQ,.soVbMq {\n    margin: 10px 0\n}\n\n.b9maPQ {\n    color: #2874f0;\n    cursor: pointer\n}\n\n.\\+r9dsK {\n    padding: 20px 16px;\n    max-width: 368px;\n    margin: auto\n}\n\n._5yg1BT {\n    margin-top: 30px\n}\n\n.k2XLto {\n    margin-bottom: 20px\n}\n\n.k2XLto .o\\+9IlK {\n    font-size: 12px;\n    color: #878787\n}\n\n._9YAn4f {\n    margin-bottom: 25px;\n    font-weight: 500\n}\n\n._0S7fxX {\n    margin-top: 60px\n}\n\n.vT1qtZ {\n    font-size: 16px;\n    font-weight: 500\n}\n\n.Gsa5mD {\n    color: var(--color-grey-grade4)\n}\n\n.zhlUAs {\n    font-weight: var(--font-regular);\n    &:focus {\n        box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n    }\n}\n\n.myB1GM {\n    border-bottom: 1px solid var(--color-grey-grade1);\n    .j\\+SSYu {\n        display: flex;\n        .tCIxC2 {\n            width: 24px;\n            height: 24px;\n            margin-right: 16px;\n            margin-top: -3px\n        }\n\n        ._9-suWS {\n            display: inline-block;\n            width: 100%\n        }\n    }\n\n    &._58zmDr {\n        background-color: var(--color-blue-bg)\n    }\n}\n\n._3F1Gzk,.ChobKE {\n    color: var(--color-grey-grade4)\n}\n\n.FoKPj2 {\n    .j\\+SSYu {\n        margin-left: 18px\n    }\n}\n\n.w\\+qn9N {\n    margin-top: 10px\n}\n\n.n4hpzu {\n    margin-top: 24px\n}\n\n.AxFp7M {\n    margin-bottom: 16px;\n    font-weight: 500;\n    display: block\n}\n\n.aoCaJi {\n    line-height: 1.64;\n    list-style: disc;\n    margin-left: 16px\n}\n\n.z\\+VF6p {\n    font-style: italic;\n    list-style-type: none\n}\n\n.i54YjS {\n    margin-left: 12px\n}\n\n.ftc5OX {\n    .vvJq0W {\n        font-size: 14px;\n        color: var(--color-grey-grade5);\n        float: right\n    }\n\n    .dRbR4W,.vvJq0W {\n        font-weight: var(--font-medium)\n    }\n\n    .dRbR4W {\n        display: block;\n        color: var(--color-yellowish-orange);\n        margin-top: 5px;\n        font-size: 12px\n    }\n\n    .kzaTgC {\n        background: var(--color-grey-grade0);\n        padding: 1px 16px 0;\n        margin-top: 8px;\n        border: 1px solid var(--color-grey-grade1);\n        border-radius: 2px\n    }\n\n    .hGiUFO {\n        font-weight: var(--font-medium);\n        color: var(--color-grey-grade5);\n        border-top: 1px dashed var(--color-grey-grade2);\n        padding-top: 12px;\n        margin-bottom: 12px\n    }\n}\n\n.evAOWh {\n    font-weight: var(--font-medium)\n}\n\n.KcOKzQ {\n    background: var(--color-blue-bg);\n    border: 1px solid var(--color-grey-grade1)\n}\n\n._3LXiZC {\n    color: var(--color-offer-green)\n}\n\n.uqMC72 {\n    color: var(--color-grey-grade8)\n}\n\n.zaWnci {\n    width: 100%\n}\n\n.Gb7YAd {\n    height: 32px\n}\n\n.wEsz0p {\n    height: 50px;\n    font-weight: var(--font-medium)\n}\n\n.fVB4Xd {\n    border-top: 1px dashed var(--color-grey-grade2)\n}\n\n.bcadEb {\n    width: 70%\n}\n\n.Mlisys {\n    width: 30%;\n    text-align: right\n}\n\n.vKVaFf {\n    color: var(--color-offer-green)\n}\n\n.ZxegMQ {\n    display: flex;\n    justify-content: flex-end;\n    white-space: pre;\n    .ydoHrj {\n        width: 12px;\n        height: 12px;\n        margin: 3px 2px 0 0\n    }\n}\n\n.lifqBI {\n    margin-bottom: 24px;\n    background: #f9f9f9;\n    padding: 20px;\n    text-transform: uppercase\n}\n\n.ecRsvA {\n    max-width: 520px;\n    background: #fff;\n    border: 1px solid #e0e0e0;\n    border-radius: 4px;\n    padding-bottom: 24px;\n    margin-top: 20px\n}\n\n.-qbWn\\+,._9hzdLH,.CRWTAv,.GzQu28,.hsRPzb,.L4Aw\\+X,.wyCd0y {\n    font-size: 16px\n}\n\n.-qbWn\\+ {\n    font-weight: 500\n}\n\n.fEt2H5,.L4Aw\\+X {\n    color: #878787\n}\n\n.fEt2H5 {\n    display: block\n}\n\n.a9uVPG {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n._8\\+gdsL,.a9uVPG {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    margin-top: 20px;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    max-width: 520px\n}\n\n.ur7Z2\\+ {\n    max-width: 496px\n}\n\n.NVI\\+Rx {\n    display: block;\n    color: #ff9f00;\n    margin-top: 5px;\n    font-size: 12px;\n    font-weight: 500\n}\n\n.ePNCW6 {\n    text-transform: uppercase;\n    font-weight: 400;\n    box-shadow: none;\n    font-size: 14px;\n    color: #2874f0\n}\n\n.cvKHrP {\n    max-width: 440px;\n    background: #f9f9f9;\n    padding: 16px 16px 0;\n    margin-top: 10px\n}\n\n.L4Aw\\+X {\n    float: right\n}\n\n.gPSYmK {\n    padding: 0 24px 24px\n}\n\n.gPSYmK:last-child {\n    padding-bottom: 0\n}\n\n._07jiLh {\n    color: #ff6161;\n    margin-left: 10px\n}\n\n.llvW71 {\n    vertical-align: bottom\n}\n\n.CRWTAv {\n    max-width: 480px;\n    padding: 0 24px\n}\n\n.hsRPzb {\n    margin-bottom: 30px!important\n}\n\n.GzQu28 {\n    margin-bottom: 10px\n}\n\n.GzQu28:last-child {\n    margin-bottom: 0\n}\n\n.wyCd0y {\n    text-transform: uppercase;\n    width: 280px;\n    font-weight: 400;\n    height: 48px;\n    margin: 40px auto 24px;\n    display: block\n}\n\n.SiDdpi {\n    float: none;\n    margin: 4px 0\n}\n\n._1wM9S3 {\n    margin-top: 2px\n}\n\n.aeyV8q {\n    margin-bottom: 0\n}\n\n.jv26kA {\n    margin-left: 8px\n}\n\n.jv26kA .Orx-\\+X {\n    padding: 12px 16px\n}\n\n.-TtBDy {\n    text-transform: none;\n    margin-left: 10px;\n    font-weight: 400;\n    color: #878787\n}\n\n.ftc5OX {\n    margin-left: 0\n}\n\n.ftc5OX .vvJq0W {\n    font-size: 14px;\n    font-weight: 500;\n    color: #212121;\n    float: right\n}\n\n.ftc5OX .dRbR4W {\n    display: block;\n    color: #ff9f00;\n    margin-top: 5px;\n    font-size: 12px;\n    font-weight: 500\n}\n\n.ftc5OX .kzaTgC {\n    background: #fafafa;\n    padding: 1px 16px 0;\n    margin-top: 8px;\n    border: 1px solid #f0f0f0;\n    border-radius: 2px\n}\n\n.ftc5OX .hGiUFO {\n    font-weight: 500;\n    color: #212121;\n    border-top: 1px dashed #e0e0e0;\n    padding-top: 12px;\n    margin-bottom: 12px\n}\n\n.evAOWh {\n    text-transform: uppercase;\n    font-size: 16px;\n    font-weight: 500;\n    padding: 14px 0;\n    width: 100%;\n    margin-bottom: 14px\n}\n\n.KcOKzQ {\n    background: #f5faff;\n    padding-top: 4px;\n    padding-bottom: 4px;\n    padding-left: 10px;\n    border: 1px solid #f0f0f0;\n    border-radius: 2px\n}\n\n.KcOKzQ,.S6J7F\\+ {\n    overflow: hidden\n}\n\n.lTE4Rb {\n    margin-left: -10px\n}\n\n._3LXiZC {\n    color: #388e3c\n}\n\n.uqMC72 {\n    color: #9e9e9e;\n    margin-left: 12px\n}\n\n.eUigC9 {\n    margin-right: 5px\n}\n\n.Gi8e-H {\n    display: block\n}\n\n.VQ4t0d {\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    margin-top: 12px\n}\n\n.V5j-j0,.VQ4t0d {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.V5j-j0 {\n    padding: 20px;\n    background: #ffffe6;\n    box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);\n    margin-bottom: 8px;\n    width: 100%\n}\n\n.V5j-j0 ._6eJi5a {\n    margin-right: 8px\n}\n\n.V5j-j0 ._6eJi5a ._8hJhOa {\n    -webkit-transform: scale(1.2);\n    transform: scale(1.2)\n}\n\n.V5j-j0 .nb9RWN {\n    font-size: 14px;\n    line-height: 1.14;\n    color: #212121\n}\n\n.V5j-j0 .nb9RWN .biSG2s {\n    font-size: 16px;\n    font-weight: 500;\n    display: block;\n    margin-bottom: 8px\n}\n\n.yWOob9 {\n    padding: 15px;\n    margin: 10px 0;\n    border-radius: 2px\n}\n\n.Gsa5mD {\n    color: #878787;\n    margin-left: 8px\n}\n\n.w78yYQ {\n    margin-top: 16px\n}\n\n._4TxmRQ {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n._1meR4P {\n    margin-right: 12px\n}\n\n.zhlUAs {\n    height: 48px;\n    min-width: 200px;\n    font-size: 16px;\n    font-weight: 400;\n    text-transform: uppercase;\n    margin-bottom: 12px\n}\n\n.zhlUAs:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.jbzP62 {\n    border-radius: 2px;\n    border: 1px solid #ff6161;\n    background: #fff7f8\n}\n\n.jbzP62,.Z-W8iL {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin: 12px auto\n}\n\n.Z-W8iL {\n    border-radius: 2px;\n    border: 1px solid #ff9f00;\n    background: #ffffe6\n}\n\n._1fmPaK {\n    border-radius: 3px;\n    border: .5px solid #af7b1c;\n    background: #fef7e9;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin: 0 auto 12px;\n    padding: 8px 12px 8px 8px\n}\n\n._3qLU9Y {\n    background-color: #ff6161\n}\n\n._3qLU9Y,.cT1\\+Vs {\n    padding: 1px 8px;\n    color: #f0f0f0;\n    font-weight: 500;\n    border-radius: 50%;\n    margin: 5px 10px 5px 18px\n}\n\n.cT1\\+Vs {\n    background-color: #ff9f00\n}\n\n.R1oX3V,.RVka5P {\n    color: #212121\n}\n\n.RVka5P {\n    font-size: 13px;\n    line-height: 18px\n}\n\n.IH57AR {\n    border: 1px solid #e0e0e0;\n    box-shadow: none;\n    padding: 16px 16px 4px\n}\n\n.Nst4CJ {\n    display: inline-block;\n    margin-left: 10px;\n    position: relative\n}\n\n.cIZHzL {\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    border: none;\n    background: #fff;\n    font-size: 14px;\n    font-weight: 500;\n    padding: 7px 2px;\n    text-align: left;\n    cursor: pointer\n}\n\n.yEuNjB {\n    position: absolute;\n    top: 50%;\n    right: 3px;\n    pointer-events: none\n}\n\n.hmXF\\+i {\n    top: 14px;\n    right: 1px\n}\n\n.t0BpJ3 {\n    width: 40px\n}\n\n._9tzhXm {\n    width: 100%;\n    height: 100%;\n    padding: 10px\n}\n\n.MoOHbl {\n    width: 100%;\n    height: 48px;\n    margin-left: 0;\n    border: 1px solid #e0e0e0\n}\n\n.MoOHbl.d8OdzZ {\n    border: 1px solid #ff6161\n}\n\n.u4gYPk {\n    right: 10px\n}\n\n.itzk6M {\n    width: 44px\n}\n\n.Um4oTz {\n    color: #878787;\n    font-size: 14px;\n    margin-top: 10px\n}\n\n.Um4oTz .uuV8LM {\n    color: #2874f0\n}\n\n.HMTZEe {\n    margin-top: 16px\n}\n\n.p-JXcR {\n    width: 316px\n}\n\n.LEvCy9,.w5e9uc {\n    display: inline-block;\n    vertical-align: top\n}\n\n.LEvCy9 {\n    width: 200px;\n    background: #fff;\n    padding: 9px 7px 9px 16px;\n    border: 1px solid #e0e0e0;\n    border-radius: 2px;\n    color: #878787;\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.ij59zx {\n    border-color: #ff6161!important\n}\n\n.ij59zx .aazY9l {\n    color: #ff6161\n}\n\n.zXS81S {\n    margin-left: 8px\n}\n\n.w5e9uc {\n    width: 128px\n}\n\n.LEvCy9,.w5e9uc {\n    margin-right: 12px\n}\n\n.GFR7gZ {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    margin-top: 8px\n}\n\n.JO5Wdq {\n    margin-left: 0!important\n}\n\n.TVgwvR {\n    height: 48px;\n    font-size: 16px;\n    font-weight: 400;\n    min-width: 200px\n}\n\n.TVgwvR:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.WKzceU {\n    position: relative\n}\n\n.EWCthy {\n    position: absolute;\n    top: 15px;\n    right: 10px\n}\n\n.gMCNdh {\n    border: 1px solid #e0e0e0;\n    box-shadow: none;\n    padding: 16px;\n    background-color: #fff7f8;\n    margin-bottom: 16px\n}\n\n.EIwviv {\n    display: none\n}\n\n.M13P8R {\n    font-weight: 500;\n    color: #2874f0;\n    margin-left: 5px\n}\n\n.AavU42 {\n    margin: 0 auto 16px;\n    display: block\n}\n\n._4oINxj {\n    width: 350px!important\n}\n\n._5G5zT9 {\n    width: 100%;\n    border: 1px solid #e0e0e0;\n    border-spacing: 0;\n    margin-bottom: 10px\n}\n\n._5G5zT9 .nAAZZl {\n    padding: 5px 10px;\n    width: 50%;\n    border-bottom: 1px solid #e0e0e0;\n    border-right: 1px solid #e0e0e0\n}\n\n._5G5zT9 .nAAZZl:last-child {\n    border-right: none\n}\n\n._5G5zT9 ._0xk83\\+:last-child .nAAZZl {\n    border-bottom: none\n}\n\n.Fwpmog {\n    width: 540px\n}\n\n.j9QoB6,.z4kCrK {\n    width: 264px;\n    display: inline-block;\n    vertical-align: top\n}\n\n.z4kCrK {\n    margin-left: 12px\n}\n\n.cZHrQJ {\n    font-size: 14px\n}\n\n.cZHrQJ,.cZHrQJ ._277ATk {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.cZHrQJ ._277ATk {\n    background-color: #fef7e9;\n    padding: 8px 8px 8px 12px;\n    margin: 8px 0 10px;\n    border-radius: 4px;\n    cursor: pointer\n}\n\n.cZHrQJ ._277ATk .SCRqrE {\n    width: auto;\n    margin-right: 10px\n}\n\n.cZHrQJ ._277ATk .CXUX39 {\n    border-width: 2px!important;\n    border-color: #9b9b9b!important\n}\n\n.cZHrQJ ._277ATk .ClPMlA {\n    margin-left: 6px;\n    font-weight: 500;\n    color: #2874f0\n}\n\n.quCGEA {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.quCGEA .ceSyYo {\n    margin: 18px 25px;\n    width: 400px;\n    color: #111112;\n    font-size: 13px\n}\n\n.quCGEA .ceSyYo .SulQCm {\n    font-weight: 500;\n    font-size: 16px\n}\n\n.quCGEA .ceSyYo .GxnTou {\n    font-weight: 400;\n    margin: 20px 0\n}\n\n.quCGEA .ceSyYo .H2I9iv {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin-top: 15px\n}\n\n.quCGEA .ceSyYo .H2I9iv .zavNtJ {\n    margin-right: 10px;\n    width: 30px;\n    height: 30px\n}\n\n.quCGEA .ceSyYo .GURrFQ {\n    color: #717478;\n    font-size: 11px;\n    margin-top: 20px\n}\n\n.quCGEA .TVYdfn {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    padding: 10px 25px 20px\n}\n\n.quCGEA .TVYdfn .pgBuTG {\n    background-color: #2370f4\n}\n\n.quCGEA .TVYdfn .j8EOBN {\n    text-align: center;\n    cursor: pointer;\n    outline: none;\n    border: none;\n    background: transparent;\n    margin-top: 18px;\n    color: #2370f4;\n    font-size: 13px\n}\n\n.-E4hPQ {\n    padding: 24px;\n    overflow: scroll;\n    width: 520px;\n    height: 379px\n}\n\n.-E4hPQ .Kl2GH1 {\n    font-weight: 500;\n    font-size: 16px;\n    line-height: 24px;\n    letter-spacing: .15px;\n    margin-bottom: 16px;\n    color: #000\n}\n\n.-E4hPQ .SamxKI {\n    font-size: 14px;\n    line-height: 20px;\n    letter-spacing: .15px;\n    color: #111112\n}\n\n._58khrR {\n    border-bottom: 1px solid #e4e7ed\n}\n\n._3BLqPZ {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    padding-top: 16px;\n    padding-bottom: 16px;\n    cursor: pointer\n}\n\n._3BLqPZ .DeV7\\+a {\n    width: 292px;\n    font-size: 14px;\n    line-height: 20px;\n    letter-spacing: .15px\n}\n\n._3BLqPZ .C16NEd {\n    margin: auto 0\n}\n\n._3BLqPZ .BYh83- {\n    width: 20px;\n    height: 20px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.\\-1VfQK {\n    overflow: hidden;\n    transition: height .3s ease-in-out\n}\n\n.bo9aHr {\n    font-size: 12px;\n    line-height: 16px;\n    letter-spacing: .3px;\n    color: #717478;\n    padding-bottom: 16px\n}\n\n.d3ouMR {\n    height: 48px;\n    min-width: 200px;\n    font-size: 16px;\n    font-weight: 400;\n    margin-bottom: 12px\n}\n\n.d3ouMR:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.xBTmGl {\n    margin-top: 16px\n}\n\n.i5hwt3 {\n    text-transform: uppercase;\n    padding: 3px 4px 2px;\n    font-weight: 400;\n    background-color: #ff6161;\n    color: #fff;\n    font-size: 12px;\n    display: inline-block\n}\n\n._0YzDTu {\n    font-size: 16px\n}\n\n._0YzDTu,.aL5nkf {\n    font-weight: 500\n}\n\n.rAmG6t {\n    color: #878787\n}\n\n.zrwKNv {\n    color: #2874f0;\n    font-weight: 500\n}\n\n.Ox\\+Yqg {\n    background-color: #fff;\n    color: #878787;\n    font-weight: 500;\n    border: 1px solid #e0e0e0\n}\n\n.eZpPkz {\n    margin-top: 8px;\n    color: #388e3c\n}\n\n.Zto6jc {\n    margin-top: 8px;\n    color: #878787\n}\n\n.wqxwWW {\n    float: right;\n    max-width: 216px;\n    font-size: 12px;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    color: #000\n}\n\n._65Ncaw {\n    margin-left: 8px\n}\n\n.ZKHoWc {\n    max-height: 200px!important\n}\n\n.k-hpx3 {\n    position: relative;\n    top: 2px;\n    width: 14px\n}\n\n.k-hpx3,.NxixXE {\n    margin-right: 8px\n}\n\n.dR4MsS {\n    margin-left: 4px;\n    padding: 2px;\n    color: #2874f0;\n    font-weight: 500;\n    cursor: pointer\n}\n\n.M-Eial {\n    color: #878787;\n    margin-left: 12px\n}\n\n.yNvE5P {\n    position: relative\n}\n\n.yNvE5P ._39dHoV {\n    width: 30%;\n    font-size: 16px;\n    font-weight: 500;\n    color: #212121;\n    margin-top: 22px;\n    margin-right: 0\n}\n\n.yNvE5P .ipA\\+ax {\n    height: 16px;\n    margin-right: 8px;\n    vertical-align: middle\n}\n\n.yNvE5P .JL0JMI {\n    min-width: 200px;\n    height: 48px;\n    border-radius: 2px;\n    font-size: 16px;\n    font-weight: 500;\n    margin-top: 16px\n}\n\n.yNvE5P .T6kEur {\n    min-width: 400px\n}\n\n.yNvE5P .tU3qwQ {\n    font-size: 16px\n}\n\n.yNvE5P .n-nqSX {\n    margin-top: 20px;\n    margin-bottom: -6px\n}\n\n.yNvE5P .tYEhnP {\n    position: absolute;\n    right: 0;\n    top: -20px\n}\n\n.yNvE5P .a\\+Jb3q {\n    background: #f0f0f0;\n    border: 1px solid #e0e0e0;\n    color: #212121;\n    font-weight: 500;\n    text-transform: uppercase;\n    padding: 12px 22px;\n    margin-top: 16px;\n    cursor: pointer\n}\n\n.yNvE5P .a\\+Jb3q .-kjDwf,.yNvE5P .a\\+Jb3q .HylNff {\n    display: inline-block\n}\n\n.yNvE5P .a\\+Jb3q .-kjDwf {\n    margin-right: 8px;\n    width: 8px\n}\n\n.yNvE5P .V\\+hsFy {\n    background: #fff;\n    padding: 2px 24px 22px\n}\n\n.JJn65V {\n    background: #f0f0f0;\n    border: 1px solid #e0e0e0;\n    color: #212121;\n    font-weight: 500;\n    text-transform: uppercase;\n    padding: 12px 23px\n}\n\n.JJn65V ._2bKhfl,.JJn65V .uFkCDM {\n    display: inline-block\n}\n\n.JJn65V ._2bKhfl {\n    margin-right: 7px\n}\n\n.UcGy1x {\n    background: #fff;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    cursor: auto\n}\n\n.tO-fJu {\n    padding: 16px 0 0;\n    border-right: 1px solid #f0f0f0;\n    width: 239px;\n    display: inline-block;\n    vertical-align: top\n}\n\n.tO-fJu .OAwAM3 {\n    width: 100%;\n    font-size: 14px;\n    color: #212121;\n    cursor: pointer;\n    padding: 10px 12px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    position: relative\n}\n\n.tO-fJu .OAwAM3 ._1pMmov {\n    color: #878787\n}\n\n.tO-fJu .OAwAM3:last-child {\n    margin-bottom: 0;\n    padding-bottom: 12px\n}\n\n.tO-fJu .OAwAM3.IgI4xo {\n    background: #f1f3f6;\n    color: #2874f0;\n    font-weight: 500\n}\n\n.tO-fJu .OAwAM3.IgI4xo ._6O97Ym {\n    display: inline-block\n}\n\n.tO-fJu .OAwAM3 ._6O97Ym {\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg);\n    position: absolute;\n    right: 12px;\n    display: none\n}\n\n.tO-fJu .OAwAM3 ._6O97Ym .HvoFNv {\n    fill: #2874f0\n}\n\n.tO-fJu .OAwAM3 ._6O97Ym .h43Rfh {\n    fill: #878787\n}\n\n._3-dT0F {\n    -webkit-flex: 1 1;\n    -ms-flex: 1 1;\n    flex: 1 1\n}\n\n._3-dT0F ._9H2w8X {\n    margin: 17px 21px\n}\n\n._3-dT0F ._9H2w8X .y3EAh7 {\n    display: inline-block;\n    vertical-align: top;\n    padding-top: 2px\n}\n\n._3-dT0F ._9H2w8X .uwx07K {\n    display: inline-block;\n    line-height: 1.43;\n    font-size: 14px;\n    color: #212121;\n    width: 90%;\n    margin-left: 14px\n}\n\n._3-dT0F ._6ldcbz {\n    margin-bottom: 0\n}\n\n._3-dT0F ._8B1M2r {\n    margin-left: 40px\n}\n\n._3-dT0F ._8B1M2r .hBbM-Z {\n    padding: 12px 16px\n}\n\n.dAUVoQ {\n    padding: 10px 16px\n}\n\n._4\\+bH3v {\n    margin: 24px 0 12px;\n    padding: 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    background: none;\n    border: none;\n    box-shadow: none\n}\n\n.H-o5Te {\n    max-height: 200px!important\n}\n\n.eWZDca {\n    color: #2874f0;\n    font-weight: 500;\n    cursor: pointer\n}\n\n.-oyLfM,.VxEdZO {\n    margin-top: 10px\n}\n\n.nEBxgg {\n    font-size: 18px;\n    font-weight: 500;\n    padding: 20px 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    width: auto;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.aZdvht {\n    color: #2874f0\n}\n\n.as0MRP {\n    margin-top: 10px\n}\n\n._0vYT9Y {\n    border: 1px solid #f0f0f0;\n    margin-bottom: 10px\n}\n\n._2GecQR {\n    width: 472px;\n    height: 720px\n}\n\n._9a2UeO {\n    margin-top: 20px;\n    padding: 24px\n}\n\n._9a2UeO .mXQQY4 {\n    margin-bottom: 20px;\n    font-size: 16px;\n    line-height: 20px;\n    font-weight: 500\n}\n\n._9a2UeO .wVo\\+85 {\n    margin-bottom: 16px\n}\n\n._9a2UeO .wVo\\+85 .R0K5eK {\n    width: 124px;\n    height: 48px;\n    margin-right: 12px;\n    display: inline-block\n}\n\n._9a2UeO .wVo\\+85 .R0K5eK .oTS-ai {\n    padding: 12px 8px;\n    line-height: 24px;\n    font-size: 16px\n}\n\n._9a2UeO .wVo\\+85 .wi1TO2 {\n    max-width: 200px;\n    display: inline-block;\n    vertical-align: top\n}\n\n._9a2UeO .wVo\\+85 .wi1TO2 ._1QzWb4 {\n    height: 50px;\n    font-size: 16px;\n    font-weight: 500;\n    min-width: 200px;\n    margin-left: 15px\n}\n\n._9a2UeO ._2tlwN7 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    margin-top: 4px\n}\n\n._9a2UeO ._2tlwN7 .hE1rxu {\n    font-size: 12px;\n    color: #878787;\n    margin-right: 7px\n}\n\n._9a2UeO .W7V0WC {\n    display: inline-block;\n    padding-left: 20px;\n    font-size: 12px;\n    color: #878787\n}\n\n._9a2UeO .xsmTYm {\n    color: #2874f0;\n    font-weight: 500;\n    font-size: 12px;\n    margin-left: 4px\n}\n\n.kWg9VW {\n    width: 472px;\n    height: 720px\n}\n\n.ABu3L0 {\n    font-weight: var(--font-regular);\n    line-height: 18px\n}\n\n.-up47D,.ABu3L0 {\n    font-size: var(--font-size-12)\n}\n\n.-up47D {\n    color: var(--color-blue-lighter3);\n    font-weight: var(--font-medium)\n}\n\n._8WPor7 {\n    max-height: 200px!important\n}\n\n.ECdysm {\n    padding: 24px 24px 16px;\n    font-size: var(--font-size-20);\n    font-weight: var(--font-medium);\n    line-height: 28px;\n    letter-spacing: -.02px;\n    border-bottom: 1px solid var(--color-grey-grade16)\n}\n\n.Kwoe37 {\n    overflow: auto;\n    max-height: 720px\n}\n\n.hFkQQQ {\n    background-color: var(--color-white-bg)\n}\n\n.kOwHJB {\n    border-bottom: 1px solid var(--color-grey-grade16)\n}\n\n.N01JRm {\n    padding: 16px 20px 20px;\n    color: var(--color-grey-grade14);\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-end;\n    -ms-flex-align: end;\n    align-items: flex-end;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.vIDB2L {\n    font-size: var(--font-size-10);\n    line-height: 16px\n}\n\n.DP5MqR,.vIDB2L {\n    font-weight: 400;\n    letter-spacing: .01px\n}\n\n.DP5MqR {\n    font-size: var(--font-size-12);\n    line-height: 18px\n}\n\n.NSAorQ {\n    padding: 0 20px 24px\n}\n\n.Rm3bP7 {\n    padding: 24px 0 16px;\n    color: var(--color-grey-grade5);\n    font-size: var(--font-size-17);\n    line-height: 24px;\n    font-weight: var(--font-medium);\n    letter-spacing: -.01px\n}\n\n.\\+RyfTU {\n    padding-top: 100%\n}\n\n.OLCFH4 {\n    border: .5px solid var(--color-grey-grade2);\n    border-bottom: none\n}\n\n.OLCFH4:last-child {\n    border-bottom: .5px solid var(--color-grey-grade2)\n}\n\n.OLCFH4 {\n    border-collapse: collapse;\n    color: var(--color-grey-grade5)\n}\n\n.jEwXmt {\n    border-right: .5px solid var(--color-grey-grade2)\n}\n\n.jEwXmt:last-child {\n    border-right: 0\n}\n\n.jEwXmt {\n    padding: 12px;\n    width: 24%;\n    text-align: center\n}\n\n.jEwXmt:first-child {\n    text-align: left\n}\n\n.jEwXmt:last-child {\n    text-align: right;\n    width: 27%\n}\n\n._735CKv,.jEwXmt {\n    font-size: var(--font-size-14);\n    font-weight: var(--font-regular);\n    line-height: 20px;\n    letter-spacing: -.01px\n}\n\n._735CKv {\n    text-align: left!important;\n    background: var(--color-grey-grade10);\n    color: var(--color-grey-grade14)\n}\n\n.tIAaXN {\n    font-weight: var(--font-medium)\n}\n\n._579U8Q {\n    color: var(--color-grey-grade5)\n}\n\n.Vh\\+igg {\n    font-size: var(--font-size-17);\n    font-weight: var(--font-medium);\n    line-height: 24px;\n    letter-spacing: -.01px;\n    padding: 24px 0 8px\n}\n\n.exwlpu,.NevQUN,.Smpt3\\+ {\n    font-size: var(--font-size-14);\n    font-weight: var(--font-regular);\n    line-height: 20px;\n    letter-spacing: -.01px\n}\n\n._9cu6oX {\n    width: 432px;\n    text-wrap: wrap;\n    word-wrap: break-word\n}\n\n.qPifRp {\n    padding-bottom: 16px\n}\n\n.JD-Ukx {\n    margin-left: 16px\n}\n\n.JD-Ukx:last-child {\n    padding-bottom: 16px\n}\n\n.XwQsgy {\n    padding: 24px 0 16px;\n    color: var(--color-grey-grade5);\n    font-size: var(--font-size-17);\n    line-height: 24px;\n    font-weight: var(--font-medium);\n    letter-spacing: -.01px\n}\n\n.u7NexN {\n    color: var(--color-grey-grade8);\n    font-weight: var(--font-regular)\n}\n\n._8N1-dE,.u7NexN {\n    font-size: var(--font-size-14);\n    line-height: 20px;\n    letter-spacing: -.01px\n}\n\n._8N1-dE {\n    color: var(--color-grey-grade14);\n    padding: 8px 12px;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    background: var(--color-grey-grade10);\n    font-weight: var(--font-medium)\n}\n\n._8N1-dE,.mH3q\\+y {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    border: .5px solid var(--color-grey-grade2);\n    border-bottom: none\n}\n\n.mH3q\\+y {\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    box-sizing: border-box\n}\n\n.mH3q\\+y:last-child {\n    border-bottom: .5px solid var(--color-grey-grade2)\n}\n\n.mH3q\\+y {\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    color: var(--neutral-900);\n    font-size: var(--font-size-14);\n    font-weight: var(--font-regular);\n    line-height: 20px;\n    letter-spacing: -.01px\n}\n\n.XuLBI9 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    box-sizing: border-box;\n    border-right: .5px solid var(--color-grey-grade2)\n}\n\n.XuLBI9:last-child {\n    border-right: 0\n}\n\n.XuLBI9 {\n    padding: 12px;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-align-self: stretch;\n    -ms-flex-item-align: stretch;\n    align-self: stretch;\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    white-space: pre-line;\n    word-break: break-word\n}\n\n.Iq9iwr {\n    min-width: 36px;\n    -webkit-flex: 0;\n    -ms-flex: 0;\n    flex: 0;\n    font-size: var(--font-size-12);\n    font-weight: var(--font-regular);\n    line-height: 18px\n}\n\n.IScxJI {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: flex-end;\n    -ms-flex-align: end;\n    align-items: flex-end\n}\n\n.tx1Yyo {\n    padding-bottom: 12px\n}\n\n.tx1Yyo:last-child {\n    padding-bottom: 0\n}\n\n.-YoKW\\+,.fXe0af {\n    -webkit-flex: 2;\n    -ms-flex: 2;\n    flex: 2\n}\n\n.fXe0af {\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.ecHAXB {\n    margin-top: 16px;\n    display: inline-block\n}\n\n.-uON95 {\n    width: 176px\n}\n\n.DIy-fT {\n    height: 48px;\n    font-size: 16px;\n    text-transform: uppercase;\n    font-weight: 400;\n    vertical-align: top\n}\n\n.DIy-fT:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.oQRGAq {\n    margin-top: 0\n}\n\n.omfGid {\n    margin: 8px 0;\n    font-size: 12px\n}\n\n.KpCBSK {\n    padding: 0 32px;\n    height: 40px;\n    border-radius: 2px;\n    border: 1px solid #e0e0e0!important;\n    color: #2874f0!important;\n    font-size: 14px;\n    font-weight: 500;\n    background: #fff!important;\n    margin-left: auto;\n    cursor: pointer;\n    text-transform: uppercase;\n    box-shadow: none!important\n}\n\n.KpCBSK:disabled {\n    color: #878787;\n    cursor: auto\n}\n\n._3xyPzM {\n    color: #212121;\n    cursor: auto\n}\n\n._4KLnOp,._4KLnOp .iZtsl8,.OSvHUb {\n    display: inline-block\n}\n\n._4KLnOp .iZtsl8 {\n    vertical-align: top;\n    height: 48px;\n    border: 1px solid #e0e0e0;\n    background: #fff\n}\n\n._4KLnOp .iZtsl8 .t2oPYA {\n    height: 46px;\n    width: 146px;\n    line-height: 46px;\n    text-align: center;\n    display: inline-block;\n    vertical-align: middle\n}\n\n._4KLnOp .iZtsl8 .sW4x2A {\n    width: 18px;\n    height: 18px;\n    margin: 10px;\n    vertical-align: middle\n}\n\n._4KLnOp .SelUzT {\n    margin: 0 12px;\n    display: inline-block\n}\n\n.NaEfbt {\n    padding: 4px 4px 4px 0;\n    font-weight: 500;\n    color: #2874f0;\n    cursor: pointer\n}\n\n.vld4D- {\n    max-width: 480px\n}\n\n.vld4D- .UhDN7V {\n    font-size: 20px;\n    font-weight: 500;\n    padding: 16px 16px 20px\n}\n\n.vld4D- .uTbSs3 {\n    padding: 16px 16px 0;\n    border-top: 1px solid #f0f0f0\n}\n\n.vld4D- .uTbSs3 ._2JrSWY {\n    font-size: 16px;\n    color: #212121;\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis\n}\n\n.vld4D- .uTbSs3 ._2zrC40 {\n    font-size: 12px;\n    color: #878787;\n    padding-bottom: 4px\n}\n\n.kQCHPX {\n    background: #fff\n}\n\n.WMMwb0 {\n    font-weight: 500;\n    color: #878787\n}\n\n._3j-e05,.WMMwb0 {\n    border-bottom: 1px solid #f0f0f0;\n    font-size: 16px\n}\n\n.JXc6bF {\n    border-top: 1px dashed #e0e0e0\n}\n\n.aGG93s {\n    background-color: #f7fffa;\n    border-top: 1px solid #f0f0f0;\n    border-bottom: 1px solid #f7fffa\n}\n\n.FWzgYE {\n    color: #111112\n}\n\n.MAkSeF {\n    font-weight: 500\n}\n\n.f2OdtV {\n    margin: 24px 15px 8px\n}\n\n.f2OdtV .MSy\\+kM {\n    width: 29px;\n    height: 36px;\n    margin-right: 20px;\n    float: left\n}\n\n.f2OdtV ._6tpxyP {\n    font-size: 14px;\n    font-weight: 500;\n    line-height: 1.29;\n    display: block;\n    margin-left: 49px;\n    color: #878787\n}\n\n.aGYB9V {\n    position: relative;\n    z-index: 2\n}\n\n.aGYB9V .MEyTXE {\n    width: inherit\n}\n\n.aGYB9V .DVx33\\+ {\n    position: absolute\n}\n\n.aGYB9V .ljI\\+mf {\n    position: fixed\n}\n\n.aGYB9V .thKi-s {\n    top: 0!important\n}\n\n.aGYB9V .bH5psi {\n    bottom: 0;\n    top: auto!important\n}\n\n.aGYB9V ._2U3yBd {\n    -webkit-transform: translateY(0)!important;\n    transform: translateY(0)!important\n}\n\n.kQCHPX {\n    background: var(--color-white-bg);\n    border-radius: 2px;\n    min-height: 47px;\n    box-shadow: 0 1px 1px 0 rgba(0,0,0,.2)\n}\n\n.WMMwb0 {\n    display: block;\n    text-transform: uppercase;\n    padding: 13px 24px;\n    font-weight: var(--font-medium);\n    color: var(--color-grey-grade4);\n    min-height: 47px;\n    border-radius: 2px 2px 0 0\n}\n\n._3j-e05,.WMMwb0 {\n    border-bottom: 1px solid var(--color-grey-grade1);\n    font-size: var(--font-size-16)\n}\n\n._3j-e05 {\n    padding: 0 24px\n}\n\n.JXc6bF {\n    border-top: 1px dashed var(--color-grey-grade2);\n    margin-bottom: 20px\n}\n\n.aGG93s {\n    background-color: var(--color-green-bg);\n    margin-left: -24px;\n    margin-right: -24px;\n    border-top: 1px solid var(--color-grey-grade1);\n    border-bottom: 1px solid var(--color-green-bg);\n    padding-left: 24px;\n    padding-right: 24px\n}\n\n.FWzgYE {\n    color: var(--color-grey-grade25)\n}\n\n.MAkSeF {\n    font-weight: var(--font-medium)\n}\n\n.m6h8X7 {\n    width: 376px;\n    display: inline-block;\n    vertical-align: top\n}\n\n@media only screen and (max-width: 1240px) {\n    .m6h8X7 {\n        width:280px!important\n    }\n}\n\n.jmf23e {\n    position: relative;\n    width: 100%;\n    display: inline-block;\n    vertical-align: top\n}\n\n.aKjCkH,.jmf23e.RP7vYv {\n    width: 368px;\n    margin-left: 16px\n}\n\n.aKjCkH {\n    display: inline-block;\n    height: 100%;\n    position: relative;\n    vertical-align: top\n}\n\n.aKjCkH ._30h8Qw {\n    top: 72px\n}\n\n@media only screen and (max-width: 1240px) {\n    .aKjCkH {\n        width:280px!important\n    }\n}\n\n.yxWtY3 {\n    background-color: #fff;\n    border-radius: 2px;\n    border: 1px solid #e0e0e0;\n    min-height: 47px\n}\n\n.s\\+dubz {\n    position: absolute;\n    width: 100%\n}\n\n.vq2cZB {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    background-color: #fff;\n    box-shadow: 0 1px 4px rgba(0,0,0,.12);\n    margin: 24px 0;\n    border-radius: 2px\n}\n\n.vq2cZB,.vq2cZB ._1lfKrm {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.vq2cZB ._1lfKrm {\n    border-bottom: 1px solid #f0f0f0;\n    padding: 22px 17px 20px 28px;\n    cursor: pointer\n}\n\n.vq2cZB ._1lfKrm .V3y55O {\n    margin-right: 12px\n}\n\n.vq2cZB ._1lfKrm .V3y55O .IyE3lb {\n    width: 32px;\n    max-height: 32px\n}\n\n.vq2cZB ._1lfKrm .qTkcqZ {\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    font-weight: 400;\n    font-size: 12px;\n    line-height: 16px;\n    letter-spacing: .3px;\n    color: #111112\n}\n\n.vq2cZB ._1lfKrm .cVslTo {\n    margin-left: 10px;\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.vq2cZB .lEzBIn {\n    padding: 12px 0;\n    text-align: center;\n    font-weight: 500;\n    font-size: 14px;\n    line-height: 20px;\n    letter-spacing: .2px;\n    color: #2a55e5\n}\n\n.-TssG\\+,.CsYfzl {\n    width: 416px\n}\n\n.CsYfzl .fnQmAY {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin-bottom: 12px\n}\n\n.CsYfzl .fnQmAY .eClJDs {\n    width: 16px;\n    height: 16px;\n    margin-right: 8px\n}\n\n.CsYfzl .fnQmAY .HbRfBn {\n    font-weight: 500;\n    font-size: 16px;\n    line-height: 24px;\n    letter-spacing: .15px;\n    color: #111112\n}\n\n.CsYfzl .vUGYUt {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.CsYfzl .vUGYUt ._1lfKrm {\n    padding: 15px 12px 15px 6px;\n    border-radius: 6px;\n    border: 1px solid #f0f0f0;\n    margin-bottom: 8px\n}\n\n.CsYfzl .u\\+-H\\+W {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.CsYfzl .u\\+-H\\+W .oEuVQa {\n    margin-bottom: 16px\n}\n\n.CsYfzl .u\\+-H\\+W .oEuVQa .C26K9b {\n    font-weight: 500;\n    font-size: 16px;\n    line-height: 24px;\n    letter-spacing: .15px;\n    color: #111112;\n    margin-bottom: 8px\n}\n\n.mfyHGh {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    border-bottom: 1px solid #f0f0f0;\n    padding: 22px 17px 20px 28px;\n    cursor: pointer\n}\n\n.mfyHGh .pG4I5c {\n    margin-right: 12px\n}\n\n.mfyHGh .pG4I5c .MFSjTQ {\n    width: 32px;\n    max-height: 32px\n}\n\n.mfyHGh .VF3Ywl {\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    font-weight: 400;\n    font-size: 12px;\n    line-height: 16px;\n    letter-spacing: .3px;\n    color: #111112\n}\n\n.mfyHGh .NQ6JrL {\n    margin-left: 10px;\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.m1IPak {\n    max-height: 70vh;\n    overflow: auto\n}\n\n.m1IPak .eLNQwZ {\n    padding: 20px 24px 16px;\n    border-bottom: 1px solid #f0f0f0;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.m1IPak .eLNQwZ,.m1IPak .eLNQwZ .MPLcpa {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.m1IPak .eLNQwZ .MPLcpa {\n    margin-right: 20px;\n    cursor: pointer\n}\n\n.m1IPak .eLNQwZ .gUOBNB {\n    font-weight: 500;\n    font-size: 20px;\n    line-height: 28px;\n    letter-spacing: .15px;\n    color: #111112\n}\n\n.m1IPak .bqYPh9 {\n    padding: 16px 24px 20px\n}\n\n.b5rp0W.qbuikV {\n    color: #717478;\n    text-decoration: line-through\n}\n\n.b5rp0W.As1Btb {\n    color: #008c00\n}\n\n.b5rp0W.WGN099 {\n    margin-right: 5px\n}\n\n.HRZecL {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    margin: 20px 0;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.HRZecL ._59Raj\\+ {\n    max-width: 68%\n}\n\n.HRZecL ._59Raj\\+ .k9WPjB {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.HRZecL ._59Raj\\+ .k9WPjB .rVnkyn {\n    margin-left: 8px;\n    min-height: 16px;\n    min-width: 16px\n}\n\n.HRZecL ._59Raj\\+ .k9WPjB .qFotRH {\n    margin-right: 8px;\n    height: 20px;\n    width: 20px\n}\n\n.HRZecL .tQmGSZ {\n    font-size: 12px;\n    color: #878787\n}\n\n._6HMXbu {\n    color: #388e3c\n}\n\n.apKoLn {\n    color: #008c00\n}\n\n.kOqkzE {\n    font-size: 12px\n}\n\n.zOX3pk {\n    width: 12px;\n    height: 12px;\n    margin: 0 2px -1px 0\n}\n\n._4KQt7X {\n    margin-top: 0;\n    padding: 6px 16px 6px 0\n}\n\n.gbB1CW {\n    padding: 10px;\n    margin-left: 16px\n}\n\n.eHYo5p {\n    vertical-align: middle\n}\n\n._3t4sCf {\n    margin-left: 16px\n}\n\n.-xKMRp {\n    color: #878787;\n    padding-left: 3px\n}\n\n.oSbCnc {\n    padding-top: 12px;\n    display: inline-block\n}\n\n.oSbCnc .jb1pSX {\n    display: inline-block;\n    vertical-align: top;\n    margin-right: 12px\n}\n\n.oSbCnc .Jjkk7N {\n    padding: 14px 32px;\n    font-size: 16px;\n    text-transform: uppercase;\n    vertical-align: top\n}\n\n.FsBy2H {\n    margin-left: 6px;\n    font-weight: 500\n}\n\n.FsBy2H .QwuEaK {\n    margin-left: 6px;\n    color: #388e3c\n}\n\n.cki3\\+s {\n    padding-top: 14px\n}\n\n.cki3\\+s .wEZKBv {\n    font-size: 16px;\n    display: block;\n    font-weight: 500\n}\n\n.cki3\\+s .JUP8ZZ {\n    height: 48px;\n    font-size: 16px;\n    margin-top: 14px;\n    text-transform: uppercase;\n    font-weight: 400;\n    padding: 0 64px\n}\n\n.cki3\\+s .JUP8ZZ:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.V1ymRQ .q2GseN {\n    color: #878787;\n    margin-left: 12px\n}\n\n.V1ymRQ .rx4P9A {\n    margin-right: 6px\n}\n\n.DkUocK,.V1ymRQ .kfOkMj {\n    font-weight: 500\n}\n\n.DkUocK,.xhLzvu {\n    margin-top: 16px\n}\n\n.xhLzvu {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.xhLzvu .jIbgdC {\n    margin-top: 2px\n}\n\n.OEYoWa {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    margin-top: 16px\n}\n\n.OEYoWa .j7baMV {\n    position: relative;\n    width: 320px;\n    margin-right: 20px\n}\n\n.OEYoWa .j7baMV .L0cDUo,.OEYoWa .j7baMV .X5lRGa,.OEYoWa .j7baMV .YIuLTS {\n    position: absolute;\n    right: 16px;\n    top: 16px;\n    color: #2874f0;\n    text-transform: uppercase;\n    cursor: pointer\n}\n\n.OEYoWa .j7baMV .YIuLTS {\n    top: 20px;\n    right: 20px;\n    width: 16px;\n    height: 16px\n}\n\n.OEYoWa .j7baMV .X5lRGa {\n    top: 20px\n}\n\n.OEYoWa .j7baMV .yjUtwx {\n    padding-right: 40px\n}\n\n.OEYoWa .j7baMV ._1B1\\+IB {\n    padding-right: 65px\n}\n\n._3axBtx,.cLLuYN {\n    display: inline-block;\n    min-width: 200px;\n    height: 50px;\n    font-weight: 500;\n    font-size: 16px\n}\n\n._3axBtx {\n    display: block;\n    margin-top: 16px\n}\n\n._4m8Fki {\n    color: #26a541;\n    font-weight: 500\n}\n\n.JQMHmU {\n    color: #ff4343\n}\n\n.nNTNQ2 {\n    margin: 0 8px -3px 0\n}\n\n.ANjy1p {\n    color: #878787;\n    margin-left: 8px\n}\n\n._2LDOLK {\n    float: right;\n    font-size: 12px\n}\n\n.La7ecn {\n    color: #000\n}\n\n._8sCsHZ {\n    margin-left: 4px;\n    color: #2874f0;\n    font-weight: 500;\n    cursor: pointer\n}\n\n.IR4o9E {\n    font-size: 12px;\n    font-weight: 500\n}\n\n.IR4o9E .qh-nOc {\n    line-height: 20px;\n    margin-top: 10px\n}\n\n.rna859 {\n    margin-top: 16px\n}\n\n.rna859 ._89sRcA {\n    height: 48px;\n    min-width: 200px;\n    font-size: 16px;\n    font-weight: 400;\n    text-transform: uppercase;\n    margin-bottom: 12px\n}\n\n.rna859 ._89sRcA:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.s9kWnm {\n    display: inline-block\n}\n\n.kQQHRZ {\n    padding: 15px 10px\n}\n\n._0YzDTu {\n    font-size: var(--font-size-16);\n    font-weight: var(--font-medium)\n}\n\n.cseoAf {\n    margin-top: 20px;\n    margin-bottom: 5px\n}\n\n.aL5nkf {\n    font-weight: var(--font-medium);\n    display: block\n}\n\n.rAmG6t {\n    color: var(--color-grey-grade4);\n    margin-top: 3px;\n    display: block\n}\n\n._0ax4im {\n    margin-right: 17px;\n    float: left\n}\n\n.XRHWiK {\n    margin-right: 24px\n}\n\n.-ibosy {\n    overflow: hidden;\n    margin-top: 25px\n}\n\n.no3Lli {\n    float: left\n}\n\n.zrwKNv {\n    display: block;\n    padding-top: 10px;\n    color: var(--color-brand-blue)\n}\n\n.Ox\\+Yqg,.zrwKNv {\n    font-weight: var(--font-medium);\n    cursor: pointer\n}\n\n.Ox\\+Yqg {\n    margin-left: 5px;\n    border-radius: 50% 50%;\n    background-color: var(--color-white-bg);\n    color: var(--color-grey-grade4);\n    width: 16px;\n    height: 16px;\n    font-size: 11px;\n    line-height: 16px;\n    border: 1px solid var(--color-grey-grade2);\n    box-shadow: 0 0 1px 0 rgba(0,0,0,.2);\n    padding: 1px 4px 0;\n    vertical-align: middle\n}\n\n.el2-ND {\n    color: #878787;\n    float: right;\n    margin-right: 16px;\n    max-width: 230px\n}\n\n.el2-ND:after {\n    clear: both\n}\n\n.QvXtQy {\n    margin-bottom: 10px\n}\n\n.QvXtQy:last-child {\n    margin-bottom: 0\n}\n\n.Mz\\+dkh {\n    max-width: 400px;\n    border-radius: 2px;\n    box-shadow: 0 0 4px 1px rgba(0,0,0,.2)!important\n}\n\n.QTSLaI {\n    cursor: pointer\n}\n\n.ro6H2M {\n    border-bottom: none!important\n}\n\n.ro6H2M .Lug4rB {\n    display: inline-block;\n    width: 32px\n}\n\n.ro6H2M .AH1JxO {\n    color: #878787\n}\n\n.ro6H2M .d3Wytb {\n    border: 2px solid #979797;\n    border-radius: 2px\n}\n\n.ro6H2M .rASOoY {\n    margin-left: 16px;\n    color: #878787\n}\n\n.ro6H2M .rASOoY .F0D7JA {\n    margin-left: 6px;\n    font-weight: 500\n}\n\n.zPyQpQ {\n    margin-top: 16px;\n    margin-left: 32px\n}\n\n.v8DyVx {\n    padding: 10px 20px;\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex\n}\n\n.XwmE\\+i {\n    vertical-align: middle\n}\n\n.cRo7pF {\n    margin-top: 0\n}\n\n.G6r9rE {\n    height: 48px;\n    font-size: 16px;\n    text-transform: uppercase;\n    font-weight: 400\n}\n\n.G6r9rE:focus {\n    box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2)\n}\n\n.dGTIaw {\n    color: #ff9f00;\n    font-size: 14px;\n    float: right\n}\n\n.kO9YLR {\n    margin-bottom: 8px\n}\n\n.yVy1cJ {\n    margin-top: 16px\n}\n\n.yVy1cJ .JImv2J {\n    margin-bottom: 16px\n}\n\n._3wN6b9 {\n    margin-left: 8px\n}\n\n.p4vqU- .Xc15wH {\n    margin-top: 16px\n}\n\n.p4vqU- .Xc15wH,.p4vqU- .Xc15wH ._5dYzt4 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.p4vqU- .Xc15wH ._5dYzt4 {\n    max-width: 316px;\n    font-size: 12px;\n    color: #ff6161\n}\n\n.p4vqU- .Xc15wH ._5dYzt4 .WFHtaG {\n    margin-left: 8px\n}\n\n.p4vqU- .Xc15wH .W1Yqsk {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    position: relative\n}\n\n.p4vqU- .Xc15wH .W1Yqsk .zZKvIp {\n    border-radius: 2px;\n    width: 316px;\n    height: 48px;\n    margin-bottom: 8px\n}\n\n.p4vqU- .Xc15wH .W1Yqsk .zZKvIp .Jrkfbo {\n    height: 48px\n}\n\n.p4vqU- .Xc15wH .W1Yqsk .zZKvIp .bK8fou {\n    padding-top: 14px;\n    line-height: 20px\n}\n\n.p4vqU- .Xc15wH .W1Yqsk .LxD1Fc {\n    position: absolute;\n    font-size: 14px;\n    line-height: 20px;\n    color: #2874f0;\n    cursor: pointer;\n    right: 16px;\n    top: 14px\n}\n\n.p4vqU- .Xc15wH .W1Yqsk .LxD1Fc.B4hPWe {\n    color: #dbdbdb;\n    cursor: default\n}\n\n.p4vqU- .Xc15wH ._6nSGLj {\n    height: 48px;\n    width: 200px;\n    font-size: 14px;\n    margin-bottom: 12px;\n    margin-left: 15px\n}\n\n.p4vqU- .Xc15wH ._6nSGLj.JG3VTw {\n    margin-left: 0;\n    width: 144px\n}\n\n.DX8c38 {\n    margin-top: 8px\n}\n\n._9uGz9m .DKxJ\\+d {\n    line-height: 20px\n}\n\n._9uGz9m .u-62Zb {\n    display: inline-block;\n    color: #878787;\n    font-size: 14px;\n    line-height: 16px;\n    margin-left: 12px\n}\n\n._9uGz9m .u-62Zb .kBALEW {\n    display: inline-block;\n    margin-right: 5px\n}\n\n._9uGz9m .u-62Zb .yniFq7 {\n    display: inline-block;\n    width: 12px\n}\n\n._9uGz9m ._0p-MKP {\n    margin-left: 8px\n}\n\n.XOIHOX {\n    color: #878787;\n    margin-top: 8px;\n    font-size: 14px\n}\n\n.XOIHOX.D-rb-- {\n    color: #ff6161\n}\n\n.XOIHOX.GpNKC- {\n    color: #388e3c\n}\n\n.tV5u6D {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.tGDVm9 li {\n    line-height: 1.4\n}\n\n.pIaA57 {\n    margin-top: 8px;\n    margin-bottom: 0!important\n}\n\n.upXlSE {\n    margin: 0!important\n}\n\n.myB1GM {\n    border-bottom: 1px solid #f0f0f0;\n    padding: 16px 25px\n}\n\n.myB1GM .j\\+SSYu {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.myB1GM .j\\+SSYu .tCIxC2 {\n    width: 24px;\n    height: 24px;\n    margin-right: 16px;\n    margin-top: -3px\n}\n\n.myB1GM .j\\+SSYu ._9-suWS {\n    display: inline-block;\n    width: 100%\n}\n\n.myB1GM._58zmDr {\n    background-color: #f5faff\n}\n\n.SC\\+loY {\n    margin-bottom: 8px\n}\n\n.P1LZ6A {\n    margin-left: 0;\n    padding-left: 44px\n}\n\n._3F1Gzk {\n    color: #878787;\n    margin-left: 12px\n}\n\n.ChobKE {\n    font-size: 25px;\n    width: 33px;\n    position: relative;\n    padding-left: 2px;\n    margin-top: 8px;\n    margin-left: -16px;\n    vertical-align: middle;\n    display: inline-block;\n    line-height: 0;\n    color: #878787\n}\n\n.OUvfK7 {\n    margin-top: 0\n}\n\n.sYxRi2 {\n    margin-left: 5px\n}\n\n.FoKPj2 .j\\+SSYu {\n    margin-left: 18px\n}\n\n.NBup7D {\n    margin-top: 2px\n}\n\n.Lbh7qX {\n    margin-top: 16px\n}\n\n.cVifDP {\n    font-size: 16px;\n    padding: 15px 48px\n}\n\n.tRNnhV {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    margin-top: 14px;\n    margin-bottom: 18px;\n    line-height: 20px;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    font-size: var(--font-size-14)\n}\n\n.tRNnhV .StSonO {\n    margin-right: 8px\n}\n\n.tRNnhV ._5dZPYM {\n    margin-left: 2px;\n    color: var(--color-blue-lighter3)\n}\n\n.rrjt11 {\n    padding: 20px 0 20px 24px;\n    font-weight: 500;\n    font-size: var(--font-size-20);\n    line-height: 28px;\n    letter-spacing: .15px;\n    border-bottom: 1px solid var(--color-border-grey)\n}\n\n.QnrMzx {\n    padding: 24px\n}\n\n.QnrMzx ._83H1JS {\n    padding-bottom: 24px;\n    font-size: var(--font-size-14);\n    line-height: 20px\n}\n\n.QnrMzx ._9sYaRe {\n    font-weight: 600;\n    font-size: var(--font-size-14);\n    line-height: 28px\n}\n\n.QnrMzx .S7UmMw {\n    padding: 12px 9px 12px 12px\n}\n\n.QnrMzx .S7UmMw ._7KvXJy {\n    margin-left: 10px;\n    list-style: disc\n}\n\n.sy\\+RuC {\n    max-width: 60%!important\n}\n\n.G3Ogss,.G3Ogss .aMEz1U {\n    text-align: center\n}\n\n.G3Ogss .aMEz1U {\n    width: auto;\n    padding: 10px 34.5px;\n    font-size: var(--font-size-14);\n    line-height: 20px;\n    color: var(--color-blue-lighter3);\n    border: 1px solid var(--color-blue-lighter5);\n    background-color: var(--color-white-bg);\n    margin-top: 16px\n}\n\n.sih0k1,.xNW9HG {\n    background-color: var(--color-blue-lighter4)\n}\n\n.sT6-QQ {\n    padding: 12px 24px 20px 16px;\n    margin-bottom: 16px;\n    border-radius: 4px;\n    border-color: #e4e7ed;\n    background-color: #fff;\n    width: -webkit-fit-content;\n    width: -moz-fit-content;\n    width: fit-content\n}\n\n.sT6-QQ .q-hzvR {\n    line-height: 28px;\n    color: #111112;\n    margin-bottom: 8px\n}\n\n.sT6-QQ .kMKYlw {\n    color: #2a55e5;\n    font-weight: 600;\n    line-height: 24px\n}\n\n.vJJ76\\+ {\n    padding: 40px\n}\n\n.vJJ76\\+ .nGqPVY {\n    width: -webkit-fit-content;\n    width: -moz-fit-content;\n    width: fit-content;\n    border: 1px solid #e4e7ed;\n    border-radius: 4px;\n    font-size: 14px\n}\n\n.vJJ76\\+ .nGqPVY .q-hzvR {\n    padding: 24px\n}\n\n.vJJ76\\+ .nGqPVY .ltX\\+fV {\n    line-height: 28px;\n    color: #111112;\n    margin-bottom: 8px\n}\n\n.vJJ76\\+ .nGqPVY .qiSfFW {\n    font-weight: 700\n}\n\n.vJJ76\\+ .nGqPVY .qS1Str {\n    background-color: #cfe1ff;\n    border-radius: 0 0 7px 7px;\n    line-height: 16px\n}\n\n.vJJ76\\+ .nGqPVY .qS1Str .L2Ra2e {\n    padding: 12px 14px;\n    color: #111112;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.vJJ76\\+ .nGqPVY .qS1Str .L2Ra2e .jFKYaW {\n    margin-right: 6px;\n    margin-top: 1px\n}\n\n._43s\\+N5 {\n    font-weight: 600;\n    font-size: 14px;\n    line-height: 20px;\n    margin-bottom: 8px\n}\n\n.UiVrUD {\n    padding-bottom: 16px;\n    color: #717478\n}\n\n.TjQBGe {\n    padding-bottom: 4px\n}\n\n.EqhW5C {\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row\n}\n\n.EqhW5C,.EqhW5C .m5jviN {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.EqhW5C .m5jviN {\n    margin-left: 130px;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    width: 230px;\n    text-align: center\n}\n\n.EqhW5C .m5jviN ._23ElK\\+ {\n    margin-bottom: 35px;\n    text-align: center\n}\n\n.qS1Str {\n    margin-top: 24px\n}\n\n.qS1Str .L2Ra2e {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    padding: 12px 16.5px;\n    background-color: #f0f5ff;\n    border: 1px solid #cfe1ff;\n    border-radius: 4px\n}\n\n.qS1Str .L2Ra2e .jFKYaW {\n    margin-right: 6.5px\n}\n\n.FmvbqM {\n    color: #2874f0;\n    display: block;\n    margin: 24px auto auto;\n    height: 40px\n}\n\n.FmvbqM,.FmvbqM:hover {\n    box-shadow: none\n}\n\n.JtSutH {\n    min-height: 480px;\n    background-color: #fff;\n    position: relative;\n    padding: 50px 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.JtSutH .E1ZmZa {\n    max-width: 500px;\n    margin: 0 auto\n}\n\n.JtSutH .p-ay6L {\n    text-align: center\n}\n\n.JtSutH .p-ay6L .mx7\\+Ho {\n    color: #ff6161;\n    font-size: 12px;\n    margin-top: 6px;\n    font-weight: 500\n}\n\n.JtSutH .c1\\+C89 {\n    text-align: center;\n    width: 380px;\n    margin: 0 auto\n}\n\n.JtSutH .c1\\+C89 .v1mGW1 {\n    color: #212121;\n    line-height: 1.43\n}\n\n.JtSutH .\\+rd88T {\n    margin: 52px auto 0;\n    border: none;\n    border-bottom: 1px solid #c2c2c2;\n    font-size: 24px;\n    text-align: center;\n    outline: none;\n    padding-bottom: 8px;\n    display: block\n}\n\n.JtSutH .\\+rd88T::-webkit-input-placeholder {\n    color: #c2c2c2\n}\n\n.JtSutH .\\+rd88T::-moz-placeholder {\n    color: #c2c2c2\n}\n\n.JtSutH .\\+rd88T:-ms-input-placeholder {\n    color: #c2c2c2\n}\n\n.JtSutH .\\+rd88T::placeholder {\n    color: #c2c2c2\n}\n\n.JtSutH .K9LFZi {\n    margin-top: 32px;\n    text-transform: uppercase;\n    padding: 18px 50px\n}\n\n.JtSutH .Pe4R-P {\n    font-weight: 500;\n    cursor: pointer;\n    color: #2874f0\n}\n\n.JtSutH .dlyB3\\+ {\n    font-size: 16px;\n    margin-bottom: 18px\n}\n\n.JtSutH .Alyp58 {\n    margin-top: 18px;\n    font-size: 16px;\n    font-weight: 500\n}\n\n.JtSutH .Alyp58 ._9BV4W6 {\n    color: #878787\n}\n\n.JtSutH .Alyp58 .x1eM8O {\n    margin-left: 6px\n}\n\n.JtSutH .Alyp58 .iP02BG {\n    margin-top: 8px;\n    margin-bottom: 8px;\n    color: #878787\n}\n\n.JtSutH .pMVr7B {\n    vertical-align: middle;\n    height: 28px;\n    margin-right: 12px\n}\n\n.JtSutH .aBMJmb {\n    margin-top: 50px;\n    font-size: 14px;\n    color: #878787;\n    font-weight: 500\n}\n\n.JtSutH .DTX2s0 {\n    padding: 10px\n}\n\n.JtSutH .DTX2s0 .SH4duq {\n    padding: 20px 10px 0;\n    color: #212121;\n    font-weight: 400\n}\n\n.JtSutH .DTX2s0 .SH4duq ._6Wbl1K {\n    display: inline-block;\n    width: 32px\n}\n\n.JtSutH .DTX2s0 .SH4duq .jrQit- {\n    margin-left: 4px;\n    color: #2874f0;\n    font-weight: 500\n}\n\n.JtSutH .DTX2s0 .IFIlEu {\n    padding: 10px;\n    font-size: 14px;\n    line-height: 24px\n}\n\n.JtSutH .DTX2s0 .IFIlEu ._6jvgxU {\n    font-weight: 500;\n    color: #878787\n}\n\n.JtSutH .DTX2s0 .IFIlEu .wAkmof {\n    font-weight: 400;\n    color: #212121\n}\n\n.QB\\+3jg {\n    margin: 0 0 2px;\n    padding: 14px 0;\n    border: none\n}\n\n._6nUcxz {\n    min-height: 480px;\n    background-color: #fff;\n    padding: 16px 190px\n}\n\n._6nUcxz .-A7A0- {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between;\n    padding-top: 4px;\n    padding-bottom: 4px\n}\n\n._6nUcxz .-A7A0- .jC80Ac {\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1\n}\n\n._6nUcxz .-A7A0- .jC80Ac .FaMIhr {\n    max-width: 500px;\n    height: 24px\n}\n\n._6nUcxz .-A7A0- .uLncHQ {\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: flex-end;\n    -ms-flex-pack: end;\n    justify-content: flex-end\n}\n\n._6nUcxz .-A7A0- .uLncHQ .pI8Jmr {\n    max-width: 250px;\n    height: 24px\n}\n\n._6nUcxz .m6dxjt {\n    margin-top: 16px;\n    color: #717478;\n    font-size: 14px;\n    line-height: 20px\n}\n\n._6nUcxz .qdp1fc {\n    margin-top: 16px;\n    margin-left: -16px;\n    color: var(--deep-black);\n    border-spacing: 16px 8px;\n    font-size: 14px\n}\n\n._6nUcxz .HbOFsP {\n    margin-top: 16px\n}\n\n._6nUcxz .HbOFsP .zlWzmr {\n    color: #ff6161;\n    font-size: 12px;\n    margin-top: 4px;\n    font-weight: 500\n}\n\n._6nUcxz .HbOFsP .HrShwK {\n    width: 100%;\n    resize: none;\n    outline: none;\n    background-color: transparent;\n    border: 1px solid #d8d8d8;\n    color: #000;\n    font-size: 14px;\n    height: 40px;\n    border-radius: 4px;\n    text-indent: 12px\n}\n\n._6nUcxz .HbOFsP .HrShwK::-webkit-input-placeholder {\n    color: #c2c2c2\n}\n\n._6nUcxz .HbOFsP .HrShwK::-moz-placeholder {\n    color: #c2c2c2\n}\n\n._6nUcxz .HbOFsP .HrShwK:-ms-input-placeholder {\n    color: #c2c2c2\n}\n\n._6nUcxz .HbOFsP .HrShwK::placeholder {\n    color: #c2c2c2\n}\n\n._6nUcxz .HbOFsP .HrShwK:focus {\n    border: 1px solid #2874f0\n}\n\n._6nUcxz .qAbrkU,._6nUcxz .wddQZz {\n    margin-top: 16px;\n    text-transform: uppercase;\n    padding: 8px 16px;\n    width: 100%;\n    border-radius: 4px;\n    height: 48px\n}\n\n._6nUcxz .qAbrkU {\n    color: #fff;\n    background-color: #878787\n}\n\n._6nUcxz .qAbrkU:hover {\n    box-shadow: none\n}\n\n._6nUcxz .TqvtJe {\n    font-weight: 500;\n    cursor: pointer;\n    color: #2874f0\n}\n\n._6nUcxz ._2rqL5b {\n    margin-top: 16px\n}\n\n._6nUcxz ._4pFpx1 {\n    margin-top: 12px;\n    font-size: 12px\n}\n\n._6nUcxz ._4pFpx1 .PSGRvE .rUN70Y {\n    margin-left: 2px\n}\n\n._6nUcxz ._4pFpx1 .PyMUq3 {\n    width: 100%\n}\n\n._6nUcxz ._4pFpx1 .PyMUq3 .TqvtJe {\n    color: #2874f0;\n    display: inline-block\n}\n\n._6nUcxz ._4pFpx1 .DMKMG5 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    text-align: center;\n    margin-top: 20px;\n    margin-bottom: 12px;\n    color: #717478\n}\n\n._6nUcxz ._4pFpx1 .DMKMG5:after,._6nUcxz ._4pFpx1 .DMKMG5:before {\n    content: \"\";\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    border-bottom: 1px solid #e4e7ed\n}\n\n._6nUcxz ._4pFpx1 .DMKMG5:not(:empty):before {\n    margin-right: 4px\n}\n\n._6nUcxz ._4pFpx1 .DMKMG5:not(:empty):after {\n    margin-left: 4px\n}\n\n._6nUcxz .z4tvK- {\n    vertical-align: middle;\n    height: 28px;\n    margin-right: 12px\n}\n\n._6nUcxz .kwlVfs {\n    margin-top: 24px;\n    font-size: 12px;\n    color: #717478\n}\n\n.NhcH5y {\n    margin: 0 0 2px;\n    padding: 14px 0;\n    border: none\n}\n\n.N6hxNf {\n    min-height: 150px;\n    -webkit-user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    user-select: none;\n    background-color: #f1f3f6\n}\n\n.N6hxNf.Z9mXxy {\n    background-color: #fff\n}\n\n.N6hxNf .qxIniA {\n    font-size: 16px;\n    text-transform: uppercase\n}\n\n.N6hxNf .n5JPDH,.N6hxNf .qxIniA {\n    margin-top: 20px;\n    padding: 15px 75px\n}\n\n.N6hxNf .n5JPDH {\n    font-size: 14px;\n    color: #fff;\n    background-color: #2874f0;\n    border: 1px solid #d5d7db;\n    border-radius: 3px;\n    box-shadow: none\n}\n\n.N6hxNf .R8pZXi {\n    padding: 20px 26px;\n    background-color: #ffffe6;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);\n    margin-bottom: 8px\n}\n\n.N6hxNf .R8pZXi .CWGJdt {\n    margin: 0 8px;\n    display: inline-block;\n    width: 18px;\n    height: 18px\n}\n\n.jaSkQG {\n    border: none;\n    display: block;\n    background: none\n}\n\n.AkSbZV {\n    background-color: #fff\n}\n\n.AkSbZV .ZAMZIT {\n    float: right\n}\n\n.q96aW8 {\n    text-align: center;\n    width: 400px\n}\n\n.q96aW8 .-OKleu .Zf1U3A {\n    min-height: 90px\n}\n\n.q96aW8 .-OKleu .L2WFfi {\n    width: 100%\n}\n\n.q96aW8 .-OKleu .KEqudP {\n    padding: 0 40px\n}\n\n.q96aW8 .-OKleu .jP9aRF {\n    font-weight: 500;\n    font-size: 20px;\n    line-height: 34px;\n    margin-top: 28px\n}\n\n.q96aW8 .-OKleu ._2jWTl2 {\n    color: #212121;\n    font-size: 16px;\n    line-height: 20px\n}\n\n.q96aW8 .-OKleu ._5Dp\\+M5 {\n    font-size: 16px;\n    color: #4a4a4a;\n    margin-top: 32px\n}\n\n.q96aW8 .-OKleu .vKsqC- {\n    color: #333;\n    font-size: 16px;\n    font-weight: 500\n}\n\n.q96aW8 .d8fis7 {\n    border-top: 1px solid #f0f0f0;\n    margin-top: 40px;\n    font-weight: 500;\n    height: 48px;\n    line-height: 48px;\n    color: #2874f0;\n    cursor: pointer;\n    display: inline-block\n}\n\n.q96aW8 .d8fis7:nth-of-type(2) {\n    border-left: 1px solid #f0f0f0\n}\n\n.e8M9Qa {\n    cursor: pointer\n}\n\n.-SFksP {\n    margin-top: 16px;\n    box-shadow: 0 1px 1px 0 rgba(0,0,0,.2)\n}\n\n._5O7zjw,._9JPhpq {\n    width: 560px\n}\n\n._5O7zjw {\n    height: auto;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    border-bottom: 1px solid #e4e7ed;\n    border-radius: 4px 4px 0 0;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.x8kdzm {\n    padding-top: 24px;\n    padding-left: 24px;\n    padding-bottom: 24px\n}\n\n.mCXZjV {\n    font-weight: 500;\n    letter-spacing: .15px;\n    color: #111112\n}\n\n.mCXZjV,.zHBMWz {\n    height: auto;\n    width: 338px;\n    font-size: 16px;\n    line-height: 24px\n}\n\n.zHBMWz {\n    font-weight: 400\n}\n\n.BOQsoY {\n    margin-right: 40px;\n    -webkit-align-self: self-end;\n    -ms-flex-item-align: self-end;\n    align-self: self-end\n}\n\n.Dxd64Q {\n    height: auto;\n    margin-left: 24px;\n    margin-bottom: 24px\n}\n\n.Ep\\+KH3 {\n    padding-top: 24px;\n    padding-bottom: 16px;\n    font-weight: 500;\n    font-size: 14px;\n    line-height: 20px;\n    letter-spacing: .2px;\n    color: #111112\n}\n\n.x2zffc {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row\n}\n\n.X80BIU {\n    position: relative;\n    margin-right: 12px;\n    width: 140px\n}\n\n.BycNHV,.vQ8QIS {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.BycNHV {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    width: 140px;\n    height: 200px;\n    border-radius: 4px;\n    border: 1px solid #e4e7ed\n}\n\n.pFKRwE {\n    margin-left: 8px;\n    margin-top: 8px;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.t78Zx5 {\n    font-weight: 400;\n    letter-spacing: .15px;\n    -webkit-text-decoration-line: line-through;\n    -moz-text-decoration-line: line-through;\n    text-decoration-line: line-through;\n    color: rgba(113,116,120,.66)\n}\n\n.QsC7Th,.t78Zx5 {\n    font-size: 14px;\n    line-height: 20px\n}\n\n.QsC7Th {\n    font-weight: 500;\n    letter-spacing: .2px;\n    color: #111112;\n    padding-left: 4px\n}\n\n.PU7cR- {\n    font-weight: 500;\n    font-size: 16px;\n    line-height: 24px;\n    letter-spacing: .15px;\n    color: #008c00;\n    padding-left: 8px;\n    padding-bottom: 8px\n}\n\n.UcYhAT {\n    height: 28px;\n    width: 28px;\n    position: absolute;\n    top: 0;\n    right: 0;\n    border: 1.175px solid #e4e7ed;\n    border-radius: 0 4px;\n    z-index: 2;\n    background-color: #fff\n}\n\n.H1-t\\+k {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    font-weight: 500;\n    font-size: 14px;\n    line-height: 20px;\n    text-align: center;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    margin: auto;\n    letter-spacing: .2px;\n    color: #111112;\n    padding-top: 3px;\n    padding-bottom: 3px\n}\n\n.w90Fg0 {\n    padding: 1px\n}\n\n.fOaS6u {\n    position: relative\n}\n\n.fOaS6u,.fOaS6u ._9CpqQc {\n    width: 100%;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-flex: none;\n    -ms-flex: none;\n    flex: none\n}\n\n.fOaS6u ._9CpqQc {\n    overflow-x: hidden;\n    padding-bottom: 64px;\n    margin-bottom: -64px\n}\n\n.fOaS6u .a7hc-p {\n    -webkit-flex: none;\n    -ms-flex: none;\n    flex: none\n}\n\n.fOaS6u .a7hc-p .N27L5l {\n    transition: -webkit-transform .4s ease-in-out;\n    transition: transform .4s ease-in-out;\n    transition: transform .4s ease-in-out,-webkit-transform .4s ease-in-out;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row;\n    -webkit-align-items: stretch;\n    -ms-flex-align: stretch;\n    align-items: stretch\n}\n\n.fOaS6u .a7hc-p .Ip5wZF,.fOaS6u .a7hc-p .N27L5l {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.fOaS6u .a7hc-p .Ip5wZF {\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column\n}\n\n.fOaS6u .VEpKu3 {\n    z-index: 1\n}\n\n.fOaS6u ._1PYfJ4 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-self: center;\n    -ms-flex-item-align: center;\n    align-self: center;\n    pointer-events: auto;\n    padding: 40px 15px;\n    box-shadow: 1px 2px 10px -1px rgba(0,0,0,.3);\n    background-color: hsla(0,0%,100%,.98);\n    cursor: pointer\n}\n\n.fOaS6u ._1PYfJ4.I9Y8ja {\n    padding: 30px 10px\n}\n\n.fOaS6u ._1PYfJ4._9NxR8C {\n    padding: 15px 10px\n}\n\n.fOaS6u ._1PYfJ4:hover {\n    box-shadow: 1px 2px 10px 1px rgba(0,0,0,.3)\n}\n\n.fOaS6u .FlBR-N {\n    display: none\n}\n\n.fOaS6u .lw1N6J {\n    border-radius: 0 4px 4px 0\n}\n\n.fOaS6u .iUw5id {\n    border-radius: 4px 0 0 4px\n}\n\n.fOaS6u .C4nmao {\n    position: absolute;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    pointer-events: none;\n    height: 100%;\n    top: 0\n}\n\n.fOaS6u .C4nmao.Gik4c7 {\n    left: 0\n}\n\n.fOaS6u .C4nmao.Gik4c7.Qakecl {\n    background-image: linear-gradient(270deg,rgba(241,243,246,0),rgba(241,243,246,.91) 91%,#f1f3f6)\n}\n\n.fOaS6u .C4nmao._9c6b2a {\n    right: 0\n}\n\n.fOaS6u .C4nmao._9c6b2a.Qakecl {\n    background-image: linear-gradient(90deg,rgba(241,243,246,0),#f1f3f6)\n}\n\n.fOaS6u .C4nmao.uMvbVq {\n    opacity: 0\n}\n\n.fOaS6u .eIkYmX {\n    fill: #212121\n}\n\n.fOaS6u .nOYZ40 {\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.fOaS6u .sSHwkh {\n    left: 0\n}\n\n.fOaS6u .Tf226U {\n    right: 0\n}\n\n.WccAh0 {\n    overflow: hidden\n}\n\n.z5TYkX {\n    position: relative;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-flex: none;\n    -ms-flex: none;\n    flex: none\n}\n\n.PMW1ze {\n    position: relative\n}\n\n.O7cPFY,.PMW1ze {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: row;\n    -ms-flex-direction: row;\n    flex-direction: row\n}\n\n.O7cPFY {\n    position: absolute;\n    right: 24px;\n    top: 22px\n}\n\n.mCrRXG {\n    background-color: #fff;\n    border: 1.4px solid;\n    border-radius: 10px;\n    height: 20px;\n    width: 20px;\n    margin: 2px\n}\n\n.FlBR-N {\n    display: none\n}\n\n.uMvbVq {\n    opacity: .2\n}\n\n.a\\+I24x {\n    margin-left: 10px\n}\n\n.a\\+I24x,.nOYZ40 {\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center\n}\n\n.nOYZ40 {\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.JxFEK3 {\n    margin: 0 auto;\n    min-width: 978px;\n    max-width: 1680px;\n    padding: 8px\n}\n\n._48O0EI {\n    width: 100%;\n    position: relative\n}\n\n._26vYxp {\n    padding: 60px 0\n}\n\n.DOjaWF {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.DOjaWF.gdgoEp {\n    -webkit-flex-flow: column;\n    -ms-flex-flow: column;\n    flex-flow: column\n}\n\n.DOjaWF.YJG4Cf {\n    -webkit-flex-flow: row;\n    -ms-flex-flow: row;\n    flex-flow: row\n}\n\n.DOjaWF.YJG4Cf .e3H7\\+D {\n    width: auto;\n    max-width: 100%;\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1\n}\n\n.cPHDOP {\n    display: block\n}\n\n.MfqIAz {\n    position: -webkit-sticky;\n    position: sticky;\n    top: 64px;\n    bottom: 0;\n    z-index: 2;\n    -webkit-align-self: flex-start;\n    -ms-flex-item-align: start;\n    align-self: flex-start\n}\n\n.flzJUw {\n    position: absolute;\n    padding: 10px 0;\n    width: 100vw;\n    z-index: 2;\n    background: #fff\n}\n\n.Cnl9Jt .qu\\+CGn {\n    border: none;\n    box-shadow: none;\n    margin: 24px 0 0 -18px\n}\n\n.Cnl9Jt .qu\\+CGn .YWE0zj {\n    color: #212121;\n    font-size: 22px\n}\n\n.Cnl9Jt .qu\\+CGn .LaIFva {\n    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMi4xNzUuMzhsNS4yNjIgNS4xOEwxMi43MS4zOGwxLjYyIDEuNTk1TDcuNDM3IDguNzYuNTQzIDEuOTc1IiBmaWxsPSIjMzUzNTM1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=) no-repeat;\n    display: inline-block;\n    width: 25px;\n    height: 11px\n}\n\n.Cnl9Jt .IbygeN {\n    display: none\n}\n\n.Cnl9Jt ._5Pmv5S {\n    border-top: 2px solid #f0f0f0;\n    cursor: pointer\n}\n\n.Cnl9Jt ._5Pmv5S .rYpYQA {\n    font-size: 24px;\n    padding: 32px 0 32px 24px;\n    font-weight: 500\n}\n\n.Cnl9Jt ._5Pmv5S .cWwIYq {\n    padding: 40px 24px 0 0;\n    text-align: center\n}\n\n.BqeoFJ {\n    text-align: center\n}\n\n.BqeoFJ .qDTB\\+B {\n    color: #212121;\n    font-weight: 500;\n    font-size: 26px;\n    margin: 20px 0 10px\n}\n\n.BqeoFJ .S21h4B {\n    color: #878787;\n    font-size: 20px;\n    margin-bottom: 8px\n}\n\n.BqeoFJ .cek-1Z {\n    text-transform: uppercase;\n    font-size: 16px\n}\n\n.R8SIw1 {\n    font-size: 24px!important\n}\n\n._5PSPrw {\n    height: 265px\n}\n\n.fkclp .X8l5DD,.fkhp .X8l5DD {\n    margin-bottom: 16px\n}\n\n.xcFiqU {\n    padding: 0 4px\n}\n\n.xcFiqU:first-child {\n    padding-left: 0;\n    padding-right: 8px\n}\n\n.xcFiqU:last-child {\n    padding-right: 0;\n    padding-left: 8px\n}\n\n.xcFiqU .YzZtjs {\n    display: block;\n    width: 100%;\n    border-radius: 2px;\n    box-shadow: 2px 2px 4px 0 rgba(0,0,0,.08);\n    overflow: hidden\n}\n\n._2JAbja {\n    background-color: #fff;\n    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);\n    border-radius: 2px\n}\n\n._2JAbja .NkB2Gu {\n    overflow: hidden;\n    position: relative\n}\n\n._2JAbja .NkB2Gu .IBMftM {\n    position: absolute;\n    top: 0;\n    width: 100%;\n    text-align: center;\n    opacity: 0;\n    transition: opacity .4s ease;\n    pointer-events: none;\n    display: block\n}\n\n._2JAbja .NkB2Gu .IBMftM .pE8BKD {\n    display: block;\n    width: 100%\n}\n\n.ie9 ._2JAbja .NkB2Gu .IBMftM,.ie10 ._2JAbja .NkB2Gu .IBMftM {\n    z-index: -1\n}\n\n.ie9 ._2JAbja .NkB2Gu .IBMftM.Qc1Ee\\+,.ie10 ._2JAbja .NkB2Gu .IBMftM.Qc1Ee\\+ {\n    z-index: 0\n}\n\n._2JAbja .NkB2Gu .IBMftM.Qc1Ee\\+ {\n    opacity: 1;\n    pointer-events: auto\n}\n\n._2JAbja ._2cpdTJ {\n    width: 100%;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n._2JAbja ._2cpdTJ .yHLE1Y {\n    border-top: 1px solid #f9f9f9\n}\n\n._2JAbja ._2cpdTJ .IBMftM {\n    text-align: center;\n    padding: 20px 0;\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1;\n    width: 20%\n}\n\n._2JAbja ._2cpdTJ .IBMftM ._503Yza {\n    font-size: 14px;\n    font-weight: 500;\n    opacity: .4\n}\n\n._2JAbja ._2cpdTJ .IBMftM .G3aX02 {\n    opacity: .4;\n    margin-top: 4px;\n    height: 15px\n}\n\n._2JAbja ._2cpdTJ .IBMftM.R-Y0dq {\n    border-bottom: 3px solid #ffe11b;\n    color: #000\n}\n\n._2JAbja ._2cpdTJ .IBMftM.R-Y0dq ._503Yza {\n    opacity: 1\n}\n\n._2JAbja .IBMftM {\n    display: inline-block\n}\n\n.Gz5B6p {\n    margin-bottom: 16px\n}\n\n.Xx1qdf {\n    overflow: hidden;\n    position: relative\n}\n\n.Xx1qdf .DFBRyT {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start;\n    position: relative;\n    transition: -webkit-transform .2s ease-out;\n    transition: transform .2s ease-out;\n    transition: transform .2s ease-out,-webkit-transform .2s ease-out\n}\n\n.Xx1qdf .uAVwFa {\n    display: inline-block\n}\n\n.Xx1qdf .oKHX8A,.Xx1qdf .V-du7y {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-justify-content: space-around;\n    -ms-flex-pack: distribute;\n    justify-content: space-around;\n    position: absolute;\n    top: calc(50% - 52px);\n    width: 47px;\n    height: 104px;\n    background-color: hsla(0,0%,100%,.98);\n    box-shadow: 0 1px 5px 0 rgba(0,0,0,.11);\n    transition: opacity .1s ease-in\n}\n\n.Xx1qdf .oKHX8A.-a0s39,.Xx1qdf .V-du7y.-a0s39 {\n    opacity: 0\n}\n\n.Xx1qdf .oKHX8A {\n    left: 0;\n    border-bottom-right-radius: 4px;\n    border-top-right-radius: 4px\n}\n\n.Xx1qdf .V-du7y {\n    right: 0;\n    border-bottom-left-radius: 4px;\n    border-top-left-radius: 4px\n}\n\n.Xx1qdf ._5qUUwS {\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.Xx1qdf .GX5Sym {\n    fill: #212121\n}\n\n.fkclp .pfZzx5,.fkhp .pfZzx5 {\n    margin-bottom: 16px\n}\n\n.pfZzx5 {\n    max-width: 1680px\n}\n\n.pfZzx5 .edj-gW {\n    height: 280px;\n    width: 100%;\n    overflow: hidden\n}\n\n.pfZzx5 .rxRGiP {\n    position: relative;\n    display: block;\n    height: 280px;\n    width: 100%;\n    text-align: center\n}\n\n.pfZzx5 .rxRGiP img {\n    position: absolute;\n    height: 280px;\n    min-width: 1680px;\n    width: 100%;\n    left: 50%;\n    -webkit-transform: translateX(-50%);\n    transform: translateX(-50%)\n}\n\n.FxA5bb {\n    line-height: 1.14;\n    box-shadow: 0 1px 8px 0 rgba(0,0,0,.06)\n}\n\n.FxA5bb .AJr9O1 {\n    font-size: 24px;\n    padding: 32px 32px 24px;\n    font-weight: 500\n}\n\n.FxA5bb .WP\\+xaG {\n    padding: 8px;\n    cursor: pointer\n}\n\n.FxA5bb ._0QLjKd {\n    border-radius: 4px;\n    background-color: #fff;\n    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1)\n}\n\n.FxA5bb .yDG9nF {\n    margin: 0 32px\n}\n\n.FxA5bb .UGdJNa {\n    margin-bottom: 32px\n}\n\n.FxA5bb .JuQHKh {\n    width: 140px;\n    margin: auto 0\n}\n\n.FxA5bb ._1ep97T {\n    padding: 24px;\n    width: calc(100% - 140px)\n}\n\n.FxA5bb .IZmacL {\n    font-size: 21px;\n    font-weight: 500\n}\n\n.FxA5bb .IkiekO {\n    font-size: 18px;\n    color: #878787;\n    margin-top: 4px\n}\n\n.FxA5bb .CC\\+KBC {\n    margin-top: 16px;\n    color: #fff;\n    background: #2874f0;\n    border-radius: 2px;\n    border: none;\n    padding: 8px 16px;\n    box-shadow: none\n}\n\n.FxA5bb .UQVUbC {\n    font-size: 15px;\n    font-weight: 500\n}\n\n.x6h4az {\n    padding: 25px 15px;\n    display: inline-block;\n    vertical-align: top;\n    width: 100%;\n    max-height: 366px;\n    text-align: center\n}\n\n.x6h4az .ZHvV68 {\n    font-size: 14px;\n    font-weight: 500;\n    margin-top: 15px;\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis\n}\n\n.x6h4az.L3DVAS .J5MN75 {\n    font-size: 16px\n}\n\n.x6h4az .J5MN75 {\n    color: #388e3c;\n    padding-top: 8px\n}\n\n.x6h4az .H0KV9w,.x6h4az .J5MN75 {\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis\n}\n\n.x6h4az .H0KV9w {\n    opacity: .6;\n    padding-top: 7px\n}\n\n.x6h4az .ctjzx- {\n    font-size: 13px;\n    font-size: 12px\\9\n}\n\n.x6h4az .ctjzx- .RMHrlf {\n    padding-top: 7px;\n    display: inline-block\n}\n\n.x6h4az .ctjzx- .F5DdNr {\n    display: inline-block;\n    text-decoration: line-through;\n    color: #535353;\n    opacity: .5\n}\n\n.x6h4az .ctjzx- ._4qu3Vi {\n    font-size: 18px;\n    font-weight: 500;\n    padding-top: 4px;\n    display: inline-block;\n    padding-right: 5px\n}\n\n.x6h4az:hover .YT6Bra {\n    -webkit-transform: scale(1.03);\n    transform: scale(1.03)\n}\n\n.yIIj9r {\n    padding: 25px 15px;\n    display: inline-block;\n    vertical-align: top;\n    width: 100%;\n    max-height: 366px;\n    text-align: center\n}\n\n.yIIj9r .VWjkTw {\n    font-size: 14px;\n    font-weight: 500;\n    margin-top: 15px;\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis\n}\n\n.yIIj9r.\\+L2dvS .azAv9n {\n    font-size: 16px\n}\n\n.yIIj9r .azAv9n {\n    color: #388e3c;\n    padding: 5px 0\n}\n\n.yIIj9r .maOi5k {\n    font-size: 13px\n}\n\n.yIIj9r .maOi5k ._7uKM9K {\n    padding-top: 7px\n}\n\n.yIIj9r .maOi5k .TeQJwG {\n    display: inline-block;\n    text-decoration: line-through;\n    color: #535353;\n    opacity: .5\n}\n\n.yIIj9r .maOi5k .l855bz {\n    display: inline-block;\n    color: #388e3c;\n    margin-left: 11px\n}\n\n.yIIj9r .maOi5k .yrdIPx {\n    font-size: 18px;\n    font-weight: 500;\n    padding-top: 4px\n}\n\n.yIIj9r:hover .kFX7yE {\n    -webkit-transform: scale(1.03);\n    transform: scale(1.03)\n}\n\n.fkclp .\\+fU5I7,.fkhp .\\+fU5I7 {\n    margin-bottom: 16px;\n    height: auto\n}\n\n.\\+fU5I7 {\n    border-top: 1px solid #eaeaea;\n    height: 100%\n}\n\n.\\+fU5I7 .OtM6a6 {\n    padding: 15px 20px;\n    border-bottom: 1px solid rgba(0,0,0,.1)\n}\n\n.\\+fU5I7 .OtM6a6 .T1JLc9 {\n    font-size: 22px;\n    line-height: 32px;\n    display: inline-block;\n    font-weight: 500\n}\n\n.\\+fU5I7 .OtM6a6 .LREkcp {\n    font-size: 14px;\n    color: #b2b2b2;\n    font-weight: 400\n}\n\n.\\+fU5I7 .OtM6a6 .HSkqBw {\n    position: relative;\n    display: inline-block;\n    margin-right: 8px;\n    margin-left: 60px;\n    font-size: 16px;\n    color: #7f7f7f;\n    vertical-align: top;\n    padding-top: 7px\n}\n\n.\\+fU5I7 .OtM6a6 .IDwP4d {\n    margin: 0 10px -8px -35px\n}\n\n.\\+fU5I7 .OtM6a6 .QK95RB {\n    float: right\n}\n\n.\\+fU5I7.rYTUay {\n    background-color: #fafafa;\n    height: 330px\n}\n\n.\\+fU5I7.rYTUay .OtM6a6 {\n    border: none;\n    padding: 20px\n}\n\n.\\+fU5I7.rYTUay .\\+n1-LK {\n    width: 96%;\n    margin: 0 auto;\n    background-color: #fff;\n    border-radius: 3px;\n    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08)\n}\n\n.\\+fU5I7._0BhqDs .HSkqBw {\n    color: #f26365;\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex\n}\n\n.\\+fU5I7._0BhqDs .HSkqBw:before {\n    display: none\n}\n\n.\\+fU5I7._0BhqDs .\\+n1-LK {\n    -webkit-filter: grayscale(1);\n    filter: grayscale(1)\n}\n\n.\\+fU5I7.\\+-abBX {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: stretch;\n    -ms-flex-align: stretch;\n    align-items: stretch;\n    overflow: hidden\n}\n\n.\\+fU5I7.\\+-abBX.QJmIca {\n    height: 362px\n}\n\n.\\+fU5I7.\\+-abBX.QJmIca .\\+n1-LK {\n    padding-top: 20px\n}\n\n.\\+fU5I7.\\+-abBX .rXiaUA {\n    width: 230px;\n    background-repeat: no-repeat;\n    background-position: bottom\n}\n\n.\\+fU5I7.\\+-abBX .UcWMXf {\n    text-align: center;\n    height: 100%;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-justify-content: flex-end;\n    -ms-flex-pack: end;\n    justify-content: flex-end;\n    padding: 28px 10px 124px\n}\n\n.\\+fU5I7.\\+-abBX .HSkqBw,.\\+fU5I7.\\+-abBX .T1JLc9 {\n    font-size: 30px;\n    line-height: 1.38;\n    font-weight: 400\n}\n\n.\\+fU5I7.\\+-abBX .T1JLc9 {\n    word-wrap: break-word\n}\n\n.\\+fU5I7.\\+-abBX .HSkqBw {\n    color: #2455f4;\n    font-size: 20px;\n    margin-top: 10px\n}\n\n.\\+fU5I7.\\+-abBX .EwiDa5 {\n    display: inline-block;\n    margin-right: 8.5px;\n    vertical-align: text-bottom\n}\n\n.\\+fU5I7.\\+-abBX .\\+n1-LK {\n    width: calc(100% - 230px)\n}\n\n.\\+fU5I7.\\+-abBX .QK95RB {\n    margin-top: 24px\n}\n\n.aM4AHX {\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1\n}\n\n.aM4AHX.osIBgR {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.lfp4zb {\n    position: relative;\n    font-size: 15px;\n    vertical-align: top;\n    font-weight: 400;\n    padding-top: 6px\n}\n\n._5urLew {\n    color: #ff6161;\n    margin: 2px 0;\n    padding: 0\n}\n\n._5urLew.nU-Olu {\n    display: inline-block;\n    margin-right: 15px;\n    color: #ff6161\n}\n\n.\\--HyqO {\n    padding: 2px 0;\n    margin: 0\n}\n\n.\\--HyqO,.\\--HyqO.nU-Olu {\n    color: #2874f0;\n    cursor: pointer\n}\n\n.\\--HyqO.nU-Olu {\n    display: inline-block;\n    margin-right: 8px\n}\n\n.G5-5K7 {\n    margin-left: 5px\n}\n\n.XJg6gu {\n    padding: 20px 0;\n    text-align: center\n}\n\n.ScrJ44,.XJg6gu {\n    display: block!important;\n    width: 100%!important\n}\n\n.ScrJ44 {\n    -webkit-flex: none;\n    -ms-flex: none;\n    flex: none;\n    height: 1px\n}\n\n.Qm\\+oKG {\n    margin-top: 24px\n}\n\n.Qm\\+oKG:hover .bwLrkG {\n    color: #2874f0\n}\n\n.Qm\\+oKG ._1tXV7R {\n    font-weight: 500;\n    color: #878787;\n    margin-bottom: 8px\n}\n\n.Qm\\+oKG .coLtpk {\n    border: 1px solid #f0f0f0;\n    padding: 16px 24px\n}\n\n.Qm\\+oKG .coLtpk:hover {\n    cursor: pointer\n}\n\n.Qm\\+oKG .XinDwe {\n    position: relative;\n    height: 96px;\n    width: 96px\n}\n\n.Qm\\+oKG .XinDwe img {\n    max-height: 100%;\n    max-width: 100%;\n    width: auto;\n    height: auto;\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    margin: auto;\n    padding: 4px\n}\n\n.Qm\\+oKG .bwLrkG {\n    font-size: 16px;\n    font-weight: 500;\n    line-height: 1;\n    text-align: left\n}\n\n.Qm\\+oKG .gYiu9o {\n    display: inline-block\n}\n\n.Qm\\+oKG .XxH-Qh {\n    margin-left: 24px;\n    -webkit-flex: 1;\n    -ms-flex: 1;\n    flex: 1\n}\n\n.Qm\\+oKG .FUEhvU {\n    vertical-align: middle;\n    margin-left: 10px\n}\n\n.Qm\\+oKG .FUEhvU.n17nz9 {\n    margin-left: 0;\n    margin-top: 6px\n}\n\n.Qm\\+oKG .XBqe3K {\n    margin-top: 10px\n}\n\n.Qm\\+oKG .sQLbvx {\n    font-size: 18px\n}\n\n.Qm\\+oKG .Fy9SoK,.Qm\\+oKG .RFWvZx {\n    font-size: 12px\n}\n\n.DShtpz {\n    width: 90%;\n    font-size: 14px;\n    margin: 0 auto;\n    background-color: #fff;\n    text-align: center;\n    padding: 10px 15px;\n    pointer-events: none;\n    position: absolute;\n    left: 50%;\n    -webkit-transform: translateX(-50%);\n    transform: translateX(-50%);\n    bottom: 0\n}\n\n.DShtpz .Y9obZf {\n    color: #388e3c\n}\n\n.DShtpz .vfSpSs {\n    color: #d23276\n}\n\n.oUss6M .\\+7E521 {\n    position: relative;\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex\n}\n\n.oUss6M .x1UMqG {\n    fill: #c2c2c2\n}\n\n.oUss6M .AeOHq\\+ {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    opacity: 0\n}\n\n.oUss6M ._7mBqRf {\n    width: 36px;\n    height: 36px;\n    border-radius: 50%;\n    background: #c62828;\n    transition: background .2s ease;\n    -webkit-transform: translateZ(0) scale(0);\n    transform: translateZ(0) scale(0);\n    position: absolute;\n    opacity: 1;\n    top: -12px;\n    left: -10px\n}\n\n.oUss6M .q9Gtj6:after,.oUss6M .q9Gtj6:before {\n    content: \"\";\n    position: absolute;\n    width: 5px;\n    height: 5px;\n    margin: -2px;\n    border-radius: 50%\n}\n\n.oUss6M .q9Gtj6:before {\n    background: #ffe11b\n}\n\n.oUss6M .q9Gtj6:after {\n    background: #ff9f00\n}\n\n.oUss6M .q9Gtj6:first-child:before {\n    -webkit-transform: translate3d(5px,-4px,0);\n    transform: translate3d(5px,-4px,0)\n}\n\n.oUss6M .q9Gtj6:first-child:after {\n    -webkit-transform: translate3d(5px,4px,0) scale(.7);\n    transform: translate3d(5px,4px,0) scale(.7)\n}\n\n.oUss6M .q9Gtj6:nth-child(2):before {\n    -webkit-transform: translate3d(-4px,5px,0);\n    transform: translate3d(-4px,5px,0)\n}\n\n.oUss6M .q9Gtj6:nth-child(2):after {\n    -webkit-transform: translate3d(4px,5px,0) scale(.7);\n    transform: translate3d(4px,5px,0) scale(.7)\n}\n\n.oUss6M .q9Gtj6:nth-child(3):before {\n    -webkit-transform: translate3d(-5px,-4px,0);\n    transform: translate3d(-5px,-4px,0)\n}\n\n.oUss6M .q9Gtj6:nth-child(3):after {\n    -webkit-transform: translate3d(-5px,4px,0) scale(.7);\n    transform: translate3d(-5px,4px,0) scale(.7)\n}\n\n.oUss6M .q9Gtj6:nth-child(4):before {\n    -webkit-transform: translate3d(-4px,-5px,0);\n    transform: translate3d(-4px,-5px,0)\n}\n\n.oUss6M .q9Gtj6:nth-child(4):after {\n    -webkit-transform: translate3d(4px,-5px,0) scale(.7);\n    transform: translate3d(4px,-5px,0) scale(.7)\n}\n\n.oUss6M.ML8FwT.nVtwZN .AeOHq\\+ {\n    -webkit-animation: AeOHq\\+ .6s ease .3s;\n    animation: AeOHq\\+ .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:first-child:before {\n    -webkit-animation: CXu\\+6N .6s ease .3s;\n    animation: CXu\\+6N .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:first-child:after {\n    -webkit-animation: _3xDUKn .6s ease .3s;\n    animation: _3xDUKn .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(2):before {\n    -webkit-animation: MiyIUn .6s ease .3s;\n    animation: MiyIUn .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(2):after {\n    -webkit-animation: bg6YfP .6s ease .3s;\n    animation: bg6YfP .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(3):before {\n    -webkit-animation: xgGXA7 .6s ease .3s;\n    animation: xgGXA7 .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(3):after {\n    -webkit-animation: _7vqUYV .6s ease .3s;\n    animation: _7vqUYV .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(4):before {\n    -webkit-animation: _8MbNZS .6s ease .3s;\n    animation: _8MbNZS .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(4):after {\n    -webkit-animation: TgF6TQ .6s ease .3s;\n    animation: TgF6TQ .6s ease .3s\n}\n\n.oUss6M.ML8FwT.nVtwZN .N1bADF {\n    -webkit-animation: btmVsZ .2s ease .3s forwards;\n    animation: btmVsZ .2s ease .3s forwards\n}\n\n.oUss6M.ML8FwT.nVtwZN ._7mBqRf {\n    -webkit-animation: QUuAKz .25s ease .2s forwards;\n    animation: QUuAKz .25s ease .2s forwards\n}\n\n.oUss6M.gREhVj .x1UMqG {\n    fill: #000;\n    opacity: .2;\n    stroke: transparent\n}\n\n.oUss6M.ML8FwT .x1UMqG {\n    fill: #ff4343;\n    opacity: .9\n}\n\n@-webkit-keyframes btmVsZ {\n    0% {\n        -webkit-transform: translateZ(0) scale(0);\n        transform: translateZ(0) scale(0)\n    }\n\n    40% {\n        -webkit-transform: translateZ(0) scale(1.2);\n        transform: translateZ(0) scale(1.2)\n    }\n\n    to {\n        -webkit-transform: translateZ(0) scale(1);\n        transform: translateZ(0) scale(1)\n    }\n}\n\n@keyframes btmVsZ {\n    0% {\n        -webkit-transform: translateZ(0) scale(0);\n        transform: translateZ(0) scale(0)\n    }\n\n    40% {\n        -webkit-transform: translateZ(0) scale(1.2);\n        transform: translateZ(0) scale(1.2)\n    }\n\n    to {\n        -webkit-transform: translateZ(0) scale(1);\n        transform: translateZ(0) scale(1)\n    }\n}\n\n@-webkit-keyframes QUuAKz {\n    0% {\n        -webkit-transform: translateZ(0) scale(0);\n        transform: translateZ(0) scale(0);\n        opacity: 1\n    }\n\n    to {\n        -webkit-transform: translateZ(0) scale(1);\n        transform: translateZ(0) scale(1);\n        opacity: 0\n    }\n}\n\n@keyframes QUuAKz {\n    0% {\n        -webkit-transform: translateZ(0) scale(0);\n        transform: translateZ(0) scale(0);\n        opacity: 1\n    }\n\n    to {\n        -webkit-transform: translateZ(0) scale(1);\n        transform: translateZ(0) scale(1);\n        opacity: 0\n    }\n}\n\n@-webkit-keyframes AeOHq\\+ {\n    0% {\n        opacity: 0\n    }\n\n    50% {\n        opacity: 1\n    }\n\n    to {\n        opacity: 0\n    }\n}\n\n@keyframes AeOHq\\+ {\n    0% {\n        opacity: 0\n    }\n\n    50% {\n        opacity: 1\n    }\n\n    to {\n        opacity: 0\n    }\n}\n\n@-webkit-keyframes CXu\\+6N {\n    to {\n        -webkit-transform: translate3d(22px,-4px,0);\n        transform: translate3d(22px,-4px,0)\n    }\n}\n\n@keyframes CXu\\+6N {\n    to {\n        -webkit-transform: translate3d(22px,-4px,0);\n        transform: translate3d(22px,-4px,0)\n    }\n}\n\n@-webkit-keyframes _3xDUKn {\n    to {\n        -webkit-transform: translate3d(14px,4px,0) scale(.7);\n        transform: translate3d(14px,4px,0) scale(.7)\n    }\n}\n\n@keyframes _3xDUKn {\n    to {\n        -webkit-transform: translate3d(14px,4px,0) scale(.7);\n        transform: translate3d(14px,4px,0) scale(.7)\n    }\n}\n\n@-webkit-keyframes MiyIUn {\n    to {\n        -webkit-transform: translate3d(-4px,22px,0);\n        transform: translate3d(-4px,22px,0)\n    }\n}\n\n@keyframes MiyIUn {\n    to {\n        -webkit-transform: translate3d(-4px,22px,0);\n        transform: translate3d(-4px,22px,0)\n    }\n}\n\n@-webkit-keyframes bg6YfP {\n    to {\n        -webkit-transform: translate3d(4px,18px,0) scale(.7);\n        transform: translate3d(4px,18px,0) scale(.7)\n    }\n}\n\n@keyframes bg6YfP {\n    to {\n        -webkit-transform: translate3d(4px,18px,0) scale(.7);\n        transform: translate3d(4px,18px,0) scale(.7)\n    }\n}\n\n@-webkit-keyframes xgGXA7 {\n    to {\n        -webkit-transform: translate3d(-22px,-4px,0);\n        transform: translate3d(-22px,-4px,0)\n    }\n}\n\n@keyframes xgGXA7 {\n    to {\n        -webkit-transform: translate3d(-22px,-4px,0);\n        transform: translate3d(-22px,-4px,0)\n    }\n}\n\n@-webkit-keyframes _7vqUYV {\n    to {\n        -webkit-transform: translate3d(-18px,4px,0) scale(.7);\n        transform: translate3d(-18px,4px,0) scale(.7)\n    }\n}\n\n@keyframes _7vqUYV {\n    to {\n        -webkit-transform: translate3d(-18px,4px,0) scale(.7);\n        transform: translate3d(-18px,4px,0) scale(.7)\n    }\n}\n\n@-webkit-keyframes _8MbNZS {\n    to {\n        -webkit-transform: translate3d(-4px,-22px,0);\n        transform: translate3d(-4px,-22px,0)\n    }\n}\n\n@keyframes _8MbNZS {\n    to {\n        -webkit-transform: translate3d(-4px,-22px,0);\n        transform: translate3d(-4px,-22px,0)\n    }\n}\n\n@-webkit-keyframes TgF6TQ {\n    to {\n        -webkit-transform: translate3d(4px,-18px,0) scale(.7);\n        transform: translate3d(4px,-18px,0) scale(.7)\n    }\n}\n\n@keyframes TgF6TQ {\n    to {\n        -webkit-transform: translate3d(4px,-18px,0) scale(.7);\n        transform: translate3d(4px,-18px,0) scale(.7)\n    }\n}\n\n.q4Cd5U {\n    background-repeat: no-repeat;\n    background-position: 50%;\n    background-size: 36px 30px;\n    min-width: 36px;\n    min-height: 30px\n}\n\n._4WELSP {\n    position: relative;\n    margin: 0 auto\n}\n\n.DByuf4 {\n    position: absolute;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    top: 0;\n    margin: auto;\n    opacity: 1;\n    max-width: 100%;\n    max-height: 100%\n}\n\n.WH5SS- {\n    width: 100%!important;\n    padding-top: 100%\n}\n\n.slAVV4 {\n    padding: 16px;\n    position: relative;\n    transition: box-shadow .2s ease-in-out;\n    -webkit-filter: none!important;\n    filter: none!important\n}\n\n.slAVV4:hover .PkadOy {\n    box-shadow: 0 10px 16px 0 rgba(0,0,0,.11)\n}\n\n.slAVV4 .xgS27m {\n    font-family: inter,sans-serif;\n    font-size: 12px;\n    font-weight: 400;\n    line-height: 14px;\n    color: #bdbdbd;\n    width: auto;\n    border-radius: 4px;\n    border: 1px solid #fff;\n    z-index: 1\n}\n\n.slAVV4 .VJA3rP {\n    position: relative;\n    display: block;\n    margin-bottom: 5px\n}\n\n.slAVV4 .dVXNbG {\n    display: inline-block;\n    vertical-align: middle;\n    font-size: 0\n}\n\n.slAVV4 .dVXNbG.QmWFnD {\n    position: absolute\n}\n\n.slAVV4 .djxJL6 {\n    height: 18px;\n    cursor: pointer\n}\n\n.slAVV4 .E0qFVK {\n    display: none\n}\n\n.slAVV4 ._43qliN {\n    display: block\n}\n\n.slAVV4 .J0mkKJ {\n    color: #878787;\n    font-size: 14px;\n    font-weight: 500;\n    overflow: hidden\n}\n\n.slAVV4 .wjcEIp {\n    padding-bottom: 5px;\n    overflow: hidden;\n    display: block\n}\n\n.slAVV4 .wjcEIp.dnhZ4S:hover {\n    color: inherit\n}\n\n.slAVV4 .wjcEIp:hover {\n    color: #2874f0\n}\n\n.slAVV4 .NqpwHC {\n    color: #878787;\n    font-size: 12px;\n    padding-bottom: 5px;\n    word-wrap: break-word\n}\n\n.slAVV4 ._4D8EN4 {\n    content: \" \";\n    height: 1px;\n    margin: 8px 0;\n    background-color: #f0f0f0\n}\n\n.slAVV4 .KlsEL9 {\n    font-weight: 500;\n    line-height: 1.29;\n    color: #878787;\n    margin-bottom: 2px\n}\n\n.slAVV4 .SMaeep {\n    padding-bottom: 16px;\n    -webkit-user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    user-select: none;\n    transition: opacity .3s;\n    opacity: 1\n}\n\n.slAVV4 .SMaeep.hsYSaR {\n    opacity: .6\n}\n\n.slAVV4 ._1jAuJU {\n    margin-top: 4px\n}\n\n.slAVV4 .DMMoT0 {\n    display: block;\n    padding: 0 10px 0 0;\n    margin: 3px 0\n}\n\n.slAVV4 .DMMoT0 .wFAXB2 {\n    margin: 4px 0 6px\n}\n\n.slAVV4 .gsypv2 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.slAVV4 .gsypv2 .FEu8FY {\n    color: #388e3c;\n    margin-top: 5px;\n    margin-right: 5px;\n    font-weight: 500\n}\n\n.slAVV4 .PkadOy {\n    display: none;\n    position: absolute;\n    left: 0;\n    width: 100%;\n    z-index: 1;\n    background-color: #fff;\n    padding: 10px 16px\n}\n\n.slAVV4 .PkadOy .f6Gdou {\n    padding-top: 10px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.slAVV4 .PkadOy .f6Gdou .ZbrgEJ {\n    display: inline-block;\n    position: relative;\n    padding-right: 6px;\n    cursor: pointer\n}\n\n.slAVV4 .PkadOy .f6Gdou .YLnTGN {\n    height: 20px;\n    width: 20px;\n    border-radius: 50%;\n    overflow: hidden;\n    box-sizing: content-box;\n    border: 3px solid #fff;\n    box-shadow: 0 0 3px 0 #c2c2c2\n}\n\n.slAVV4 .PkadOy .f6Gdou .YLnTGN._9Gh-p- {\n    box-shadow: 0 0 3px 0 #2874f0\n}\n\n.slAVV4 .PkadOy .Tnp\\+MO {\n    color: #2874f0;\n    cursor: pointer;\n    display: inline-block;\n    font-weight: 500;\n    padding-left: 5px\n}\n\n.slAVV4 .PkadOy .JXsL8R {\n    color: #2874f0;\n    font-size: 12px;\n    font-weight: 500;\n    cursor: pointer\n}\n\n.slAVV4 .PkadOy .JXsL8R .f4aArL {\n    width: 12px;\n    height: 7px;\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg)\n}\n\n.slAVV4 .PbRKsR {\n    position: absolute;\n    display: inline-block;\n    top: 12px;\n    right: 12px;\n    cursor: pointer\n}\n\n.slAVV4 .PbRKsR .VPepNh {\n    fill: #ff6161\n}\n\n.slAVV4 .PbRKsR .dEdQdQ {\n    fill: #c2c2c2\n}\n\n.slAVV4 ._5fJ2Zc {\n    position: absolute;\n    bottom: 4px;\n    display: none;\n    width: 100%;\n    padding: 0 8px\n}\n\n.Xs9QaV {\n    max-width: 800px!important;\n    min-width: 400px!important\n}\n\n.Xs9QaV.error,.Xs9QaV.loading {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center\n}\n\n.slAVV4:hover {\n    box-shadow: 0 3px 16px 0 rgba(0,0,0,.11)\n}\n\n.slAVV4:hover.qt3Pmj {\n    box-shadow: none\n}\n\n.slAVV4:hover .PkadOy {\n    display: block;\n    z-index: 2;\n    box-shadow: 0 9px 16px 0 rgba(0,0,0,.11)\n}\n\n.slAVV4:hover .wjcEIp {\n    color: #2874f0\n}\n\n.slAVV4:hover ._5fJ2Zc,.slAVV4:hover .E0qFVK {\n    display: block\n}\n\n.oNEWH3 {\n    padding: 8px!important\n}\n\n.oNEWH3 .\\+kdA62 {\n    max-height: none!important\n}\n\n.gjSKIv {\n    width: 100%;\n    box-shadow: none;\n    text-transform: capitalize;\n    font-weight: 500\n}\n\n.JsY47p {\n    border-top: 1px solid #e0e0e0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: stretch;\n    -ms-flex-align: stretch;\n    align-items: stretch\n}\n\n.JsY47p .Y1yeUl {\n    width: 278px;\n    box-shadow: 3px 0 6px -2px rgba(0,0,0,.16)\n}\n\n.JsY47p ._3PUKzl,.JsY47p .Y1yeUl {\n    display: inline-block;\n    vertical-align: top\n}\n\n.JsY47p ._3PUKzl {\n    width: calc(100% - 278px);\n    height: 100%\n}\n\n._6kAOBE {\n    overflow: hidden;\n    text-align: center\n}\n\n.G6cFc3 {\n    display: block\n}\n\n.fkclp .cNB-JV,.fkhp .cNB-JV {\n    margin-bottom: 16px\n}\n\n.cNB-JV {\n    border-top: 1px solid #e0e0e0\n}\n\n.cNB-JV ._6A9zEr {\n    padding: 15px 20px;\n    border-bottom: 1px solid rgba(0,0,0,.1);\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.cNB-JV ._6A9zEr ._9T3zhz {\n    margin-right: 12px\n}\n\n.cNB-JV ._6A9zEr .Y77NLA {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.cNB-JV ._6A9zEr .Y77NLA .iW697U {\n    font-size: 20px;\n    line-height: 32px;\n    font-weight: 500\n}\n\n.cNB-JV ._6A9zEr .Y77NLA .YnGAPj {\n    font-size: 14px;\n    color: #c2c2c2;\n    font-weight: 400\n}\n\n.cNB-JV ._6A9zEr .o3ELXX {\n    margin-left: auto\n}\n\n._6kK6mk,.cNB-JV ._0A7OCE {\n    text-align: center\n}\n\n._6kK6mk {\n    display: inline-block;\n    color: #c2c2c2;\n    margin-left: 24px;\n    font-size: 12px;\n    cursor: pointer\n}\n\n.tl9VpF {\n    padding: 2px 0 0;\n    color: #878787;\n    margin-left: 4px;\n    vertical-align: top\n}\n\n.U6FW-N {\n    width: 18px;\n    height: 16px\n}\n\n.U6FW-N .kX6HBt {\n    fill: #c2c2c2\n}\n\n.U6FW-N ._3PAgKI:hover,.U6FW-N .xW6X0P {\n    fill: #2874f0\n}\n\n.U6FW-N.aQymJL {\n    -webkit-transform: scaleY(-1);\n    transform: scaleY(-1)\n}\n\n.Y2eWgL {\n    width: 600px\n}\n\n.Y2eWgL .bvLzei {\n    overflow: hidden;\n    display: block;\n    padding: 0 10px;\n    width: calc(100% - 100px)\n}\n\n.Y2eWgL .GhOFdx {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    margin: 24px 0\n}\n\n.Y2eWgL .GhOFdx .quPtrY {\n    position: relative;\n    float: left;\n    width: 100px;\n    margin: 0 10px\n}\n\n.Y2eWgL .GhOFdx ._0h5zXC {\n    overflow: hidden;\n    text-overflow: ellipsis\n}\n\n.Y2eWgL .GhOFdx .zhRyLs {\n    font-weight: 500;\n    font-size: 18px;\n    display: block;\n    cursor: pointer;\n    margin-bottom: 2px\n}\n\n.Y2eWgL .GhOFdx .zhRyLs:hover {\n    color: #2874f0\n}\n\n.Y2eWgL .GhOFdx .u\\+OALu {\n    margin-bottom: 8px;\n    line-height: 1.5\n}\n\n.Y2eWgL .GhOFdx .u\\+OALu ._6Glr82 {\n    padding-left: 8px;\n    font-weight: 500;\n    color: #878787\n}\n\n.Y2eWgL .GhOFdx .u\\+OALu ._6Glr82 .Zq8eOJ {\n    margin: 0 3px;\n    color: #878787\n}\n\n.Y2eWgL .GhOFdx .zkAFGH {\n    margin-bottom: 5px\n}\n\n.Y2eWgL .GhOFdx .zkAFGH .InvIM6 {\n    font-size: 14px;\n    font-weight: 500\n}\n\n.Y2eWgL .GhOFdx .zkAFGH .CE-EHc,.Y2eWgL .GhOFdx .zkAFGH .GEsIFY {\n    font-size: 14px;\n    margin-left: 12px;\n    color: #878787;\n    font-weight: 400\n}\n\n.Y2eWgL .hnk\\+nt {\n    border-bottom: 1px solid #f0f0f0;\n    width: 600px;\n    margin-bottom: 10px\n}\n\n.Y2eWgL ._3OnY4Z {\n    margin: 16px 30px 30px\n}\n\n.Y2eWgL ._3OnY4Z .\\+3-HZf {\n    color: #000;\n    padding: 2px 0;\n    background-color: #fff\n}\n\n.Y2eWgL ._3OnY4Z .zhRyLs {\n    padding-left: 12px;\n    font-size: 14px;\n    color: #212121;\n    font-weight: 500\n}\n\n.Y2eWgL ._3OnY4Z ._4q4-Sd {\n    line-height: 1.4;\n    font-size: 14px;\n    color: #212121;\n    margin: 12px 0 9px;\n    overflow: hidden\n}\n\n._23BI2I {\n    cursor: pointer;\n    padding: 0 8px;\n    position: relative\n}\n\n._0sje3Z {\n    z-index: 1;\n    right: 0;\n    white-space: nowrap;\n    display: none;\n    position: absolute;\n    padding: 12px 24px 12px 12px;\n    font-size: 12px;\n    color: #878787;\n    border: 1px solid rgba(0,0,0,.05);\n    box-shadow: 0 4px 8px 0 rgba(0,0,0,.1)\n}\n\n.NsXBt8 {\n    padding: 5px 0\n}\n\n.NsXBt8:hover {\n    color: #2874f0\n}\n\n.NsXBt8._1F9SL9:hover,.NsXBt8.RRs7ev {\n    color: #ff6161\n}\n\n._23BI2I:hover ._0sje3Z {\n    display: block\n}\n\n.qouvgH {\n    -webkit-transform: rotate(-90deg);\n    transform: rotate(-90deg)\n}\n\n.wRjFe4 {\n    fill: #c2c2c2\n}\n\n.Be4x5X {\n    border-radius: 2px;\n    background-position: 50%,50%;\n    background-repeat: no-repeat,no-repeat;\n    background-size: cover,20%;\n    position: relative;\n    overflow: hidden;\n    cursor: pointer\n}\n\n.Be4x5X._0Sd5e0:before,.Be4x5X.d22s8s:before {\n    content: \"\";\n    background-color: rgba(0,0,0,.6)\n}\n\n.Be4x5X._0Sd5e0:before,.Be4x5X.d22s8s:before,.Be4x5X .m6hZrr {\n    position: absolute;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%\n}\n\n.Be4x5X .m6hZrr {\n    color: #f0f0f0;\n    font-size: 18px;\n    font-weight: 500\n}\n\n.Be4x5X .GOKCJN {\n    width: 33%;\n    height: 33%;\n    left: 50%;\n    top: 50%;\n    -webkit-transform: translate(-50%,-50%);\n    transform: translate(-50%,-50%)\n}\n\n._3x4hjs {\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    position: relative;\n    font-size: 12px;\n    color: #878787;\n    white-space: nowrap;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n._3x4hjs .zb\\+M4U {\n    margin-right: 4px;\n    width: 14px;\n    height: 14px;\n    fill: #878787\n}\n\n._3x4hjs .vN\\+YkS {\n    white-space: nowrap\n}\n\n._3x4hjs ._6GGpC9 {\n    width: auto\n}\n\n._3x4hjs .\\+GTiPb {\n    font-size: 12px;\n    color: #878787\n}\n\n.fgejnv .YVTMLF {\n    margin-bottom: 8px\n}\n\n.fgejnv .MAYuyi {\n    display: inline-block;\n    padding-left: 12px;\n    padding-top: 3px;\n    font-size: 14px;\n    color: #212121;\n    font-weight: 500\n}\n\n.fgejnv .pk1uno {\n    margin-top: 8px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: space-between;\n    -ms-flex-pack: justify;\n    justify-content: space-between\n}\n\n.fgejnv .Kcx1qj,.fgejnv .pk1uno {\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.fgejnv .Kcx1qj {\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    -webkit-justify-content: flex-start;\n    -ms-flex-pack: start;\n    justify-content: flex-start\n}\n\n.fgejnv .PHwsN2,.fgejnv .tiwsMB {\n    display: inline-block;\n    font-size: 12px;\n    color: #878787;\n    margin-right: 8px;\n    white-space: nowrap\n}\n\n.fgejnv .tiwsMB {\n    font-weight: 500\n}\n\n.fgejnv ._3AAEBR {\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    white-space: nowrap\n}\n\n.fgejnv .z83icd {\n    margin-right: 14px\n}\n\n.YNvOGv .XnPrLa {\n    cursor: pointer;\n    font-size: 12px;\n    color: #2874f0;\n    font-weight: 500\n}\n\n.x5lNd7 {\n    top: 0;\n    left: 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: stretch;\n    -ms-flex-align: stretch;\n    align-items: stretch\n}\n\n.x5lNd7,.x5lNd7 ._5HN1zR {\n    position: absolute;\n    width: 100%;\n    height: 100%\n}\n\n.x5lNd7 ._5HN1zR {\n    z-index: 1;\n    background: hsla(0,0%,100%,.5)\n}\n\n.x5lNd7 .dLVmPw {\n    position: absolute;\n    top: 50%;\n    left: 290px;\n    -webkit-transform: translate(-50%,-50%) scale(1.2);\n    transform: translate(-50%,-50%) scale(1.2)\n}\n\n.x5lNd7 ._5I27fG {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-grow: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    width: 62.7%;\n    -webkit-flex-direction: column;\n    -ms-flex-direction: column;\n    flex-direction: column;\n    background: #000;\n    position: relative\n}\n\n.x5lNd7 .C5qJdp {\n    width: 37.3%;\n    padding: 22px;\n    overflow: auto\n}\n\n.x5lNd7 .VM0-Vh {\n    position: absolute;\n    top: 0;\n    left: 0;\n    height: 100%;\n    width: 100%;\n    opacity: 0;\n    transition: opacity .3s ease-in-out;\n    box-shadow: inset 0 0 120px 20px #000;\n    pointer-events: none\n}\n\n.x5lNd7 .VM0-Vh>* {\n    pointer-events: auto\n}\n\n.x5lNd7 ._5I27fG:hover>.VM0-Vh {\n    opacity: 1\n}\n\n.x5lNd7 .Q7LOli {\n    position: absolute;\n    top: 50%;\n    padding: 16px;\n    cursor: pointer;\n    -webkit-transform-origin: 50% 50%;\n    transform-origin: 50% 50%\n}\n\n.x5lNd7 .Q7LOli.DfI7iu {\n    left: 0;\n    -webkit-transform: translateY(-50%);\n    transform: translateY(-50%)\n}\n\n.x5lNd7 .Q7LOli.dTxeZR {\n    right: 0;\n    -webkit-transform: translateY(-50%) rotateY(180deg);\n    transform: translateY(-50%) rotateY(180deg)\n}\n\n.x5lNd7 .Q7LOli.\\+wYp2l {\n    opacity: .3;\n    cursor: not-allowed\n}\n\n.x5lNd7 .hO8G5V {\n    width: 12px\n}\n\n.x5lNd7 .JaNTT6 {\n    -webkit-flex-grow: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    width: 100%;\n    height: auto;\n    background-repeat: no-repeat;\n    background-position: 50% 50%;\n    background-size: contain;\n    transition: -webkit-filter .2s ease-out;\n    transition: filter .2s ease-out;\n    transition: filter .2s ease-out,-webkit-filter .2s ease-out\n}\n\n@media (max-height: 750px) {\n    .x5lNd7 .JaNTT6 {\n        height:500px\n    }\n}\n\n@media (max-height: 670px) {\n    .x5lNd7 .JaNTT6 {\n        height:380px\n    }\n}\n\n.x5lNd7 .ZXeVhE {\n    width: 100%;\n    height: 70px;\n    padding: 4px 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center\n}\n\n.x5lNd7 .gT\\+Qud {\n    margin-right: 4px;\n    position: relative\n}\n\n.x5lNd7 .gT\\+Qud:after {\n    content: \"\";\n    display: block;\n    opacity: 0;\n    position: absolute;\n    top: 0;\n    left: 0;\n    height: calc(100% - 4px);\n    width: calc(100% - 4px);\n    border: 2px solid #f0f0f0;\n    transition: opacity .2s ease-out\n}\n\n.x5lNd7 .gT\\+Qud.k613NE:after {\n    opacity: 1\n}\n\n.x5lNd7 .gT\\+Qud:last-child {\n    margin-right: 0\n}\n\n.x5lNd7 .kBTC7w,.x5lNd7 .tmTQJp {\n    position: relative\n}\n\n.x5lNd7 .tmTQJp {\n    max-width: 160px\n}\n\n.x5lNd7 .ARu49s {\n    text-overflow: ellipsis;\n    overflow: hidden;\n    white-space: nowrap\n}\n\n.x5lNd7 ._49gj37 {\n    position: absolute;\n    top: 100%;\n    left: 0;\n    margin-top: 6px\n}\n\n@media (max-height: 750px) {\n    .x5lNd7 .l5cZ\\+s {\n        position:absolute;\n        top: 100%;\n        right: 0;\n        margin-top: 4px\n    }\n}\n\n@media (max-height: 670px) {\n    .x5lNd7 .l5cZ\\+s {\n        right:auto;\n        left: -20px;\n        top: 300%;\n        margin-top: 0\n    }\n}\n\n.DH\\+Cw2 {\n    position: absolute;\n    top: 24px;\n    left: 24px;\n    display: -webkit-inline-flex;\n    display: -ms-inline-flexbox;\n    display: inline-flex;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center;\n    color: #f0f0f0;\n    font-size: 16px;\n    font-weight: 500;\n    line-height: 1.78;\n    cursor: pointer\n}\n\n.DH\\+Cw2 .XxPue4 {\n    display: inline-block;\n    width: 16px;\n    height: 16px;\n    margin-right: 12px\n}\n\n.JaNTT6 {\n    -webkit-filter: blur(4px);\n    filter: blur(4px)\n}\n\n.JaNTT6.kPdOuV {\n    -webkit-filter: blur(0);\n    filter: blur(0)\n}\n\n.trb-PZ {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%\n}\n\n.trb-PZ .DLh4It {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    font-size: 18px;\n    line-height: 30px;\n    font-weight: 500;\n    padding: 0 30px;\n    height: 62px;\n    margin-top: 8px;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.trb-PZ .yH3Q1k {\n    height: calc(100% - 70px);\n    overflow: auto;\n    width: 100%\n}\n\n.trb-PZ .yqeQC0 {\n    display: grid;\n    grid-template-columns: repeat(7,124px);\n    grid-auto-rows: -webkit-min-content;\n    grid-auto-rows: min-content;\n    justify-items: center;\n    grid-row-gap: 4px;\n    grid-column-gap: 4px;\n    padding: 12px 30px\n}\nfooter {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 0 5%;\n    margin-top: 100px;\n    font-size: 14px;\n    color: grey;\n    position: relative;\n}\n\nfooter::before {\n    position: absolute;\n    height: 2px;\n    background-color: grey;\n    content: '';\n    top: -35px;\n    width: 100%;\n    left: 0;\n}\n\nfooter span {\n    color: rgb(75, 75, 255);\n}\n@media (max-height: 750px) {\n    .trb-PZ .yqeQC0 {\n        grid-template-columns:repeat(6,124px)\n    }\n}\n\n@media (max-height: 670px) {\n    .trb-PZ .yqeQC0 {\n        grid-template-columns:repeat(5,124px)\n    }\n}\n\n.trb-PZ .a2xL\\+l {\n    border: 1px solid #e0e0e0;\n    opacity: 1;\n    transition: opacity .5s ease-in-out\n}\n\n.trb-PZ .P-UQwP {\n    opacity: .3\n}\n\n.xmAgz5 {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-flex-flow: wrap;\n    -ms-flex-flow: wrap;\n    flex-flow: wrap\n}\n\n.SXdXQu {\n    margin: -4px 0 16px 24px;\n    font-weight: 500;\n    font-size: 16px\n}\n\n.\\+ucfoy {\n    min-width: 1024px;\n    min-height: 650px;\n    margin: 0;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center;\n    -webkit-align-items: center;\n    -ms-flex-align: center;\n    align-items: center\n}\n\n.S3sgXk {\n    width: 968px;\n    height: 608px;\n    position: relative\n}\n\n@media (max-height: 750px) {\n    .S3sgXk {\n        width:840px;\n        height: 528px\n    }\n}\n\n@media (max-height: 670px) {\n    .S3sgXk {\n        width:712px;\n        height: 448px\n    }\n}\n\n.EPCmJX {\n    padding: 24px;\n    width: 100%;\n    -webkit-filter: none!important;\n    filter: none!important\n}\n\n.EPCmJX .gHqwa8 {\n    position: relative\n}\n\n.EPCmJX .Ga3i8K {\n    margin-top: 3px\n}\n\n.EPCmJX .z9E0IG {\n    padding-left: 12px;\n    padding-top: 3px;\n    font-size: 14px;\n    color: #212121;\n    font-weight: 500\n}\n\n.EPCmJX .ZmyHeo {\n    line-height: 1.4;\n    font-size: 14px;\n    color: #212121;\n    margin: 12px 0;\n    overflow: hidden\n}\n\n.EPCmJX .ZmyHeo.MDcJkH {\n    margin: 0 0 16px\n}\n\n.EPCmJX .ZmyHeo p {\n    display: inline\n}\n\n.EPCmJX ._7jFSYx {\n    font-size: 14px;\n    color: #212121;\n    font-weight: 500;\n    padding: 0 4px 0 0\n}\n\n.EPCmJX .f4-0DP {\n    font-size: 12px;\n    padding-top: 1px\n}\n\n.EPCmJX ._2NsDsF {\n    font-size: 12px;\n    color: #878787;\n    margin-right: 8px\n}\n\n.EPCmJX ._2NsDsF.MDcJkH {\n    margin-right: 12px\n}\n\n.EPCmJX .AwS1CA {\n    font-weight: 500\n}\n\n.EPCmJX .MztJPv {\n    font-size: 12px;\n    color: #878787;\n    padding: 0 6px 0 0\n}\n\n.EPCmJX .VjlQyz {\n    margin-right: 4px;\n    width: 14px;\n    height: 14px;\n    vertical-align: sub\n}\n\n.EPCmJX .wTYmpv {\n    height: 0;\n    width: 0;\n    margin: 0;\n    padding: 0;\n    visibility: collapse;\n    display: none\n}\n\n.EPCmJX .b4x-fr {\n    font-weight: 500\n}\n\n.EPCmJX ._7x77Y1,.EPCmJX .b4x-fr {\n    cursor: pointer;\n    font-size: 12px;\n    color: #2874f0\n}\n\n.EPCmJX ._7x77Y1 {\n    padding: 0 0 6px\n}\n\n\n\n.EPCmJX .vMTK1V {\n    width: auto;\n    position: absolute;\n    right: 0\n}\n.cPHDOP {\n    display: block;\n}\n.EPCmJX .qhmk-f {\n    margin-right: 20px\n}\n\n.EPCmJX .pVVA7t {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-justify-content: flex-start;\n    -ms-flex-pack: start;\n    justify-content: flex-start;\n    margin-bottom: 12px\n}\n\n.EPCmJX .d517go {\n    margin-right: 4px\n}\n\n.EPCmJX ._9lBNRY {\n    padding: 2px 7px;\n    border-radius: 12px;\n    font-size: 12px;\n    background-color: #26a541;\n    vertical-align: baseline;\n    margin: 0 10px 0 0\n}\n\n.EPCmJX ._11pzQk {\n    display: inline;\n    vertical-align: baseline;\n    margin: auto 0;\n    line-height: 1.43\n}\n\n.EPCmJX .K2oYA8 {\n    margin-bottom: 6px\n}\n\n.EPCmJX.xJgaqh {\n    padding: 0 24px\n}\n\n.EPCmJX.xJgaqh .b4x-fr {\n    cursor: pointer;\n    font-size: 14px;\n    color: #2874f0;\n    font-weight: 500\n}\n\n.EPCmJX.MDcJkH {\n    padding: 24px 0\n}\n\n.EPCmJX.mXTVR6 {\n    padding: 24px;\n    border-bottom: 1px solid #e9f2e9\n}\n\n.ByVeKF {\n    width: 684px;\n    max-width: none!important;\n    margin: 0 auto\n}\n\n.XrzHFI {\n    width: 600px\n}\n\n.rYsB7A {\n    cursor: pointer\n}\n\n.-u2ZnE .naMJjQ {\n    font-size: 20px;\n    font-weight: 500;\n    padding: 15px 20px;\n    border-bottom: 1px solid #f0f0f0;\n    width: 100%\n}\n\n.-u2ZnE .ybB1XH {\n    -webkit-flex-wrap: wrap;\n    -ms-flex-wrap: wrap;\n    flex-wrap: wrap;\n    width: 100%;\n    border-bottom: 1px solid #f0f0f0;\n    padding: 20px 0\n}\n\n.-u2ZnE .ybB1XH,.-u2ZnE .ybB1XH .MohBBj {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.-u2ZnE .ybB1XH .MohBBj {\n    width: 40%\n}\n\n.-u2ZnE .ybB1XH .MohBBj .Ld8TWM {\n    position: relative;\n    float: left;\n    width: 200px;\n    margin: 0 10px\n}\n\n.-u2ZnE .ybB1XH .MohBBj ._8zhCRP {\n    overflow: hidden;\n    width: calc(100% - 200px);\n    text-overflow: ellipsis\n}\n\n.-u2ZnE .ybB1XH .MohBBj .kv0tEm {\n    font-weight: 500;\n    font-size: 18px;\n    display: block;\n    cursor: pointer;\n    margin-bottom: 2px\n}\n\n.-u2ZnE .ybB1XH .MohBBj .kv0tEm:hover {\n    color: #2874f0\n}\n\n.-u2ZnE .ybB1XH .MohBBj .sRoN4i {\n    margin-bottom: 8px;\n    line-height: 1.5\n}\n\n.-u2ZnE .ybB1XH .MohBBj .sRoN4i .Bz-crL {\n    padding-left: 8px;\n    font-weight: 500;\n    color: #878787\n}\n\n.-u2ZnE .ybB1XH .MohBBj .sRoN4i ._8O4\\+-w {\n    margin: 0 3px;\n    color: #878787\n}\n\n.-u2ZnE .ybB1XH .MohBBj .Xrs8Tf {\n    margin-bottom: 5px\n}\n\n.-u2ZnE .ybB1XH .MohBBj .Xrs8Tf .OQ4U3k {\n    font-size: 14px;\n    font-weight: 500\n}\n\n.-u2ZnE .ybB1XH .MohBBj .Xrs8Tf .Cr3LKt,.-u2ZnE .ybB1XH .MohBBj .Xrs8Tf .WMQHm1 {\n    font-size: 14px;\n    margin-left: 12px;\n    color: #878787;\n    font-weight: 400\n}\n\n.-u2ZnE .ybB1XH .MohBBj .akQAfe {\n    font-size: 14px\n}\n\n.-u2ZnE .ybB1XH .MohBBj .akQAfe .Ov4d6Q {\n    padding-bottom: 8px\n}\n\n.-u2ZnE .ybB1XH .vQjHak {\n    width: 30%\n}\n\n.-u2ZnE .ybB1XH .VEuN0R {\n    padding-left: 24px;\n    font-size: 14px;\n    color: #878787\n}\n\n.TAcULe {\n    box-shadow: 0 -1px 4px 0 rgba(0,0,0,.24);\n    padding: 8px 0 8px 8px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex\n}\n\n.TAcULe .F6LzPi {\n    margin-right: 8px\n}\n\n.TAcULe .ahbObP {\n    padding: 13px 0\n}\n\n.TAcULe .ahbObP,.TAcULe .SjZ06a {\n    width: 100%;\n    font-size: 14px;\n    box-shadow: none\n}\n\n.TAcULe .SjZ06a {\n    border: 1px solid #dbdbdb;\n    padding: 12px 0;\n    text-align: center;\n    color: #2874f0;\n    background-color: #fff\n}\n\n.avYazc {\n    padding: 40px 40px 0;\n    text-align: center\n}\n\n.sWfG13 {\n    padding-bottom: 16px\n}\n\n._4ZK5DM {\n    padding-bottom: 8px\n}\n\n._33TjOO {\n    width: 60px;\n    height: 60px\n}\n\n.CKynyY {\n    position: -webkit-sticky;\n    position: sticky;\n    bottom: 0\n}\n\n.gils\\+Q {\n    text-align: center;\n    padding-bottom: 32px;\n    font-size: 14px\n}\n\n.-t-7Dk {\n    width: 376px;\n    display: inline-block;\n    vertical-align: top\n}\n\n@media only screen and (max-width: 1240px) {\n    .-t-7Dk {\n        width:280px!important\n    }\n}\n\n.iflsSi {\n    margin: 0 auto;\n    min-width: 1128px;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    user-select: none;\n    -webkit-justify-content: center;\n    -ms-flex-pack: center;\n    justify-content: center\n}\n\n.zuxjMQ {\n    display: inline-block;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n\n@media (width < 1240px) and (width > 978px) {\n    .zuxjMQ {\n        width: 800px\n    }\n}\n\n@media (width < 978px) {\n    .zuxjMQ {\n        width: 754px\n    }\n}\n\n.lloqNF .BJNTsb {\n    vertical-align: top;\n    margin-left: 16px\n}\n\n.lloqNF .CtjIhF {\n    color: #212121;\n    font-weight: 500\n}\n\n.lloqNF .rf8Rxc {\n    margin-left: 6px\n}\n\n.lloqNF .tyXrfa {\n    background: transparent\n}\n\n.lloqNF .MnHtOw {\n    width: 384px;\n    margin-left: 16px;\n    display: inline-block;\n    margin-bottom: 16px\n}\n\n@media only screen and (max-width: 1240px) {\n    .lloqNF .MnHtOw {\n        width:280px\n    }\n}\n\n.lloqNF .MnHtOw._7d4Vm9 {\n    margin-left: 0\n}\n\n.lloqNF .MnHtOw .KDlqE2 {\n    margin-left: 16px\n}\n\n.lloqNF .LtTRsN {\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-align-items: flex-start;\n    -ms-flex-align: start;\n    align-items: flex-start\n}\n\n.lloqNF .ML\\+SEa {\n    width: 384px\n}\n\n@media only screen and (max-width: 1240px) {\n    .lloqNF .ML\\+SEa {\n        width:280px!important\n    }\n}\n\n.gzcX9B {\n    width: 432px;\n    padding: 48px\n}\n\n.gzcX9B .okz97S {\n    width: inherit!important\n}\n\n.gzcX9B .NRmna9 {\n    margin-top: 53px\n}\n\n.vZhjCi {\n    margin-top: 20px;\n    font-size: 16px;\n    text-transform: uppercase;\n    padding: 15px 75px\n}\n\n.OtuT7y {\n    height: calc(100vh - 100px);\n    overflow: auto\n}\n\n.Rdxh0X {\n    text-align: center\n}\n\n.V4W\\+K0 {\n    padding: 20px 0\n}\n\n.eSDBEP {\n    height: 100%;\n    width: 100%;\n    position: absolute;\n    z-index: 1;\n    left: 0;\n    top: 0;\n    background-color: hsla(0,0%,100%,.7)\n}\n\n.bank-icon{\n    height:10px !important;\n    width: 10px !important;\n}"
  },
  {
    "path": "auth/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Flipkart Registration Form</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n</head>\n<body>\n    <div class=\"container\">\n        <form class=\"registration-form\">\n            <h2>Create an account</h2>\n            <div class=\"form-group\">\n                <label for=\"username\">Name</label>\n                <input type=\"text\" id=\"username\" name=\"username\" required>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"email\">Email</label>\n                <input type=\"email\" id=\"email\" name=\"email\" required>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"phone\">Phone Number</label>\n                <input type=\"tel\" id=\"phone\" name=\"phone\" required>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"password\">Password</label>\n                <input type=\"password\" id=\"password\" name=\"password\" required>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"confirm-password\">Confirm Password</label>\n                <input type=\"password\" id=\"confirm-password\" name=\"confirm-password\" required>\n            </div>\n            <button type=\"submit\" class=\"btn\">Register</button>\n        </form>\n    </div>\n</body>\n</html>\n"
  },
  {
    "path": "auth/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    background-color: #f5f5f5;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    height: 100vh;\n    margin: 0;\n}\n\n.container {\n    background-color: #fff;\n    padding: 20px;\n    border-radius: 8px;\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n    width: 100%;\n    max-width: 400px;\n}\n\n.registration-form h2 {\n    margin-bottom: 20px;\n    font-size: 24px;\n    color: #333;\n    text-align: center;\n}\n\n.form-group {\n    margin-bottom: 15px;\n}\n\n.form-group label {\n    display: block;\n    margin-bottom: 5px;\n    color: #333;\n}\n\n.form-group input {\n    width: 100%;\n    padding: 10px;\n    border: 1px solid #ddd;\n    border-radius: 4px;\n    box-sizing: border-box;\n}\n\n.form-group input:focus {\n    border-color: #2874f0;\n    outline: none;\n}\n\n.btn {\n    display: inline-block;\n    width: 100%;\n    padding: 10px;\n    background-color: #2874f0;\n    color: #fff;\n    border: none;\n    border-radius: 4px;\n    font-size: 16px;\n    cursor: pointer;\n    text-align: center;\n}\n\n.btn:hover {\n    background-color: #0056b3;\n}\n"
  },
  {
    "path": "components/footer.html",
    "content": "<html>\r\n<head>\r\n    <link rel=\"stylesheet\" href=\"footer_.css\">\r\n</head>\r\n<div>\r\n    <div class=\"_1ZMrY_\">\r\n        <div>\r\n            <div class=\"_3I5N7v\">ABOUT</div><a href=\"/helpcentre?otracker=${otracker}_navlinks\" class=\"HlWMPX\"\r\n                aria-label=\"Contact Us\">Contact Us</a><a href=\"https://corporate.flipkart.net/corporate-home\"\r\n                class=\"HlWMPX\" aria-label=\"About Us\">About Us</a><a\r\n                href=\"https://www.flipkartcareers.com/?otracker=${otracker}_navlinks\" class=\"HlWMPX\"\r\n                aria-label=\"Careers\">Careers</a><a href=\"http://stories.flipkart.com/\" class=\"HlWMPX\"\r\n                aria-label=\"Flipkart Stories\">Flipkart Stories</a><a\r\n                href=\"http://stories.flipkart.com/category/top-stories/news/\" class=\"HlWMPX\"\r\n                aria-label=\"Press\">Press</a><a href=\"/corporate-information\" class=\"HlWMPX\"\r\n                aria-label=\"Corporate Information\">Corporate Information</a>\r\n        </div>\r\n        <div>\r\n            <div class=\"_3I5N7v\">GROUP COMPANIES</div><a href=\"https://www.myntra.com/\" class=\"HlWMPX\"\r\n                rel=\"noopener noreferrer\" target=\"_blank\" aria-label=\"Myntra\">Myntra</a><a\r\n                href=\"https://www.cleartrip.com/\" class=\"HlWMPX\" rel=\"noopener noreferrer\" target=\"_blank\"\r\n                aria-label=\"Cleartrip\">Cleartrip</a><a href=\"https://www.shopsy.in\" class=\"HlWMPX\"\r\n                rel=\"noopener noreferrer\" target=\"_blank\" aria-label=\"Shopsy\">Shopsy</a>\r\n        </div>\r\n        <div>\r\n            <div class=\"_3I5N7v\">HELP</div><a href=\"/pages/payments\" class=\"HlWMPX\" aria-label=\"Payments\">Payments</a><a\r\n                href=\"/pages/shipping\" class=\"HlWMPX\" aria-label=\"Shipping\">Shipping</a><a\r\n                href=\"/helpcentre?catalog=55c9c6edb000002e002c1701&amp;view=CATALOG\" class=\"HlWMPX\"\r\n                aria-label=\"Cancellation &amp; Returns\">Cancellation &amp; Returns</a><a\r\n                href=\"/helpcentre?catalog=55c9c8e2b0000023002c1702&amp;view=CATALOG\" class=\"HlWMPX\"\r\n                aria-label=\"FAQ\">FAQ</a><a href=\"https://seller.flipkart.com/fiv?otracker=${otracker}_navlinks\"\r\n                class=\"HlWMPX\" aria-label=\"Report Infringement\">Report Infringement</a>\r\n        </div>\r\n        <div>\r\n            <div class=\"_3I5N7v\">CONSUMER POLICY</div><a href=\"/pages/returnpolicy?otracker=${otracker}_navlinks\"\r\n                class=\"HlWMPX\" aria-label=\"Cancellation &amp; Returns\">Cancellation &amp; Returns</a><a\r\n                href=\"/pages/terms?otracker=${otracker}_navlinks\" class=\"HlWMPX\" aria-label=\"Terms Of Use\">Terms Of\r\n                Use</a><a href=\"/pages/paymentsecurity?otracker=${otracker}_navlinks\" class=\"HlWMPX\"\r\n                aria-label=\"Security\">Security</a><a href=\"/pages/privacypolicy?otracker=${otracker}_navlinks\"\r\n                class=\"HlWMPX\" aria-label=\"Privacy\">Privacy</a><a href=\"/sitemap?otracker=${otracker}_navlinks\"\r\n                class=\"HlWMPX\" aria-label=\"Sitemap\">Sitemap</a><a\r\n                href=\"/pages/grievance-redressal-mechanism?otracker=${otracker}_navlinks\" class=\"HlWMPX\"\r\n                aria-label=\"Grievance Redressal\">Grievance Redressal</a><a\r\n                href=\"/pages/ewaste-compliance-tnc?otracker=${otracker}_navlinks\" class=\"HlWMPX\"\r\n                aria-label=\"EPR Compliance\">EPR Compliance</a>\r\n        </div>\r\n        <div class=\"MkhHNl btl4ck\">\r\n            <div class=\"_3I5N7v\">Mail Us:</div>\r\n            <div class=\"_1UkyFI\">\r\n                <p class=\"_1oQ-r6\">Flipkart Internet Private Limited, </p>\r\n                <p class=\"_1oQ-r6\"> Buildings Alyssa, Begonia &amp; </p>\r\n                <p class=\"_1oQ-r6\"> Clove Embassy Tech Village, </p>\r\n                <p class=\"_1oQ-r6\"> Outer Ring Road, Devarabeesanahalli Village, </p>\r\n                <p class=\"_1oQ-r6\"> Bengaluru, 560103, </p>\r\n                <p class=\"_1oQ-r6\"> Karnataka, India</p>\r\n            </div>\r\n            <div class=\"_3I5N7v\">Social:</div>\r\n            <div class=\"_31kgzK\">\r\n                <div class=\"_2l3nc-\"><a href=\"https://www.facebook.com/flipkart\" aria-label=\"Facebook\"><img\r\n                            src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjkzMzEgMjFDMTcuOTAzNyAyMSAyMS45MzMxIDE2Ljk3MDYgMjEuOTMzMSAxMkMyMS45MzMxIDcuMDI5NDQgMTcuOTAzNyAzIDEyLjkzMzEgM0M3Ljk2MjU0IDMgMy45MzMxMSA3LjAyOTQ0IDMuOTMzMTEgMTJDMy45MzMxMSAxNi45NzA2IDcuOTYyNTQgMjEgMTIuOTMzMSAyMVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE2LjY4MzEgOC4yNUgxNS4xODMxQzE0LjU4NjQgOC4yNSAxNC4wMTQxIDguNDg3MDUgMTMuNTkyMSA4LjkwOTAxQzEzLjE3MDIgOS4zMzA5NyAxMi45MzMxIDkuOTAzMjYgMTIuOTMzMSAxMC41VjIxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05LjkzMzExIDEzLjVIMTUuOTMzMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K\"\r\n                            alt=\"Facebook\" width=\"24\" height=\"24\"></a></div>\r\n                <div class=\"_2l3nc-\"><a href=\"https://www.twitter.com/flipkart\" aria-label=\"Twitter\"><img\r\n                            src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE4M18yMCkiPgo8cGF0aCBkPSJNMTMuNTQzNiAxMC42MTc5TDIwLjA5NzEgM0gxOC41NDQxTDEyLjg1MzcgOS42MTQ0OEw4LjMwODg3IDNIMy4wNjY4OUw5LjkzOTY0IDEzLjAwMjNMMy4wNjY4OSAyMC45OTA4SDQuNjE5OTRMMTAuNjI5MSAxNC4wMDU2TDE1LjQyODggMjAuOTkwOEgyMC42NzA4TDEzLjU0MzIgMTAuNjE3OUgxMy41NDM2Wk0xMS40MTY1IDEzLjA5MDRMMTAuNzIwMiAxMi4wOTQ0TDUuMTc5NTMgNC4xNjkxMUg3LjU2NDkxTDEyLjAzNjMgMTAuNTY1MUwxMi43MzI2IDExLjU2MTFMMTguNTQ0OCAxOS44NzQ4SDE2LjE1OTVMMTEuNDE2NSAxMy4wOTA4VjEzLjA5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE4M18yMCI+CjxyZWN0IHg9IjMuMDY2ODkiIHk9IjMiIHdpZHRoPSIxNy42MDM5IiBoZWlnaHQ9IjE4IiByeD0iMC4yIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=\"\r\n                            alt=\"Twitter\" width=\"24\" height=\"24\"></a></div>\r\n                <div class=\"_2l3nc-\"><a href=\"https://www.youtube.com/flipkart\" aria-label=\"YouTube\"><img\r\n                            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/YoutubeLogo-8425c4.svg\"\r\n                            alt=\"YouTube\" width=\"24\" height=\"24\"></a></div>\r\n            </div>\r\n        </div>\r\n        <div class=\"MkhHNl\">\r\n            <div class=\"_3I5N7v\">Registered Office Address:</div>\r\n            <div>\r\n                <p class=\"_1oQ-r6\">Flipkart Internet Private Limited, </p>\r\n                <p class=\"_1oQ-r6\"> Buildings Alyssa, Begonia &amp; </p>\r\n                <p class=\"_1oQ-r6\"> Clove Embassy Tech Village, </p>\r\n                <p class=\"_1oQ-r6\"> Outer Ring Road, Devarabeesanahalli Village, </p>\r\n                <p class=\"_1oQ-r6\"> Bengaluru, 560103, </p>\r\n                <p class=\"_1oQ-r6\"> Karnataka, India </p>\r\n                <p class=\"_1oQ-r6\"> CIN : U51109KA2012PTC066107 </p>\r\n                <p class=\"_1oQ-r6\"></p>\r\n                <p class=\"_1oQ-r6\"> Telephone: <a href=\"tel:044-45614700\">044-45614700</a> / <a\r\n                        href=\"tel:044-67415800\">044-67415800</a></p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n    <div class=\"_1HSe4t\">\r\n        <div class=\"c4gehN\"><img\r\n                src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/sell-image-9de8ef.svg\"\r\n                alt=\"Become a Seller\" width=\"13\" height=\"12\"><a\r\n                href=\"https://seller.flipkart.com/?utm_source=fkwebsite&amp;utm_medium=websitedirect\"\r\n                aria-label=\"Become a Seller\"><span>Become a Seller</span></a></div>\r\n        <div class=\"c4gehN\"><img\r\n                src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/advertise-image-866c0b.svg\"\r\n                alt=\"Advertise\" width=\"14\" height=\"14\"><a href=\"https://brands.flipkart.com\"\r\n                aria-label=\"Advertise\"><span>Advertise</span></a></div>\r\n        <div class=\"c4gehN\"><img\r\n                src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/gift-cards-image-d7ff24.svg\"\r\n                alt=\"Gift Cards\" width=\"13\" height=\"13\"><a\r\n                href=\"/the-gift-card-store/index.html\" aria-label=\"Gift Cards\"><span>Gift\r\n                    Cards</span></a></div>\r\n        <div class=\"c4gehN\"><img\r\n                src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/help-centre-image-c4ace8.svg\"\r\n                alt=\"Help Center\" width=\"13\" height=\"13\"><a href=\"/helpcentre?otracker=${otracker}_footer_navlinks\"\r\n                aria-label=\"Help Center\"><span>Help Center</span></a></div><span class=\"pCGSTE\">© 2007-2024\r\n            <span>Flipkart.com</span></span><img\r\n            src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/payment-method-c454fb.svg\"\r\n            alt=\"Payment methods\">\r\n    </div>\r\n</div>\r\n</html>\r\n"
  },
  {
    "path": "components/footer_.css",
    "content": "._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "components/header.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Header</title>\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/bootstrap.min.css\">\n  <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/header.css\">\n</head>\n\n<body>\n\n  <!-- Header -->\n  <header id=\"header-bluebg\">\n    <nav class=\"container-fluid\" style=\"background-color: #2874F0;\">\n      <div class=\"container\">\n        <nav class=\"navbar bg-body-tertiary\">\n          <div class=\"container-fluid\">\n            <a class=\"navbar-brand\" href=\"../../\">\n              <img src=\"../../img/flipcartlogo.PNG\" width=\"80px\">\n            </a>\n            <div class=\"searchBar_h\">\n              <input id=\"inputField_h\" type=\"text\" autocomplete=\"off\"\n                placeholder=\"Search for products, brands and more\">\n              <i id=\"fetchButton_h\" class=\"bi bi-search btn\"></i>\n            </div>\n            <div>\n              <button class=\"btn btn-primary\"><a href=\"../../account/login-signup.html\">Login</a></button>\n            </div>\n            <div class=\"text-white b_a_s\">\n              <a href=\"../../sell-online/\">Become a Seller</a>\n            </div>\n            <div class=\"text-white\" id=\"more_h\">\n              More <i class=\"bi bi-chevron-down\"></i><i class=\"bi bi-chevron-up\"></i>\n            </div>\n            <div class=\"text-white cartLogoandname\">\n              <a href=\"../../viewcart/\">\n                <img src=\"../../img/svg/cart_h.svg\" alt=\"\"><span class=\"cart_h\">Cart </span><span id=\"cartItems\"></span>\n              </a>\n            </div>\n          </div>\n        </nav>\n      </div>\n    </nav>\n\n  </header>\n  <!-- javaScript -->\n  <script src=\"../../js/bootstrap.bundle.min.js\"></script>\n  <script src=\"../../js/header_bluebg.js\"></script>\n</body>\n\n</html>\n"
  },
  {
    "path": "css/account.css",
    "content": "\r\n.container {\r\n  max-width: 960px;\r\n  margin: 0 auto;\r\n  padding: 20px;\r\n }\r\n \r\n .flipkardLoader {\r\n  width: 100%;\r\n  max-width: 180px;\r\n  margin: 0 auto;\r\n }\r\n \r\n h1 {\r\n  font-size: 30px;\r\n  font-weight: bold;\r\n  text-align: center;\r\n  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif\r\n }\r\n \r\n form {\r\n  width: 100%;\r\n  max-width: 600px;\r\n  margin: 0 auto;\r\n }\r\n \r\n .form-group {\r\n  margin-bottom: 15px;\r\n }\r\n \r\n label {\r\n  font-weight: bold;\r\n }\r\n\r\n p {\r\n  font-family: Arial, sans-serif;\r\n  font-size: 16px;\r\n  line-height: 1.5em\r\n}\r\n \r\n input[type=\"text\"],\r\n input[type=\"email\"],\r\n textarea {\r\n  width: 100%;\r\n  padding: 5px;\r\n  border: 1px solid #ccc;\r\n  border-radius: 3px;\r\n }\r\n \r\n textarea {\r\n  height: 100px;\r\n }\r\n \r\n /* Radio buttons */\r\n .form-check {\r\n  display: inline-block;\r\n  margin-right: 10px;\r\n }\r\n\r\n #FAQ{\r\n  padding: 50px;\r\n }\r\n\r\n #para1{\r\n \r\n  font-size: 14px;\r\n\r\n }\r\n #heading{\r\n \r\n  font-size: 20px;\r\n  font-weight: bold;\r\n\r\n }\r\n /* Submit button */\r\n .btn-primary {\r\n  background-color: #2874f0;\r\n  color: #fff;\r\n  border: none;\r\n  padding: 10px 20px;\r\n  border-radius: 3px;\r\n  cursor: pointer;\r\n }\r\n .btn-primary2 {\r\n  display: flex;\r\n  justify-content:center;\r\n  align-items: center;\r\n  background-color: #2874f0;\r\n  color: #fff;\r\n  border: none;\r\n  padding: 10px 20px;\r\n  border-radius: 15px;\r\n  cursor: pointer;\r\n\r\n }\r\n @media (max-width: 768px) {\r\n  h1 {\r\n    font-size: 1.8rem;\r\n  }\r\n \r\n  form {\r\n    max-width: 100%;\r\n  }\r\n }"
  },
  {
    "path": "css/animation.css",
    "content": "/* animations.css */\n@keyframes fadeIn {\n    from {\n        opacity: 0;\n    }\n    to {\n        opacity: 1;\n    }\n}\n\n.fade-in {\n    animation: fadeIn 2s ease-in;\n}\n"
  },
  {
    "path": "css/categories.css",
    "content": ".categorylist-wrapper {\n  width: 100%;\n  overflow-x:hidden;\n  /* z-index: 500; */\n}\n\n.categorylist-wrapper::-webkit-scrollbar {\n  display: none;\n}\n\n\n.categories {\n  display: flex;\n  align-items: flex-start;\n  justify-content: space-between;\n  background-color: rgb(255, 253, 253);\n  position: relative;\n  padding: 0 4%;\n  width: 100%;\n  min-width: 1000px;\n  box-shadow: 0 0 10px rgb(87, 110, 172);\n\n}\n\n.categories>li {\n  position: static;\n  display: inline-block;\n  padding: 20px 15px;\n  /* cursor: pointer; */\n}\n\n.categories li a {\n  text-decoration: none;\n}\n\n.categories > li > .subcategories-container {\n  display: none;\n  position: fixed;\n  background-color: #fff;\n  padding: 15px;\n  gap: 15px 5px;\n  flex-wrap: wrap;\n  width: auto;\n  max-width: 100%;\n  height: auto;\n  left: 100%;\n  top: 0;\n  font-size: 14px;\n  overflow: hidden;\n  z-index: 500;\n  border: 1px solid #ddd;\n}\n\n.categories > li:hover > .subcategories-container {\n  display: block;\n}\n\n.categories > li:hover {\n  background-color: #bac8f6;\n  transition: all 0.5s;\n  border-radius: 20px;\n}\n\n.categories > li > .subcategories-container > .subcategories-list > li {\n  margin: 15px 0;\n  flex: 1 1 200px;\n  list-style-type: none;\n}\n\n.categories > li > .subcategories-container > .subcategories-list > li:hover {\n  color: rgb(112, 112, 166);\n}\n.categories li ul li img{\n  display: none;\n}\n\n#category-grid {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  \n  gap: 40px;\n  margin-top: 20px;\n  margin-bottom: 20px;\n  margin-left: 20px;\n  margin-right: 20px;\n}\n\n#category-grid .category-container:hover {\n  transform: scale(1.05); /* Zoom in slightly */\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */\n  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;\n}\n\n.category {\n  width: 100%;\n  height: 100%;\n  object-fit: cover;\n  transition: transform 0.3s ease 0.1s, width 2s, height 2.5s;\n\n}\n\n#category-grid .show-items-btn:hover {\n  background-color: #2874F0; /* Change button background color */\n  color: white; /* Change button text color */\n  transition: background-color 0.3s ease, color 0.3s ease; /* Add smooth transitions */\n}\n\n.category:hover {\n  transform: scale(1.1025);\n}\n\n.category h3 {\n  font-size: 18px;\n  color: #333333;\n}\n\n/*adding transition property to the images of the cateogory-grid section*/\n#category-grid img {\n  transition: transform 0.3s ease-in-out;\n}\n\n#category-grid img:hover {\n  transform: scale(1.1);\n  opacity: 0.82;\n  transition: transform 0.3s ease-in-out;\n}\n\n#categories {\n    list-style: none;\n    padding: 0;\n}\n\n.category-item {\n    position: relative;\n    padding: 10px;\n    cursor: pointer;\n}\n\n.category-item a {\n    text-decoration: none;\n    color: #000;\n}\n\n.subcategories-container {\n    display: none;\n    position: absolute;\n    top: 0;\n    left: 100%;\n    background: #fff;\n    border: 1px solid #ddd;\n    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n    z-index: 1000;\n}\n\n.subcategories-list {\n    list-style: none;\n    margin: 0;\n    padding: 10px;\n}\n\n.subcategories-list li {\n    margin: 0;\n    padding: 5px 0;\n}\n\n.subcategories-list li a {\n    text-decoration: none;\n    color: #000;\n}\n\n.category-item:hover .subcategories-container {\n    display: block;\n}\n"
  },
  {
    "path": "css/contact.css",
    "content": ".contact-header {\n    background-color: #007bff;\n    color: white;\n    padding: 15px 0;\n}\n.contact-header a {\n    color: white;\n    text-decoration: none;\n    margin: 0 20px;\n    transition: color 0.3s;\n}\n.contact-header a:hover {\n    color: #ffd700;\n}\n.contact-section {\n    padding: 60px 0;\n}\n.contact-section h2 {\n    animation: fadeInDown 1s;\n}\n.contact-info,\n.contact-form {\n    animation: fadeInUp 1s;\n}\n@keyframes fadeInDown {\n    from { opacity: 0; transform: translateY(-20px); }\n    to { opacity: 1; transform: translateY(0); }\n}\n@keyframes fadeInUp {\n    from { opacity: 0; transform: translateY(20px); }\n    to { opacity: 1; transform: translateY(0); }\n}\n.contact-info img {\n    width: 30px;\n    margin-right: 10px;\n}\n.footer {\n    background-color: #f1f1f1;\n    padding: 20px 0;\n}\n.footer a {\n    color: #007bff;\n    text-decoration: none;\n    transition: color 0.3s;\n}\n.footer a:hover {\n    color: #0056b3;\n}\n#comment{\n    padding: 10px;\n    /* margin-top: 50px; */\n    margin-left: 4px;\n    margin-top: 35px;\n    margin-bottom: 20px;\n}"
  },
  {
    "path": "css/contactus.css",
    "content": "body {\r\n    font-family: 'Arial', sans-serif;\r\n    background: linear-gradient(180deg, #FDD86C 8.1%, #FF7D1F 100%);\r\n  user-select: none;         /* Disable text selection in all browsers */\r\n  -webkit-user-select: none; /* Safari */\r\n  -moz-user-select: none;    /* Firefox */\r\n  -ms-user-select: none;     /* Internet Explorer/Edge */\r\n\r\n}\r\n\r\n\r\n.container {\r\n    display: flex;\r\n    justify-content: center;\r\n    align-items: center;\r\n    margin: 50px auto 100px;\r\n    gap: 200px;\r\n\r\n}\r\n\r\n\r\n#error {\r\n    color: red;\r\n    font-size: 18px;\r\n    text-align: center;\r\n}\r\n\r\ninput::placeholder,\r\ntextarea::placeholder {\r\n    color: #0000006B;\r\n    font-family: 'Poppins', sans-serif;\r\n    font-size: 20px;\r\n    font-weight: 400;\r\n    line-height: 30px;\r\n    text-align: left;\r\n}\r\n\r\n\r\n@keyframes blink {\r\n    0%, 100% {\r\n        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25);\r\n    }\r\n    50% {\r\n        box-shadow: 0 4px 8px rgba(255, 255, 255, 1);\r\n    }\r\n}\r\n\r\n\r\n.form-container {\r\n    background: rgba(255, 125, 31, 0.39);\r\n    padding: 20px;\r\n    border-radius: 20px;\r\n    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25);\r\n    width: 400px;\r\n    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;\r\n}\r\n\r\n.form-container:hover {\r\n    transform: scale(1.05);\r\n    animation: blink 1.5s infinite;\r\n}\r\n\r\n\r\n.form-container h1 {\r\n    text-align: center;\r\n    margin-bottom: 20px;\r\n    font-family: 'Poppins', sans-serif;\r\n    color: white;\r\n    font-size: 30px;\r\n    font-weight: 400;\r\n    line-height: 45px;\r\n}\r\n\r\nform label {\r\n    display: block;\r\n    margin-bottom: 5px;\r\n    font-weight: bold;\r\n}\r\n\r\n\r\n.container img {\r\n    width: 25%;\r\n}\r\n\r\n\r\n.main {\r\n    min-height: 70vh;\r\n    height: auto;\r\n    display: flex;\r\n    justify-content: center;\r\n    align-items: center;\r\n    width: 85vw;\r\n    border-radius: 20px;\r\n    margin-block: 50px !important;\r\n    background-image: linear-gradient(to right, red 1%, orange 99%) !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 1212px) {\r\n    .container img {\r\n        width: 40%;\r\n    }\r\n    .container {\r\n        gap: 100px;\r\n    }\r\n}\r\n\r\n@media only screen and (max-width: 958px) {\r\n    .container img {\r\n        width: 50%;\r\n    }\r\n    .container {\r\n        gap: 10px;\r\n    }\r\n}\r\n\r\n@media only screen and (max-width: 558px) {\r\n    .container img {\r\n        width: 70% !important;\r\n    }\r\n    .container {\r\n        margin-top: 120px !important;\r\n    }\r\n}\r\n\r\n@media only screen and (max-width: 781px) {\r\n    .container img {\r\n        width: 50%;\r\n    }\r\n    .container {\r\n        flex-direction: column;\r\n        gap: 100px;\r\n    }\r\n    .form-container {\r\n        width: 70vw !important;\r\n    }\r\n}\r\n\r\n\r\nform input,\r\nform textarea {\r\n    width: 100%;\r\n    padding: 10px;\r\n    margin-bottom: 15px;\r\n    border: none;\r\n    border-bottom: 2px solid;\r\n    background-color: transparent;\r\n    box-sizing: border-box;\r\n    font-family: 'Poppins', sans-serif;\r\n    font-size: 20px;\r\n    font-weight: 400;\r\n    line-height: 30px;\r\n    text-align: left;\r\n}\r\n\r\nform textarea {\r\n    resize: none;\r\n    height: 80px;\r\n    color: #0000006B;\r\n    border-bottom: 1px solid;\r\n}\r\n\r\n\r\n#rating {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin-bottom: 15px;\r\n}\r\n\r\n\r\n#comment {\r\n    border-bottom: 1px solid;\r\n    margin-top:15px;\r\n}\r\n\r\n\r\n.star {\r\n    font-size: 2rem;\r\n    cursor: pointer;\r\n    color: black;\r\n}\r\n\r\n\r\n#rate {\r\n    font-family: 'Poppins', sans-serif;\r\n    font-size: 20px;\r\n    font-weight: 400;\r\n    line-height: 30px;\r\n    text-align: left;\r\n}\r\n\r\n\r\n#button {\r\n    width: 100%;\r\n    padding: 10px;\r\n    border: none;\r\n    border-radius: 5px;\r\n    background-color: black;\r\n    color: #FF7D1F;\r\n    cursor: pointer;\r\n    font-size: 1rem;\r\n    width: 100px;\r\n    display:flex;\r\n    padding-left:20px;\r\nmargin-left: 190px;\r\n}\r\n\r\n#button:hover {\r\n    background-color: #333;\r\n}\r\n\r\n\r\n.main{\r\n    margin-left:100px;\r\n  \r\n}\r\n /* margin for comment div */\r\n#comment{\r\n   margin-bottom:15px;\r\n    margin-left:155px;\r\n}\r\n\r\n.container #comment{\r\n    margin-left:10px;\r\n}\r\n"
  },
  {
    "path": "css/darkmode.css",
    "content": ".toggledm {\r\n    cursor: pointer;\r\n    position: relative;\r\n    display: flex;\r\n    justify-content: space-between;\r\n    width: 62px;\r\n    height: 30px;\r\n    border:2px solid white;\r\n    /* Further adjusted width to make the toggledm box smaller */\r\n    border-radius: 25px;\r\n    /* Adjusted for smaller height */\r\n    transition: .2s;\r\n    align-items: center;\r\n}\r\n\r\n.toggledm i {\r\n    width: 50%;\r\n    line-height: 30px;\r\n    /* Adjusted to match smaller height */\r\n    text-align: center;\r\n    font-size: 16px;\r\n    /* Adjusted font size for smaller icons */\r\n    z-index: 1;\r\n}\r\n\r\n.toggledm .ball {\r\n    position: absolute;\r\n    width: 25px;\r\n    /* Adjusted ball size */\r\n    height: 25px;\r\n    /* Adjusted ball size */\r\n    margin: 2.5px;\r\n    /* Adjusted margin to center the ball */\r\n    border-radius: 50%;\r\n    transition: .3s ease-out;\r\n}\r\n\r\n.dmInput {\r\n    display: none;\r\n}\r\n\r\n/* -- Light Mode -- */\r\n\r\n.light {\r\n    background: #dcdcdc;\r\n}\r\n\r\n\r\n.light .toggledm .bxs-sun {\r\n    color: #dcdcdc;\r\n}\r\n\r\n.light .toggledm .bx-moon {\r\n    color: #198754;\r\n}\r\n\r\n.light .toggledm .ball {\r\n    background: #198754;\r\n}\r\n/* -- Dark Mode -- */\r\n.dark {\r\n    background: #151d2a;\r\n}\r\n\r\n.dark .toggledm {\r\n    background: #151d2a;\r\n    box-shadow: 3px 3px 3px #0e131b,\r\n        -3px -3px 3px #1c2739;\r\n}\r\n\r\n.dark .toggledm .bx {\r\n    color: #dcdcdc;\r\n}\r\n\r\n.dark .toggledm .bxs-moon {\r\n    color: #080cc3;\r\n}\r\n.bxs-sun{\r\n    color: #ff8f00;\r\n}\r\n.toggledm .ball{\r\n    background: #dcdcdc;\r\n    transform: translateX(0%);\r\n}\r\n.dark .toggledm .ball {\r\n    background: #dcdcdc;\r\n    transform: translateX(115%);\r\n    /* Adjusted for smaller toggledm width */\r\n}\r\n\r\n.dark{\r\n    .media-body{\r\n        p{\r\n            color: white;\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "css/feedback.css",
    "content": "#CommentBtn {\n    position: fixed;\n    bottom: 140px;\n    right: 50px;\n    width: 40px;\n    height: 40px;\n    background-color: #007BFF;\n    color: white;\n    border: none;\n    border-radius: 50%;\n    cursor: pointer;\n    font-size: 24px;\n    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    opacity: 0.4;\n    transition: 500ms;\n  }\n  \n  #CommentBtn:hover {\n    background-color: #0056b3;\n    opacity: 1;\n  }\n  \n  \n  /* Style for the modal background */\n  #modalBackground {\n    display: none;\n    position: fixed;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background-color: rgba(0, 0, 0, 0.5);\n    justify-content: center;\n    align-items: center;\n    z-index: 1000;\n  }\n  \n  /* Style for the comment form */\n  #commentForm {\n    max-width: 500px;\n    padding: 20px;\n    border: 1px solid #ddd;\n    border-radius: 10px;\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n    background-color: #947fde9e;\n    z-index: 1001;\n  }\n  \n  #commentForm label {\n    display: block;\n    margin-bottom: 10px;\n    font-weight: bold;\n  }\n  \n  #commentForm textarea {\n    width: 96%;\n    padding: 10px;\n    margin-bottom: 10px;\n    border: 1px solid #ddd;\n    border-radius: 5px;\n    resize: vertical;\n  }\n  \n  #commentForm button[type=\"submit\"] {\n    background-color: #28a745;\n    color: white;\n    border: none;\n    padding: 10px 20px;\n    border-radius: 5px;\n    cursor: pointer;\n    font-size: 16px;\n  }\n  \n  #commentForm button[type=\"submit\"]:hover {\n    background-color: #218838;\n  }"
  },
  {
    "path": "css/footer.css",
    "content": "* {\r\n    margin: 0;\r\n    padding: 0;\r\n    box-sizing: border-box;\r\n    /* border: 1px solid red; */\r\n}\r\n\r\n/* footer */\r\nfooter {\r\n    /* background: #292d33;  */\r\n    color: #fff;\r\n    font-size: 12px;\r\n}\r\n\r\nfooter .footerTop {\r\n    padding: 22px;\r\n}\r\n\r\nfooter .footerTop a {\r\n    text-decoration: none;\r\n    color: #fff;\r\n}\r\n\r\nfooter .footerTop ul {\r\n    list-style-type: none;\r\n    padding: 0;\r\n    margin: 0;\r\n}\r\n\r\nfooter .footerI h5 {\r\n    color: #878787;\r\n    font-size: 16px;\r\n    margin: 20px 5px;\r\n    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);\r\n}\r\n\r\nfooter .mailSocial {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px;\r\n}\r\n\r\nfooter .social li:hover {\r\n    transform: scale(1.1025);\r\n    background-color: #1b1919;\r\n}\r\n\r\n@media screen and (max-width: 991px) {\r\n    footer .mailSocial {\r\n        border-left: none;\r\n        padding-left: 0;\r\n    }\r\n}\r\n\r\nfooter .footerTop li:hover {\r\n    text-decoration: underline;\r\n    text-decoration-thickness: 2px;\r\n}\r\n\r\nfooter .social ul {\r\n    display: flex;\r\n    align-items: center;\r\n}\r\n\r\nfooter .social li {\r\n    margin: 5px;\r\n    opacity: 0.75;\r\n}\r\n\r\nfooter .social a img {\r\n    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out;\r\n    border-radius: 50%;\r\n}\r\n\r\nfooter .social a:hover img {\r\n    transform: scale(1.5) translateY(-5px);\r\n    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);\r\n    filter: brightness(1.2) drop-shadow(2px 4px 6px black);\r\n}\r\n\r\nfooter .social ul li:nth-child(1) a:hover {\r\n    color: #0951ed; \r\n    filter: invert(29%) sepia(89%) saturate(4545%) hue-rotate(187deg) brightness(90%) contrast(103%);\r\n}\r\n\r\nfooter .social ul li:nth-child(2) a:hover {\r\n    color: rgb(243, 5, 5);\r\n    filter: invert(41%) sepia(98%) saturate(3627%) hue-rotate(328deg) brightness(91%) contrast(103%);\r\n}\r\n\r\nfooter .social ul li:nth-child(3) a:hover {\r\n    color: rgb(41, 202, 60);\r\n    filter: invert(16%) sepia(73%) saturate(7437%) hue-rotate(450deg) brightness(90%) contrast(98%);\r\n}\r\n\r\nfooter .footerEnd {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center;\r\n    color: #fff;\r\n    font-size: 12px;\r\n}\r\n\r\nfooter .footerEnd .col-auto {\r\n    display: flex;\r\n    align-items: center; /* Align items horizontally */\r\n    margin: 0 22px;\r\n}\r\n\r\nfooter .footerEnd .col-auto img {\r\n    margin-right: 10px; /* Space between icon and text */\r\n}\r\n\r\nfooter .footerEnd .col-auto a {\r\n    text-decoration: none;\r\n    color: #fff;\r\n    display: flex;\r\n    align-items: center; /* Center-align text vertically with the icon */\r\n}\r\n\r\nfooter .footerEnd .col-auto a:hover img {\r\n    transform: scale(1.1); /* Slightly scale up on hover */\r\n    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);\r\n}\r\n\r\n@media screen and (max-width: 770px) {\r\n    .pCGSTEF {\r\n        width: 80vw;\r\n    }\r\n\r\n    footer .footerEnd {\r\n        flex-flow: column;\r\n        align-items: center; /* Center-align items in column layout */\r\n    }\r\n}\r\n\r\n#visitorCount {\r\n    margin-top: 30px;\r\n}\r\n\r\n#visitorCount a {\r\n    /* padding: 20px; */\r\n}\r\n"
  },
  {
    "path": "css/header.css",
    "content": "* {\r\n  margin: 0;\r\n  padding: 0;\r\n  box-sizing: border-box;\r\n}\r\n\r\n#header-bluebg{\r\nfont-size: medium;\r\n}\r\n#header-bluebg .secondNav{\r\n  background: #2874F0;\r\n  font-size: 14px;\r\n}\r\n#header-bluebg .secondNav a{\r\ncolor: #000;\r\n}\r\n#header-bluebg .nav-link .bi-chevron-up {\r\n  display: none;\r\n}\r\n\r\n#header-bluebg .nav-link:hover .bi-chevron-down {\r\n  display: none;\r\n}\r\n#header-bluebg .nav-link:hover .bi-chevron-up {\r\n  display: inline;\r\n}\r\n#header-bluebg .nav-link i{\r\n  font-size: 10px;\r\n}\r\n\r\n\r\n#more_h .bi-chevron-up {\r\n  display: none;\r\n}\r\n\r\n#more_h:hover .bi-chevron-down {\r\n  display: none;\r\n}\r\n#more_h:hover .bi-chevron-up {\r\n  display: inline;\r\n}\r\n#more_h i{\r\n  font-size: 10px;\r\n}\r\n\r\n#header-bluebg a ,#more_h{\r\n  text-decoration: none;\r\n  color: rgb(255, 255, 255);\r\n  font-weight: 600;\r\n}\r\n\r\n#header-bluebg .searchBar_h input{\r\n  width: 28vw;\r\n  padding: 5px;\r\n}\r\n.cartLogoandname{\r\n  position: relative ;\r\n}\r\n#cartItems{\r\n  position: absolute;\r\n    top: -8px;\r\n    left: 4px;\r\n    padding: 0 5px;\r\n    border-radius: 50%;\r\n    background: red;\r\n    width: 18px;\r\n    height: 18px;\r\n    background-color: #ff6161;\r\n    border: 1px solid #fff;\r\n    line-height: 16px;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: none;\r\n}\r\n\r\n\r\n\r\n@media (max-width: 992px) { \r\n  #header-bluebg .b_a_s, #more_h{\r\n    display: none;\r\n  }\r\n }\r\n\r\n @media (max-width: 592px) { \r\n  .cart_h{\r\n    display: none;\r\n  }\r\n }\r\n .searchBar_h{\r\n  position: relative;\r\n }\r\n .searchBar_h .bi-search{\r\n  position: absolute;\r\n  right: 8px;\r\n }\r\n"
  },
  {
    "path": "css/homeHeader.css",
    "content": "#homeHeader {\r\n  position: sticky;\r\n  top: 0;\r\n  width: 100%;\r\n  z-index: 9999;\r\n  background-color: #ffffff;\r\n  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\r\n}\r\n\r\n.homeHeader * {\r\n  color: #000;\r\n}\r\n\r\n.flex-grow > input::placeholder {\r\n  font-size: 17px;\r\n  color: #666666;\r\n  font-weight: lighter;\r\n  padding-top: 5px;\r\n  letter-spacing: 0.01rem;\r\n}\r\n\r\n.homeHeader .nav-item {\r\n  transition: background-color 0.5s ease;\r\n  margin: 0 3px;\r\n}\r\n\r\n#searchbar.navtab {\r\n  width: 100%;\r\n  border-radius: 10px;\r\n  position: relative !important;\r\n}\r\n\r\ndiv#autocompleteResults { \r\n  position: absolute; \r\n  top: 50px; \r\n  background-color: #e6eeff; \r\n  border-radius: 15px; \r\n  padding: 0px; \r\n  display: flex !important; \r\n  gap: 5px; flex-direction: column; \r\n  width: 100%; \r\n}\r\n\r\n.autocomplete-item {\r\n  padding: 5px 15px;\r\n}\r\n\r\n.homeHeader .nav-link {\r\n  text-decoration: none;\r\n  color: #000;\r\n  display: block;\r\n  padding:8px 20px;\r\n  width: 100%;\r\n}\r\n\r\n.navbar {\r\n  padding: 2px 18px;\r\n  display: flex;\r\n  justify-content: space-between;\r\n  align-items: center;\r\n  flex-wrap: wrap;\r\n}\r\n\r\na.navbar-brand {\r\n  padding-right: 5px;\r\n}\r\n\r\n.homeHeader .navtab {\r\n  display: flex;\r\n  justify-content: center;\r\n  padding-left: 10px;\r\n  background-color: #e6eeff;\r\n  border-radius: 5px;\r\n}\r\n\r\n.homeHeader .navbar-nav {\r\n  display: flex;\r\n  align-items: center;\r\n  margin-right: auto;\r\n}\r\n\r\n.homeHeader #input_data {\r\n  width: 35vw;\r\n  border: none;\r\n  background-color: transparent;\r\n  padding: 10px;\r\n  text-decoration: none;\r\n}\r\n\r\n.homeHeader #input_data:focus {\r\n  outline: none;\r\n}\r\n\r\n.homeHeader .nav-item:hover {\r\n  background-color: transparent;\r\n  transform: none;\r\n  border-bottom: none;\r\n}\r\n\r\n.homeHeader .nav-item-divider::before {\r\n  content: '';\r\n  display: inline-block;\r\n  width: 1px;\r\n  height: 30px;\r\n  background-color: #ccc;\r\n  margin: 0 10px;\r\n  transition: all 0.4s;\r\n}\r\n\r\n.homeHeader .nav-dd:hover {\r\n  background: #ebe8e8;\r\n  border-radius: 10px;\r\n}\r\n\r\n.homeHeader .navItem4:hover,\r\n.homeHeader .navItem3:hover {\r\n  background: #ebe8e8;\r\n  border-radius: 10px;\r\n  transition: all 0.4s;\r\n}\r\n\r\n.homeHeader .nav-item-divider:last-child::before {\r\n  display: none;\r\n}\r\n\r\n.homeHeader .nav-item-divider::after {\r\n  content: '';\r\n  display: inline-block;\r\n  width: 1px;\r\n  height: 30px;\r\n  background-color: #ccc;\r\n  margin: 0 10px;\r\n}\r\n\r\n.homeHeader .nav-item-divider:last-child::after {\r\n  display: none;\r\n}\r\n\r\n.homeHeader #navbarNav_ {\r\n  display: flex;\r\n  justify-content: space-between;\r\n  align-items: center;\r\n  height: 43px;\r\n}\r\n\r\n.cartLogoandname {\r\n  position: relative;\r\n}\r\n\r\n#cartItems {\r\n  position: absolute;\r\n  top: 14px;\r\n  left: 14px;\r\n  padding: 0 5px;\r\n  border-radius: 50%;\r\n  background: red;\r\n  width: 18px;\r\n  height: 18px;\r\n  background-color: #ff6161;\r\n  border: 1px solid #fff;\r\n  line-height: 16px;\r\n  font-size: 12px;\r\n  color: #fff;\r\n}\r\n\r\n/* Styles for the dropdown menu */\r\n.homeHeader .dropdown-menu {\r\n  position: absolute !important;\r\n  background-color: #ffffff;\r\n  border: 1px solid #ddd;\r\n  border-radius: 5px;\r\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\r\n  padding: 10px 0;\r\n  min-width: 250px;\r\n  z-index: 1000;\r\n  right: 0;\r\n}\r\n\r\n/* Styles for the dropdown items */\r\n.homeHeader .dropdown-item {\r\n  padding: 10px 20px;\r\n  color: #333;\r\n  text-decoration: none;\r\n  display: block;\r\n  width: 100%;\r\n  transition: background-color 0.2s ease, color 0.2s ease;\r\n  position: relative;\r\n  z-index: 200;\r\n}\r\n\r\n.homeHeader .dropdown-item:hover {\r\n  background-color: #f8f9fa;\r\n  color: #007bff;\r\n  display: block;\r\n}\r\n.navname{\r\n  position:relative;\r\n}\r\n@keyframes shake {\r\n  0% { transform: translateX(0); }\r\n  25% { transform: translateX(-10px); }\r\n  50% { transform: translateX(10px); }\r\n  75% { transform: translateX(-10px); }\r\n  100% { transform: translateX(0); }\r\n}\r\n\r\n.temporary-login-btn {\r\n  z-index: 1100 !important;\r\n  position: fixed;\r\n}\r\n\r\n.shake {\r\n  animation: shake 0.5s ease-in-out;\r\n  animation-iteration-count: 5;\r\n}\r\n\r\n@media screen and (max-width: 1184px) {\r\n  .navbar {\r\n    justify-content: space-around;\r\n  }\r\n\r\n  .navItem2,\r\n  .navItem3,\r\n  .navItem4,\r\n  .navItem5 {\r\n    margin: 0;\r\n  }\r\n}\r\n\r\n@media screen and (max-width: 995px) {\r\n  .navname3,\r\n  .navname2 {\r\n    display: none;\r\n  }\r\n}\r\n\r\n@media screen and (max-width: 770px) {\r\n  .navItem4,\r\n  .navItem5 {\r\n    display: none;\r\n  }\r\n\r\n  #searchbar {\r\n    position: absolute;\r\n    width: 100%;\r\n    margin: 0;\r\n    left: 0;\r\n    bottom: -44px;\r\n  }\r\n\r\n  #searchbar #input_data {\r\n    width: 80vw;\r\n  }\r\n\r\n  .homeHeader {\r\n    padding: 0;\r\n    margin: 0;\r\n  }\r\n\r\n  .navbar {\r\n    justify-content: start;\r\n  }\r\n\r\n  .navname_ac {\r\n    display: none;\r\n  }\r\n}\r\n\r\n@media screen and (max-width: 576px) {\r\n  .homeHeader .navbar-nav {\r\n    flex-direction: column;\r\n    align-items: flex-start;\r\n  }\r\n\r\n  .homeHeader .nav-link {\r\n    padding: 10px 20px;\r\n  }\r\n\r\n  #searchbar {\r\n    bottom: -54px;\r\n  }\r\n\r\n  #searchbar #input_data {\r\n    width: 90vw;\r\n  }\r\n\r\n  .cartLogoandname {\r\n    display: none;\r\n  }\r\n}\r\n"
  },
  {
    "path": "css/index.css",
    "content": "@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');\r\n\r\n* {\r\n  margin: 0;\r\n  padding: 0;\r\n  box-sizing: border-box;\r\n  /* border: 1px solid red; */\r\n}\r\n\r\nbody {\r\n  font-family: 'Poppins', sans-serif;\r\n  background: #dcdcdc !important;\r\n  overflow-x: hidden;\r\n  user-select: none;         /* Disable text selection in all browsers */\r\n  -webkit-user-select: none; /* Safari */\r\n  -moz-user-select: none;    /* Firefox */\r\n  -ms-user-select: none;     /* Internet Explorer/Edge */\r\n}\r\n\r\n/* Scrollbar */\r\n::-webkit-scrollbar-track {\r\n  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);\r\n  background-color: #f5f5f5;\r\n  border-radius: 10px;\r\n}\r\n::-webkit-scrollbar {\r\n  width: 10px;\r\n  background-color: #f5f5f5;\r\n  transition: width 0.3s;\r\n}\r\n::-webkit-scrollbar-thumb {\r\n  border-radius: 10px;\r\n  background-color: #fff;\r\n  background-image: -webkit-gradient(\r\n    linear,\r\n    40% 0%,\r\n    75% 84%,\r\n    from(#0d6efd),\r\n    color-stop(0.4, #0d6efd), \r\n    color-stop(0.5, #1d7bfd), \r\n    color-stop(0.6, #3d8bfd), \r\n    to(#3d8bfd)\r\n  );\r\n  transition: background-color 0.3s, width 0.3s;\r\n}\r\n/* Hover effect */\r\n::-webkit-scrollbar:hover {\r\n  width: 14px;\r\n}\r\n::-webkit-scrollbar-thumb:hover {\r\n  background-color: #0d6efd; \r\n}\r\n.navname_ac .bi-chevron-up {\r\n  display: none;\r\n}\r\n\r\n.acnavdd:hover .navname_ac .bi-chevron-down {\r\n  display: none;\r\n}\r\n\r\n.acnavdd:hover .navname_ac .bi-chevron-up {\r\n  display: inline;\r\n}\r\n\r\n#categorylist-wrapper {\r\n  margin-top: 8px;\r\n  width: -webkit-fill-available;\r\n}\r\n\r\n@media screen and (max-width: 770px) {\r\n  #categorylist-wrapper {\r\n    margin-top: 50px;\r\n  }\r\n}\r\n\r\n\r\n/* for category tab */\r\n\r\n.categorylist-wrapper {\r\n  width: 100vw;\r\n  overflow-x: scroll;\r\n  /* z-index: 500; */\r\n}\r\n\r\n.categorylist-wrapper::-webkit-scrollbar {\r\n  display: none;\r\n}\r\n\r\n\r\n.categories {\r\n  display:grid;\r\n  grid-auto-flow: column;\r\n  justify-content: space-between;\r\n  align-items: center;\r\n  background-color: rgb(255, 253, 253);\r\n  position: relative;\r\n  padding: 0;\r\n  height: calc(100% - 16px);\r\n  padding: 0 4%;\r\n  width: 100%;\r\n  min-width: 1000px;\r\n  box-shadow: 0 0 4px rgb(76, 76, 76);\r\n}\r\n\r\n .categories>li {\r\n  position: static;\r\n  align-items: center;\r\n  margin-left: auto;\r\n  /* display: inline-block; */\r\n  padding: 20px 15px;\r\n  cursor: pointer;\r\n  text-align: center;\r\n  font-size: 14px;\r\n  font-weight: 500;\r\n\r\n}\r\n\r\n.categories li a {\r\n  text-decoration: none;\r\n  color: black;\r\n  font-weight: 600;\r\n}\r\n\r\n.categories>li>ul {\r\n  display: none;\r\n  position: fixed;\r\n  background-color: rgb(201, 224, 252) !important;\r\n  padding: 15px;\r\n  gap: 15px 5px;\r\n  flex-wrap: wrap;\r\n  width: 100vw;\r\n  height: max-content;\r\n  max-height: 100vh;\r\n  padding: 0 10%;\r\n  left: 0;\r\n  font-size: 14px;\r\n  overflow: hidden;\r\n  z-index: 500;\r\n}\r\n\r\n.categories li img{\r\n  width: 64px;\r\n  height: 64px;\r\n  margin-left: auto;\r\n  margin-right: auto;\r\n}\r\n\r\n.categories li ul li img{\r\n  display: none;\r\n \r\n}\r\n\r\n\r\n#category-grid {\r\n  display: grid;\r\n  grid-template-columns: repeat(3, 1fr);\r\n  gap: 40px;\r\n  margin-top: 20px;\r\n  margin-bottom: 20px;\r\n  margin-left: 20px;\r\n  margin-right: 20px;\r\n}\r\n\r\n.category-container {\r\n  position: relative;\r\n  border-radius: 15px;\r\n  overflow: hidden;\r\n}\r\n\r\n.category {\r\n  width: 100%; /* Adjust the width as needed */\r\n  height: auto;\r\n  display: block;\r\n  border-radius: 15px;\r\n}\r\n\r\n.show-items-link {\r\n  position: absolute;\r\n  bottom: 10px;\r\n  left: 50%;\r\n  transform: translateX(-50%);\r\n  text-decoration: none; /* Remove default link styling */\r\n}\r\n\r\n.show-items-btn {\r\n  background-color: rgba(0, 0, 0, 0.6);\r\n  color: white;\r\n  border: none;\r\n  padding: 10px 20px;\r\n  border-radius: 5px;\r\n  display: none;\r\n  cursor: pointer;\r\n}\r\n\r\n.category-container:hover .show-items-btn {\r\n  display: block;\r\n}\r\n \r\n/* Responsive adjustments */\r\n@media (max-width: 768px) {\r\n  #category-grid {\r\n    grid-template-columns: repeat(2, 1fr);\r\n    gap: 20px; /* Adjust gap for smaller screens */\r\n    margin: 10px; /* Adjust margins for smaller screens */\r\n  }\r\n}\r\n\r\n@media (max-width: 480px) {\r\n  #category-grid {\r\n    grid-template-columns: 1fr;\r\n    gap: 10px; /* Adjust gap for smallest screens */\r\n    margin: 5px; /* Adjust margins for smallest screens */\r\n  }\r\n}\r\n/*Other Top Deals*/\r\n\r\n.dropdownbox {\r\n  /* left:20%; */\r\n  display: none;\r\n  position: absolute;\r\n  top:30%;\r\n  width:240px;\r\n  /* height:528px; */\r\n  box-shadow: 0 8px 8px 1px rgba(0, 0, 0, .3);\r\n  border-radius: 8px;\r\n  background-color: #fff;\r\n  color: rgb(43, 42, 42);\r\n  line-height: 20px;\r\n  font-size: 12px;\r\n  z-index: 1000;\r\n  margin-top: 25px;\r\n\r\n}\r\n.grocery{\r\n  left:5%;\r\n}\r\n.Mobiles{\r\n  left: 10%;\r\n}\r\n.Fashion{\r\n  left:20%;\r\n}\r\n.electronics{\r\n  left:30%;\r\n}\r\n.home-furniture{\r\n  left:40%;\r\n}\r\n.appliances{\r\n  left: 50%;\r\n}\r\n.travel{\r\n  left:65%;\r\n}\r\n.beauty{\r\n  left:70%;\r\n}\r\n.twowheelers{\r\n  right:15%;\r\n}\r\n\r\n.dropdownbox > div > div + div{\r\n  display: none;\r\n  position: absolute;\r\n  top:0%;\r\n  width:240px;\r\n  left: 100%;\r\n  box-shadow: 0 8px 8px 1px rgba(0, 0, 0, .3);\r\n  border-radius: 8px;\r\n  background-color: #fff;\r\n  line-height: 20px;\r\n}\r\n\r\n.dropdownbox > div:hover > div + div{\r\n  display: block;\r\n}\r\n\r\n.sidearrow{\r\n  display: none;\r\n  position: absolute;\r\n  right: 30px;\r\n  height: 6px;\r\n  width: 6px;\r\n  margin: 15px 0 15px 0;\r\n  border-color: #111112;\r\n  border-style: solid;\r\n  border-width: 0 1px 1px 0;\r\n  transform-origin: 50% 50%;\r\n  transform: translateY(75%) rotate(-45deg);\r\n}\r\n.dropdownbox > div{\r\n  display: flex;\r\n}\r\n.dropdownbox > div > div:not(.subdropdown){\r\n  padding: 12px 16px;\r\n}\r\n.dropdownbox > div:hover > div:not(.subdropdown){\r\n  font-weight:bold;\r\n}\r\n.dropdownbox > div:hover{\r\n  background-color:#cbdcf7;\r\n}\r\n.dropdownbox > div:hover >.sidearrow{\r\n  display: block;\r\n}\r\n.subdropdown > div:first-child {\r\n  font-weight: bold;\r\n}\r\n.dropdownbox > div > div > div{\r\n  padding: 12px 16px;\r\n  font-size: 12px;\r\n}\r\n\r\n.subdropdown > div:hover{\r\n  font-weight: bold;\r\n}\r\n\r\n.navbar{\r\n  display: grid;\r\n  grid-auto-flow: column;\r\n}\r\n\r\n/*adding transition property to the images of the cateogory-grid section*/\r\n#category-grid img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#category-grid img:hover {\r\n  transform: scale(1.1);\r\n  opacity: 0.82;\r\n}\r\n\r\n#homeHeader .navbar-brand img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#homeHeader .navbar-brand img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#homeHeader .navbar-brand img:hover {\r\n  transform: scale(1.1);\r\n}\r\n\r\nSearch Bar \r\n#searchbar{\r\n  width: 100%;\r\n  \r\n}\r\n #searchbar input {\r\n  transition: border-color 0.3s ease-in-out;\r\n \r\n}\r\n\r\n#searchbar {\r\n  display: flex; /* Ensures flex layout */\r\n  align-items: center; /* Centers items vertically */\r\n  min-width: 40%; \r\n  \r\n}\r\n\r\n#searchbar .flex-grow {\r\n  flex-grow: 1; /* Allows the input to grow */\r\n}\r\n\r\n#searchbar .searchbar {\r\n  width: 100%; /* Makes the input take up available space */\r\n  min-width: 700px;\r\n  flex-grow: 1;\r\n  padding: 8px;\r\n   \r\n  box-sizing: border-box; /* Ensures padding is included in width */\r\n}\r\n\r\n\r\n#searchbar input:focus {\r\n  border-color: #2874F0; /* Change the border color on focus */\r\n}\r\n\r\n/* Account Dropdown */\r\n#navbarDropdow .nav-link img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#navbarDropdow .nav-link img:hover {\r\n  transform: scale(1.1);\r\n}\r\n\r\n/* Cart Icon */\r\n.cartLogoandname img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n.cartLogoandname img:hover {\r\n  transform: scale(1.1);\r\n}\r\n\r\n/* Become a Seller Icon */\r\n.navItem4 img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n.navItem4 img:hover {\r\n  transform: scale(1.1);\r\n}\r\n\r\n/* More Links Dropdown */\r\n#moreLinksDropdow .nav-link img {\r\n  transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#moreLinksDropdow .nav-link img:hover {\r\n  transform: scale(1.1);\r\n}\r\n\r\n@media only screen and (max-width: 800px) {\r\n  #navbarNav_ {\r\n    max-width: 100vw !important;\r\n    height: 100px !important;\r\n    flex-direction: column-reverse;\r\n  }\r\n\r\n  #input_data.searchbar {\r\n    width: 100vw !important;\r\n  }\r\n\r\n  #searchbar span.flex-grow {\r\n    width: 90vw !important;\r\n    overflow-x: hidden;\r\n  }\r\n\r\n  ul.navbar-nav {\r\n    max-width: 100vw !important;\r\n    display: flex;\r\n    flex-direction: row !important;\r\n  }\r\n\r\n  .signupin {\r\n    max-width: 100vw !important;\r\n    overflow-x: hidden !important;\r\n    \r\n    padding: 20px 10px !important;\r\n  }\r\n\r\n  .signupin .leftpanal{\r\n    width: 40vw !important;\r\n  }\r\n\r\n  .categories {\r\n    width: max-content !important;\r\n  }\r\n}\r\n\r\n\r\n#img-box {\r\n  display: flex;\r\n  height: 175;\r\n  padding: 20px;\r\n  margin: 15px;\r\n  gap: 49px;\r\n}\r\n\r\n.img {\r\n  transition: transform 0.3s ease 0.1s, width 2s, height 2.5s;\r\n\r\n}\r\n\r\n.img:hover {\r\n  transform: scale(1.1);\r\n}\r\n\r\n/* adding Transition property to the images of the img-box section */\r\n#img-box img {\r\n  width: 100%;\r\n  height: auto;\r\n  transition: transform 0.3s ease-in-out;\r\n} \r\n\r\n#img-box img:hover {\r\n  transform: scale(1.2);\r\n  opacity: 0.82;\r\n} */\r\n\r\n/* product best for you */\r\n#s1-product .products {\r\n  margin: 0 auto;\r\n  padding: 5px;\r\n  transition: transform 0.3s ease-in-out;\r\n\r\n}\r\n\r\n#s1-product .products:hover {\r\n  transform: scale(1.1);\r\n  opacity: 0.82;\r\n}\r\n\r\n#s2-product .products {\r\n  font-size: 14px;\r\n}\r\n\r\n/* FAQ Section Styles */\r\n\r\n\r\n#faq {\r\n  background: rgb(234, 251, 253);\r\n  /* background-image: linear-gradient(90deg, #020024 0%, #092b79 35%, #00d4ff 100%); */\r\n  border-radius: 15px;\r\n  padding: 30px;\r\n  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);\r\n  /* margin-top: 50px; */\r\n}\r\n\r\n.faq-heading {\r\n  font-weight: bold;\r\n  display: block;\r\n  color: #333;\r\n  font-size: 38px;\r\n  margin-bottom: 300px !important;\r\n}\r\n\r\n.faq-card {\r\n  background: white;\r\n  border-radius: 10px;\r\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\r\n  padding: 10px;\r\n  text-align: left;\r\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n}\r\n\r\n.faq-card:hover {\r\n  transform: translateY(-5px);\r\n  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);\r\n}\r\n\r\n.faq-icon {\r\n  text-align: center;\r\n  position: relative;\r\n  left: 400px;\r\n  /* top: 0px; */\r\n  margin-bottom: 15px;\r\n}\r\n\r\n.faq-icon img {\r\n  width: 20px;\r\n  height: 20px;\r\n}\r\n\r\n.faq-question {\r\n  font-size: 18px;\r\n  font-weight: bold;\r\n  /* margin-bottom: 10px; */\r\n  color: #333;\r\n}\r\n\r\n.faq-answer {\r\n  font-size: 16px;\r\n  color: #555;\r\n}\r\n\r\n/* Responsive Styles */\r\n@media (max-width: 768px) {\r\n  .faq-heading {\r\n    font-size: 1.5rem;\r\n  }\r\n\r\n  .faq-card {\r\n    padding: 15px;\r\n  }\r\n\r\n  .faq-question {\r\n    font-size: 1.1rem;\r\n  }\r\n\r\n  .faq-answer {\r\n    font-size: 0.9rem;\r\n  }\r\n}\r\n\r\n\r\n/* faq css end */\r\n\r\n\r\n/* got to top button */\r\n#goToTopBtn {\r\n  /* display: none; */\r\n  position: fixed;\r\n  bottom: 45px;\r\n  right: 50%;\r\n  left: 50%;\r\n  background-color: hsla(217, 87%, 55%, 0);\r\n  color: #ffffff00;\r\n  border: none;\r\n  border-radius: 50%;\r\n  width: 40px;\r\n  height: 40px;\r\n  cursor: pointer;\r\n  font-size: 18px;\r\n}\r\n\r\n#goToTopBtn:hover {\r\n  background-color: hsla(217, 87%, 45%, 0);\r\n}\r\n\r\n.hidden {\r\n  display: none;\r\n}\r\n\r\n\r\n\r\n/* Loader */\r\n\r\n/* #loader {\r\n    position: fixed;\r\n    top: 0;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 100%;\r\n    background-color: rgba(0, 0, 0, 0.7);\r\n    z-index: 99999;\r\n    display: flex;\r\n    flex-direction: column;\r\n    align-items: center;\r\n    justify-content: center;\r\n}\r\n\r\n.loader-spinner {\r\n    width: 100px;\r\n    height: 100px;\r\n    border: 5px solid #fff;\r\n    border-radius: 50%;\r\n    border-top: 5px solid transparent;\r\n    animation: spin 1s linear infinite;\r\n}\r\n\r\n@keyframes spin {\r\n  from {\r\n      transform: rotate(0deg);\r\n  }\r\n\r\n  to {\r\n      transform: rotate(360deg);\r\n  }\r\n  \r\n} */\r\n\r\n\r\n.loader-container {\r\n  height: 100vh;\r\n  width: 100%;\r\n  display: flex;\r\n  justify-content: center;\r\n  align-items: center;\r\n  position: fixed;\r\n  top: 0;\r\n  left: 0;\r\n  background-color: rgb(255, 255, 255);\r\n  z-index: 100000;\r\n}\r\n\r\n.loader-wrapper {\r\n  position: relative;\r\n}\r\n.banner{\r\n  width:100%;\r\n  margin: 10px 0px;\r\n}\r\n.loader {\r\n  border: 10px solid #e4e3e3;\r\n  border-radius: 50%;\r\n  border-top: 10px solid #5f7cff;\r\n  width: 100px;\r\n  height: 100px;\r\n  animation: spin 1.3s linear infinite;\r\n  background-color: transparent;\r\n  z-index: 100000;\r\n}\r\n\r\n.logo {\r\n  position: absolute;\r\n  top: 0;\r\n  right: 0;\r\n  border: 10px solid transparent;\r\n  border-radius: 50%;\r\n  width: 100px;\r\n  height: 100px;\r\n  z-index: -1;\r\n  background-position: center;\r\n  background-size: cover;\r\n}\r\n\r\n@keyframes spin {\r\n  0% {\r\n    transform: rotate(0deg);\r\n  }\r\n\r\n  100% {\r\n    transform: rotate(360deg);\r\n  }\r\n}\r\n\r\n.text{\r\n  background-color: white;\r\n  padding: 20px 30px;\r\n  font-size: 11px;\r\n  \r\n}\r\n.main1{\r\n  font-size: 22px;\r\n  font-weight: bold;\r\n  color: black;\r\n}\r\n.main2{\r\n  font-size: 19px;\r\n  font-weight: bold;\r\n  color: black;\r\n}\r\n.heading1{\r\n  font-weight: 700;\r\n  font-size: 16px;\r\n  color: #878787;\r\n}\r\n.heading2{\r\n  font-weight: 800;\r\n  font-size: 17px;\r\n  color: #878787;\r\n}\r\nul{\r\n  list-style-type: circle;\r\n}\r\n.brand-directory{\r\n  background-color: white;\r\n  padding: 20px 30px;\r\n  color: #878787;\r\n  letter-spacing: 0;\r\n\r\n}\r\n#rating-filter {\r\n    margin: 10px;\r\n    padding: 5px;\r\n    font-size: 14px;\r\n    border: 1px solid #ccc;\r\n    border-radius: 4px;\r\n}\r\n.brand-directory-heading{\r\n  font-weight: 24px;\r\n  color:black ;\r\n\r\n}\r\n\r\n#moreLinksDropdown:hover .dropdown-menu {\r\n  opacity: 1; \r\n}"
  },
  {
    "path": "css/login-signup.css",
    "content": "body {\r\n    background: #f1f3f6;    \r\n  user-select: none;         /* Disable text selection in all browsers */\r\n  -webkit-user-select: none; /* Safari */\r\n  -moz-user-select: none;    /* Firefox */\r\n  -ms-user-select: none;     /* Internet Explorer/Edge */\r\n\r\n\r\n}\r\n\r\n#divB {\r\n    display: none;\r\n}\r\n\r\n.signupin {\r\n    background: #f1f3f6;\r\n    display: flex;\r\n    justify-content: center;\r\n    align-items: center;\r\n    padding: 30px;\r\n\r\n}\r\n.signupin .leftpanal .login-display, .signupdisplay{\r\n    margin: 10px 10px;\r\n    font-weight: bold;\r\n}\r\n.signupin .leftpanal p{\r\n    margin: 0 10px;\r\n    color: #ccc;\r\n}\r\n.signupin .leftpanal {\r\n    background-color: #2874F0;\r\n    color: #fff;\r\n    background-image: url(../img/login_img_bg.png);\r\n    background-position: center 85%;\r\n    background-repeat: no-repeat;\r\n    height: 400px;\r\n    width: 20vw;\r\n    padding: 20px;\r\n}\r\n\r\n.signupin .rightSignuppanal {\r\n    padding: 10px;\r\n    background: #fff;\r\n    height: 400px;\r\n    width: 30vw;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center;\r\n\r\n}\r\n.LSOAQH .QqFHMw {\r\n    height: 45px;\r\n}\r\n\r\n._7Pd1Fp {\r\n    justify-self: flex-start;\r\n    background: #fb641b;\r\n    width: 100%;\r\n    padding: 5px;\r\n    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);\r\n    border: none;\r\n    color: #fff;\r\n}\r\n\r\n.EpHS0A {\r\n    font-size: 11px;\r\n}\r\n\r\n\r\n.I-qZ4MvLRlQb {\r\n    position: relative;\r\n    margin: 0px auto;\r\n    margin-top: 0px;\r\n    margin-bottom: 10px;\r\n    width: 100%;\r\n\r\n}\r\n\r\n.I-qZ4MvLRlQb input[type=\"text\"] {\r\n    font-size: 17px;\r\n    width: 100%;\r\n    border: none;\r\n    border-bottom: 2px solid #ccc;\r\n    padding: 5px 0;\r\n    background-color: transparent;\r\n    outline: none;\r\n}\r\n\r\n.I-qZ4MvLRlQb .label {\r\n    position: absolute;\r\n    top: 12px;\r\n    left: 0;\r\n    color: #ccc;\r\n    transition: all 0.3s ease;\r\n    pointer-events: none;\r\n}\r\n\r\n.I-qZ4MvLRlQb input[type=\"text\"]:focus~.label,\r\n.I-qZ4MvLRlQb input[type=\"text\"]:valid~.label {\r\n    top: -15px;\r\n    font-size: 12px;\r\n    font-weight: 500;\r\n    color: #423e3e;\r\n}\r\n\r\n.I-qZ4MvLRlQb .underline {\r\n   position: absolute;\r\n    bottom: 0;\r\n    left: 0;\r\n    height: 2px;\r\n    width: 100%; \r\n    background-color: #333;\r\n    transform: scaleX(0);\r\n    transition: all 0.3s ease;\r\n}\r\n\r\n.I-qZ4MvLRlQb input[type=\"text\"]:focus~.underline,\r\n.I-qZ4MvLRlQb input[type=\"text\"]:valid~.underline {\r\n    transform: scaleX(1);\r\n    background-color: #2874F0;\r\n}\r\n\r\n@media screen and (max-width: 1200px) {\r\n    .signupin .leftpanal {\r\n        width: 30vw;\r\n    }\r\n    .signupin .rightSignuppanal {\r\n        width: 40vw;\r\n    }\r\n}\r\n\r\n@media screen and (max-width: 1000px) {\r\n    .signupin .leftpanal {\r\n        width: 35vw;\r\n        padding: 15px;\r\n    }\r\n    .signupin .rightSignuppanal {\r\n        width: 45vw;\r\n    }\r\n}\r\n@media screen and (max-width: 800px) {\r\n    .signupin .leftpanal {\r\n        width: 43vw;\r\n        padding: 5px;\r\n    }\r\n    .signupin .rightSignuppanal {\r\n        width: 56vw;\r\n    }\r\n}\r\n@media screen and (max-width: 800px) {\r\n    .signupin .rightSignuppanal {\r\n      width: 60vw;\r\n    }\r\n}\r\n@media screen and (max-width: 500px) {\r\n    .signupin .rightSignuppanal {\r\n        width: 73vw;\r\n    }\r\n    .rightSignuppanal form{\r\n        width: 250px;\r\n    }\r\n}\r\n"
  },
  {
    "path": "css/notifications.css",
    "content": "* {\n    box-sizing: border-box;\n    margin: 0;\n    padding: 0;\n}\n\nbody{\n    display: flex;\n    flex-direction: column;\n    width: 100%;\n    height: 100%;\n    background-color: #dbe5f3;\n}\n\nmain{\n    height: 1000px;\n    width: 100%;\n    background-color: #dbe5f3;\n}\n\n.main-content{\n    height: 100%;\n    width: 100%;\n    padding-top: 25px;\n    display: flex;\n    justify-content: center;\n}\n\n.options{\n    width: 20%;\n    height: 950px;\n    display: flex;\n    flex-direction: column;\n    margin-right: 15px;\n}\n\n.notifications{\n    width: 60%;\n    height: 600px;\n    display: flex;\n    flex-direction: column;\n    flex-wrap: wrap;\n    background-color: white;\n    margin-left: 15px;\n}\n\n.options-hello{\n    background-color: white;\n    width: 100%;\n    height: 75px;\n    margin-bottom: 15px;\n    display: flex;\n    align-items: center;\n    padding-left: 20px;\n}\n\n\n.options-hello h4{\n    font-weight: 600;\n    flex: 1;\n    padding-left: 20px;\n}\n\n.options-myorders{\n    background-color: white;\n    width: 100%;\n    height: 75px;\n    display: flex;\n    align-items: center;\n    padding-left: 20px;\n    padding-right: 20px;\n    color: rgb(3, 141, 226);\n    margin-bottom: 1px;\n}\n\n.options-myorders a{\n    text-decoration: none;\n    font-size: 1rem;\n    color: grey;\n    font-weight: 600;\n    flex: 1;\n    padding-left: 20px;\n    padding-right: 20px;\n}\n\n.options-myorders a:hover{\n    text-decoration: none;\n    color: rgb(3, 141, 226);\n}\n\n.options-account{\n    height: 205px;\n    width: 100%;\n    background-color: white;\n    margin-bottom: 1px;\n}\n\n.options-payments{\n    height: 205px;\n    width: 100%;\n    background-color: white;\n    margin-bottom: 1px;\n}\n\n.options-mystuff{\n    height: 250px;\n    width: 100%;\n    background-color: white;\n    margin-bottom: 1px;\n}\n\n.heading{\n    height: 70px;\n    width: 100%;\n    display: flex;\n    align-items: center;\n    color: rgb(3, 141, 226);\n    padding-left: 20px;\n    padding-right: 20px;\n}\n\n.options-heading{\n    font-size: 1rem;\n    color: grey;\n    font-weight: 600;\n    flex: 1;\n    padding-left: 20px;\n    padding-right: 20px;\n}\n\n.lists{\n    list-style-type: none;\n    display: flex;\n    flex-direction: column;\n}\n\n.lists li{\n    height: 45px;\n    width: 100%;\n    display: flex;\n    align-items: center;\n    padding-left: 54px;\n    font-size: 0.8rem;\n    font-weight: 500;\n}\n\n.lists a{\n    text-decoration: none;\n    color: black;\n}\n\n.lists li:hover{\n    background-color: #f5faff;\n}\n\n.lists li:hover a{\n    text-decoration: none;\n    color:#2874f0;\n}\n\nul p{\n    padding-left: 100px;\n    color: green;\n    font-size: larger;\n    font-weight: 500;\n    padding-top: 12.9px;\n}\n\n.options-logout{\n    background-color: white;\n    width: 100%;\n    height: 50px;\n    margin-bottom: 15px;\n}\n\n.options-logout .heading{\n    height: 50px;\n    width: 100%;\n    display: flex;\n    align-items: center;\n    color: rgb(3, 141, 226);\n    padding-left: 20px;\n    padding-right: 20px;\n}\n\n.options-logout .options-heading:hover{\n    color: #2874f0;\n}\n\n.options-frequently_visited{\n    height: 75px;\n    width: 100%;\n    background-color: white;\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n}\n\n.row-heading{\n    font-size: 0.7rem;\n    font-weight: 600;\n    padding-left: 20px;\n}\n\n.row-contents{\n    font-size: 0.7rem;\n    color: grey;\n    padding-left: 20px;\n    margin-top: 5px;\n}\n\n.row-contents span{\n    cursor: pointer;\n}\n\n.row-contents #one{\n    padding-right: 10px;\n}\n\n.notifications-heading{\n    height: 70px;\n    width: 100%;\n    font-size: 1.3rem;\n    font-weight: 700;\n    display: flex;\n    align-items: center;\n    padding-left: 30px;\n    border-bottom: 1px solid #dbe5f3;\n}\n.n1{\n    width: 100%;\n    height: 110px;\n    display:flex;\n    align-items: center;\n    justify-content: center;\n    border-bottom: 1px solid #dbe5f3;\n}\n\n.n-img{\n    height: 70px;\n    width: 10%;\n}\n\n.n-info{\n    height: 70px;\n    width: 65%;\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    padding-left: 10px;\n}\n\n.n-details{\n    height: 70px;\n    width: 15%;\n}\n\n.n-details .details-content{\n    height: 100%;\n    width: 100%;\n    display: none;\n}\n\n.n-img img{\n    height: 70px;\n    width: 70px;\n}\n\n.info-details{\n    width: 100%;\n    height: auto;\n    font-size: 0.98rem;\n    font-weight: 500;\n}\n\n.info-date{\n    width: 100%;\n    height: auto;\n    font-size: 0.7rem;\n    font-weight: 600;\n    color: grey;\n}\n\n.n1:hover .details-content{\n    display: flex;\n    color: #2874f0;\n    align-items: center;\n    font-size: 0.85rem;\n    font-weight: 600;\n    padding-left: 10px;\n    cursor: pointer;\n}\n\n.n1:hover .details-content i{\n    size: 0.85rem;\n    font-weight: 600;\n    padding-left: 5px;\n}\n\n.n1:hover {\n    background-color: #f5faff ;\n}\n"
  },
  {
    "path": "css/orders.css",
    "content": "\n\nbody {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n    background-color: #333;\n    color: #333;\n}\n\nheader, footer {\n    background-color: #293649;\n    color: #333 ;\n}\n\n.container {\n    max-width: 1140px;\n    margin: 0 auto;\n    padding: 20px;\n    background-color: #fff;\n    border-radius: 8px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\n.container {\n    max-width: 800px;\n    margin: 20px auto;\n    padding: 20px;\n    background-color: #ffffff;\n    border-radius: 8px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\n.orders {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding: 20px 0;\n}\n\n.text {\n    max-width: 60%;\n}\n\n.bg-img img {\n    max-width: 100%;\n    height: auto;\n    border-radius: 8px;\n}\n\nh1, h2, h3 {\n    color: black;\n    text-align: center;\n}\n.help-support {\n    padding: 20px;\n    background-color: #f9f9f9;\n    border-radius: 10px;\n    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);\n    margin-bottom: 20px;\n}\n\n.help-support h2 {\n    color: #333;\n    font-size: 24px;\n    margin-bottom: 10px;\n}\n\n.help-support p {\n    color: #666;\n    font-size: 16px;\n    line-height: 1.5;\n    margin-bottom: 10px;\n}\n\n.help-support a {\n    color: #007bff;\n    text-decoration: none;\n}\n\n.help-support a:hover {\n    text-decoration: underline;\n}\n\n.image-container {\n    margin-top: 20px;\n    text-align: center;\n}\n\n.image-container img {\n    max-width: 100%;\n    height: auto;\n    border-radius: 5px;\n    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);\n}"
  },
  {
    "path": "css/rating.css",
    "content": "/* rating.css */\n\n/* Style for the rating container */\n.rating-container {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    margin: 10px 0;\n}\n\n/* Style for each star in the rating */\n.rating-star {\n    font-size: 24px;\n    color: #ffd700; /* Gold color for stars */\n    margin-right: 5px;\n    cursor: pointer;\n    transition: color 0.2s;\n}\n\n/* Style for filled star */\n.rating-star.filled {\n    color: #ffd700;\n}\n\n/* Style for unfilled star */\n.rating-star.unfilled {\n    color: #e0e0e0; /* Light grey for unfilled stars */\n}\n\n/* Hover effect for stars */\n.rating-star:hover,\n.rating-star:hover ~ .rating-star {\n    color: #ffcc00;\n}\n\n/* Disabled state for rating */\n.rating-container.disabled .rating-star {\n    cursor: not-allowed;\n    opacity: 0.6;\n}\n"
  },
  {
    "path": "css/responsive.css",
    "content": "/* responsive.css */\n@media (max-width: 768px) {\n    .container {\n        padding: 10px;\n    }\n    \n    .nav-menu {\n        flex-direction: column;\n    }\n}\n"
  },
  {
    "path": "css/styles.css",
    "content": "\r\n* {\r\n    margin: 0;\r\n    padding: 0;\r\n    box-sizing: border-box;\r\n    /* border: 1px solid red; */\r\n}\r\n\r\nbody {\r\n  user-select: none;         /* Disable text selection in all browsers */\r\n  -webkit-user-select: none; /* Safari */\r\n  -moz-user-select: none;    /* Firefox */\r\n  -ms-user-select: none;     /* Internet Explorer/Edge */\r\n}\r\n\r\n"
  },
  {
    "path": "css/typography.css",
    "content": "body {\n    font-family: 'Helvetica Neue', sans-serif;\n    line-height: 1.6;\n}\n\nh1, h2, h3, h4, h5, h6 {\n    margin: 0 0 10px;\n    font-weight: 700;\n}\n"
  },
  {
    "path": "css/wishlist.css",
    "content": "/* wishlist.css */\n\n/* Style for the wishlist container */\n.wishlist-container {\n    padding: 20px;\n    background-color: #f9f9f9;\n    border-radius: 5px;\n    margin: 20px 0;\n}\n\n/* Style for wishlist items */\n.wishlist-item {\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 10px;\n    border-bottom: 1px solid #ddd;\n}\n\n/* Last wishlist item without border */\n.wishlist-item:last-child {\n    border-bottom: none;\n}\n\n/* Style for the product image in the wishlist */\n.wishlist-item img {\n    width: 80px;\n    height: 80px;\n    border-radius: 5px;\n}\n\n/* Style for the product details in the wishlist */\n.wishlist-item-details {\n    flex-grow: 1;\n    padding: 0 15px;\n}\n\n/* Style for the product title in the wishlist */\n.wishlist-item-title {\n    font-size: 16px;\n    font-weight: bold;\n    margin-bottom: 5px;\n}\n\n/* Style for the product price in the wishlist */\n.wishlist-item-price {\n    font-size: 14px;\n    color: #666;\n}\n\n/* Style for the remove button in the wishlist */\n.wishlist-item-remove {\n    background-color: #ff4444;\n    color: white;\n    border: none;\n    padding: 5px 10px;\n    border-radius: 5px;\n    cursor: pointer;\n    transition: background-color 0.3s;\n}\n\n/* Hover effect for remove button */\n.wishlist-item-remove:hover {\n    background-color: #ff0000;\n}\n"
  },
  {
    "path": "customersupport/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Customer Service - Flipkart Clone</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n</head>\n<body>\n    <header id=\"header-addkart\" class=\"text-center text-secondary fs-4\">\n        This is Header\n    </header>\n\n    <section class=\"hero\">\n        <div class=\"container\">\n            <h2>Customer Service - 24x7 Support</h2>\n            <p>We are here to help you 24 hours a day, 7 days a week.</p>\n        </div>\n    </section>\n\n    <section class=\"services\">\n        <div class=\"container\">\n            <h2>How can we help you?</h2>\n            <div class=\"service-grid\">\n                <div class=\"service\">\n                    <h3>Order Status</h3>\n                    <p>Check the status of your order.</p>\n                    <a href=\"../helpcenter.html\"><button>Track Order</button></a>\n                </div>\n                <div class=\"service\">\n                    <h3>Returns</h3>\n                    <p>Return a product easily.</p>\n                    <a href=\"../helpcenter.html\"><button>Initiate Return</button></a>\n                </div>\n                <div class=\"service\">\n                    <h3>Payment Issues</h3>\n                    <p>Resolve your payment-related queries.</p>\n                    <a href=\"../helpcenter.html\"><button>Get Help</button></a>\n                </div>\n                <div class=\"service\">\n                    <h3>Account</h3>\n                    <p>Manage your account settings.</p>\n                    <a href=\"../dashboard/userdashboard.html\"><button>Account Settings</button></a>\n                </div>\n            </div>\n        </div>\n    </section>\n    \n    <section class=\"text-gray-600 body-font\">\n        <div class=\"container px-5 py-24 mx-auto flex flex-wrap\">\n          <h2 class=\"sm:text-3xl text-2xl text-gray-900 font-medium title-font mb-2 md:w-2/5\">Flipkart HelpCenter</h2>\n          <div class=\"md:w-3/5 md:pl-6\">\n            <p class=\"leading-relaxed text-base\">At Flipkart, we are dedicated to providing the best customer support. Whether you need help with your orders, returns, payments, or have any other inquiries, our Help Center is here for you. Explore our comprehensive FAQs, get assistance from our customer service team, and find solutions quickly and easily. We're committed to making your shopping experience seamless and enjoyable.</p>\n          </div>\n        </div>\n    </section>\n\n    <section class=\"text-gray-600 body-font\">\n        <div class=\"container px-5 py-2 mx-auto\">\n          <div class=\"flex flex-wrap -m-4 text-center\">\n            <div class=\"p-4 md:w-1/4 sm:w-1/2 w-full\">\n              <div class=\"border-2 border-gray-200 px-4 py-6 rounded-lg\">\n                <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"text-indigo-500 w-12 h-12 mb-3 inline-block\" viewBox=\"0 0 24 24\">\n                  <path d=\"M8 17l4 4 4-4m-4-5v9\"></path>\n                  <path d=\"M20.88 18.09A5 5 0 0018 9h-1.26A8 8 0 103 16.29\"></path>\n                </svg>\n                <h2 class=\"title-font font-medium text-3xl text-gray-900\">2.7K</h2>\n                <p class=\"leading-relaxed\">Downloads</p>\n              </div>\n            </div>\n            <div class=\"p-4 md:w-1/4 sm:w-1/2 w-full\">\n              <div class=\"border-2 border-gray-200 px-4 py-6 rounded-lg\">\n                <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"text-indigo-500 w-12 h-12 mb-3 inline-block\" viewBox=\"0 0 24 24\">\n                  <path d=\"M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2\"></path>\n                  <circle cx=\"9\" cy=\"7\" r=\"4\"></circle>\n                  <path d=\"M23 21v-2a4 4 0 00-3-3.87m-4-12a4 4 0 010 7.75\"></path>\n                </svg>\n                <h2 class=\"title-font font-medium text-3xl text-gray-900\">1.3K</h2>\n                <p class=\"leading-relaxed\">Users</p>\n              </div>\n            </div>\n            <div class=\"p-4 md:w-1/4 sm:w-1/2 w-full\">\n              <div class=\"border-2 border-gray-200 px-4 py-6 rounded-lg\">\n                <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"text-indigo-500 w-12 h-12 mb-3 inline-block\" viewBox=\"0 0 24 24\">\n                  <path d=\"M3 18v-6a9 9 0 0118 0v6\"></path>\n                  <path d=\"M21 19a2 2 0 01-2 2h-1a2 2 0 01-2-2v-3a2 2 0 012-2h3zM3 19a2 2 0 002 2h1a2 2 0 002-2v-3a2 2 0 00-2-2H3z\"></path>\n                </svg>\n                <h2 class=\"title-font font-medium text-3xl text-gray-900\">74</h2>\n                <p class=\"leading-relaxed\">Files</p>\n              </div>\n            </div>\n            <div class=\"p-4 md:w-1/4 sm:w-1/2 w-full\">\n              <div class=\"border-2 border-gray-200 px-4 py-6 rounded-lg\">\n                <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"text-indigo-500 w-12 h-12 mb-3 inline-block\" viewBox=\"0 0 24 24\">\n                  <path d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"></path>\n                </svg>\n                <h2 class=\"title-font font-medium text-3xl text-gray-900\">46</h2>\n                <p class=\"leading-relaxed\">Places</p>\n              </div>\n            </div>\n          </div>\n        </div>\n      </section>\n      \n    <footer id=\"footer-addkart\" style=\"background-color: #203a61 !important\"></footer>\n\n    <script src=\"script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "customersupport/script.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\n    [\n      { id: \"footer-addkart\", url: \"../footer/footer.html\" },\n      { id: \"header-addkart\", url: \"../header/header.html\" },\n    ].forEach(({ id, url }) =>\n      fetch(url)\n        .then((res) => res.text())\n        .then((data) => (document.getElementById(id).innerHTML = data))\n        .catch((err) => console.error(`Error loading ${url}:`, err))\n    );\n  });"
  },
  {
    "path": "customersupport/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n    box-sizing: border-box;\n}\n\n.text-center {\n    text-align: center;\n}\n\n.text-secondary {\n    color: #6c757d;\n}\n\n.fs-4 {\n    font-size: 1.5rem;\n}\n\n.hero {\n    background-color: #f3f4f6;\n    padding: 2rem 0;\n}\n\n.hero .container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 0 1rem;\n}\n\n.hero h2 {\n    font-size: 2rem;\n    color: #333;\n}\n\n.hero p {\n    font-size: 1rem;\n    color: #666;\n}\n\n.services {\n    padding: 2rem 0;\n}\n\n.services .container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 0 1rem;\n}\n\n.services h2 {\n    font-size: 2rem;\n    color: #333;\n    text-align: center;\n    margin-bottom: 2rem;\n}\n\n.service-grid {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 1rem;\n    justify-content: center;\n}\n\n.service {\n    background-color: #fff;\n    padding: 1.5rem;\n    border: 1px solid #ddd;\n    border-radius: 0.5rem;\n    width: calc(25% - 1rem);\n    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.service h3 {\n    font-size: 1.25rem;\n    color: #333;\n    margin-bottom: 0.5rem;\n}\n\n.service p {\n    font-size: 1rem;\n    color: #666;\n    margin-bottom: 1rem;\n}\n\n.service button {\n    background-color: #007bff;\n    color: #fff;\n    border: none;\n    padding: 0.5rem 1rem;\n    border-radius: 0.25rem;\n    cursor: pointer;\n}\n\n.service button:hover {\n    background-color: #0056b3;\n}\n\n.text-gray-600 {\n    color: #4a5568;\n}\n\n.body-font {\n    font-family: \"Nunito\", sans-serif;\n}\n\n.container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 0 1rem;\n}\n\n.px-5 {\n    padding-left: 1.25rem;\n    padding-right: 1.25rem;\n}\n\n.py-24 {\n    padding-top: 6rem;\n    padding-bottom: 6rem;\n}\n\n.mx-auto {\n    margin-left: auto;\n    margin-right: auto;\n}\n\n.flex {\n    display: flex;\n}\n\n.flex-wrap {\n    flex-wrap: wrap;\n}\n\n.mb-20 {\n    margin-bottom: 5rem;\n}\n\n.title-font {\n    font-family: \"Nunito\", sans-serif;\n    font-weight: 700;\n}\n\n.leading-relaxed {\n    line-height: 1.75;\n}\n\n.text-base {\n    font-size: 1rem;\n}\n\n.md\\\\:w-1\\\\/4 {\n    width: 25%;\n}\n\n.md\\\\:w-2\\\\/5 {\n    width: 40%;\n}\n\n.md\\\\:w-3\\\\/5 {\n    width: 60%;\n}\n\n.md\\\\:pl-6 {\n    padding-left: 1.5rem;\n}\n\n.md\\\\:pl-6 {\n    padding-left: 1.5rem;\n}\n\n.border-2 {\n    border-width: 2px;\n}\n\n.border-gray-200 {\n    border-color: #edf2f7;\n}\n\n.px-4 {\n    padding-left: 1rem;\n    padding-right: 1rem;\n}\n\n.py-6 {\n    padding-top: 1.5rem;\n    padding-bottom: 1.5rem;\n}\n\n.rounded-lg {\n    border-radius: 0.5rem;\n}\n\n.mb-4 {\n    margin-bottom: 1rem;\n}\n\n.sm\\\\:text-3xl {\n    font-size: 1.875rem;\n}\n\n.text-2xl {\n    font-size: 1.5rem;\n}\n\n.font-medium {\n    font-weight: 500;\n}\n\n.text-gray-900 {\n    color: #1a202c;\n}\n\n.w-12 {\n    width: 3rem;\n}\n\n.h-12 {\n    height: 3rem;\n}\n\n.mb-3 {\n    margin-bottom: 0.75rem;\n}\n\n.inline-block {\n    display: inline-block;\n}\n\n.m-4 {\n    margin: 1rem;\n}\n"
  },
  {
    "path": "dashboard/sellerdashboard.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <title>Seller Dashboard</title>\n    <link\n      href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css\"\n      rel=\"stylesheet\"\n      integrity=\"sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH\"\n      crossorigin=\"anonymous\"\n    />\n    <style>\n      body {\n        font-family: Arial, sans-serif;\n      }\n\n      .sidebar {\n        height: 100vh;\n        position: fixed;\n        top: 0;\n        left: 0;\n        width: 240px;\n        background-color: #f8f9fa;\n        padding-top: 20px;\n      }\n\n      .main-content {\n        margin-left: 240px;\n        padding: 20px;\n      }\n\n      .nav-link {\n        font-size: 18px;\n      }\n\n      .section {\n        display: none;\n      }\n\n      .section.active {\n        display: block;\n      }\n    </style>\n  </head>\n  <body>\n    <div class=\"sidebar\">\n      <nav class=\"nav flex-column\">\n        <a class=\"nav-link active\" href=\"#dashboard\">Dashboard</a>\n        <a class=\"nav-link\" href=\"#product-management\">Product Management</a>\n        <a class=\"nav-link\" href=\"#order-management\">Order Management</a>\n        <a class=\"nav-link\" href=\"#profile-settings\">Profile Settings</a>\n        <a class=\"nav-link\" href=\"#sales-reports\">Sales Reports</a>\n      </nav>\n    </div>\n\n    <div class=\"main-content\">\n      <!-- Dashboard Overview -->\n      <div id=\"dashboard\" class=\"section active\">\n        <h2>Dashboard</h2>\n        <div class=\"row\">\n          <div class=\"col-md-3\">\n            <div class=\"card\">\n              <div class=\"card-body\">\n                <h5 class=\"card-title\">Total Sales</h5>\n                <p class=\"card-text\">$10,000</p>\n              </div>\n            </div>\n          </div>\n          <div class=\"col-md-3\">\n            <div class=\"card\">\n              <div class=\"card-body\">\n                <h5 class=\"card-title\">Total Orders</h5>\n                <p class=\"card-text\">200</p>\n              </div>\n            </div>\n          </div>\n          <div class=\"col-md-3\">\n            <div class=\"card\">\n              <div class=\"card-body\">\n                <h5 class=\"card-title\">Total Products</h5>\n                <p class=\"card-text\">50</p>\n              </div>\n            </div>\n          </div>\n          <div class=\"col-md-3\">\n            <div class=\"card\">\n              <div class=\"card-body\">\n                <h5 class=\"card-title\">Pending Orders</h5>\n                <p class=\"card-text\">5</p>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n\n      <!-- Product Management -->\n      <div id=\"product-management\" class=\"section\">\n        <h2>Product Management</h2>\n        <button class=\"btn btn-primary\">Add New Product</button>\n        <table class=\"table mt-3\">\n          <thead>\n            <tr>\n              <th scope=\"col\">#</th>\n              <th scope=\"col\">Product Name</th>\n              <th scope=\"col\">Price</th>\n              <th scope=\"col\">Stock</th>\n              <th scope=\"col\">Actions</th>\n            </tr>\n          </thead>\n          <tbody>\n            <tr>\n              <th scope=\"row\">1</th>\n              <td>Product 1</td>\n              <td>$10</td>\n              <td>100</td>\n              <td>\n                <button class=\"btn btn-sm btn-warning\">Edit</button>\n                <button class=\"btn btn-sm btn-danger\">Delete</button>\n              </td>\n            </tr>\n            <tr>\n              <th scope=\"row\">2</th>\n              <td>Product 2</td>\n              <td>$20</td>\n              <td>50</td>\n              <td>\n                <button class=\"btn btn-sm btn-warning\">Edit</button>\n                <button class=\"btn btn-sm btn-danger\">Delete</button>\n              </td>\n            </tr>\n          </tbody>\n        </table>\n      </div>\n\n      <!-- Order Management -->\n      <div id=\"order-management\" class=\"section\">\n        <h2>Order Management</h2>\n        <table class=\"table\">\n          <thead>\n            <tr>\n              <th scope=\"col\">#</th>\n              <th scope=\"col\">Order ID</th>\n              <th scope=\"col\">Customer</th>\n              <th scope=\"col\">Total</th>\n              <th scope=\"col\">Status</th>\n              <th scope=\"col\">Actions</th>\n            </tr>\n          </thead>\n          <tbody>\n            <tr>\n              <th scope=\"row\">1</th>\n              <td>ORD123</td>\n              <td>John Doe</td>\n              <td>$100</td>\n              <td>Pending</td>\n              <td>\n                <button class=\"btn btn-sm btn-success\">Mark as Shipped</button>\n              </td>\n            </tr>\n            <tr>\n              <th scope=\"row\">2</th>\n              <td>ORD124</td>\n              <td>Jane Smith</td>\n              <td>$50</td>\n              <td>Shipped</td>\n              <td>\n                <button class=\"btn btn-sm btn-primary\">View Details</button>\n              </td>\n            </tr>\n          </tbody>\n        </table>\n      </div>\n\n      <!-- Profile Settings -->\n      <div id=\"profile-settings\" class=\"section\">\n        <h2>Profile Settings</h2>\n        <form>\n          <div class=\"mb-3\">\n            <label for=\"profileName\" class=\"form-label\">Name</label>\n            <input type=\"text\" class=\"form-control\" id=\"profileName\" />\n          </div>\n          <div class=\"mb-3\">\n            <label for=\"profileEmail\" class=\"form-label\">Email</label>\n            <input type=\"email\" class=\"form-control\" id=\"profileEmail\" />\n          </div>\n          <div class=\"mb-3\">\n            <label for=\"profilePassword\" class=\"form-label\">Password</label>\n            <input type=\"password\" class=\"form-control\" id=\"profilePassword\" />\n          </div>\n          <button type=\"submit\" class=\"btn btn-primary\">Save Changes</button>\n        </form>\n      </div>\n\n      <!-- Sales Reports -->\n      <div id=\"sales-reports\" class=\"section\">\n        <h2>Sales Reports</h2>\n        <p>Here you can view and download sales reports.</p>\n        <button class=\"btn btn-secondary\">Download Report</button>\n      </div>\n    </div>\n\n    <script>\n      document.querySelectorAll('.nav-link').forEach((link) => {\n        link.addEventListener('click', function () {\n          document.querySelectorAll('.section').forEach((section) => {\n            section.classList.remove('active');\n          });\n          document.querySelector(this.getAttribute('href')).classList.add('active');\n\n          document.querySelectorAll('.nav-link').forEach((link) => {\n            link.classList.remove('active');\n          });\n          this.classList.add('active');\n        });\n      });\n    </script>\n    <script\n      src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js\"\n      integrity=\"sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz\"\n      crossorigin=\"anonymous\"\n    ></script>\n  </body>\n</html>\n"
  },
  {
    "path": "dashboard/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n    display: flex;\n    height: 100vh;\n    background-color: #f4f4f4;\n}\n\n.container {\n    display: flex;\n    width: 100%;\n}\n\n.sidebar {\n    width: 250px;\n    background-color: #2874f0;\n    color: white;\n    padding: 15px;\n    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);\n}\n\n.sidebar h2 {\n    margin-top: 0;\n}\n\n.sidebar ul {\n    list-style: none;\n    padding: 0;\n}\n\n.sidebar ul li {\n    margin: 15px 0;\n}\n\n.sidebar ul li a {\n    color: white;\n    text-decoration: none;\n    display: block;\n}\n\n.sidebar ul li a:hover {\n    text-decoration: underline;\n}\n\n.main-content {\n    flex: 1;\n    padding: 20px;\n    background-color: white;\n}\n\nheader {\n    border-bottom: 1px solid #ddd;\n    padding-bottom: 10px;\n    margin-bottom: 20px;\n}\n\n.orders {\n    display: flex;\n    flex-wrap: wrap;\n}\n\n.order {\n    background-color: #f9f9f9;\n    border: 1px solid #ddd;\n    padding: 10px;\n    margin: 10px;\n    flex: 1 0 30%;\n    box-sizing: border-box;\n}\n"
  },
  {
    "path": "dashboard/userdashboard.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>User Dashboard</title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"../css/account.css\" />\n    <link rel=\"stylesheet\" href=\"styles.css\">\n\n</head>\n\n<body>\n    <header id=\"header-account\" class=\"text-center text-secondary fs-4\">\n        This is Header\n    </header>\n    <div class=\"container\">\n        <div class=\"sidebar\">\n            <h2>Dashboard</h2>\n            <ul>\n                <li><a href=\"#\">Home</a></li>\n                <li><a href=\"#\">Profile</a></li>\n                <li><a href=\"#\">Orders</a></li>\n                <li><a href=\"#\">Wishlist</a></li>\n                <li><a href=\"#\">Settings</a></li>\n                <li><a href=\"#\">Logout</a></li>\n            </ul>\n        </div>\n        <div class=\"main-content\">\n            <header>\n                <h1>Welcome, User</h1>\n            </header>\n            <div class=\"content\">\n                <h2>Recent Orders</h2>\n                <div class=\"orders\">\n                    <div class=\"order\">Order 1</div>\n                    <div class=\"order\">Order 2</div>\n                    <div class=\"order\">Order 3</div>\n                </div>\n            </div>\n        </div>\n    </div>\n    <script src=\"script.js\"></script>\n    <footer id=\"footer-account\" style=\"background-color: #293649 !important\"></footer>\n    <script src=\"../js/bootstrap.bundle.min.js\"></script>\n<script src=\"../js/account.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "feedback/feedback.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Feedback Form</title>\n    <style>\n        body {\n            font-family: 'Arial', sans-serif;\n            background-color: #f4f4f4;\n            margin: 0;\n            padding: 0;\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            height: 100vh;\n        }\n        .feedback-container {\n            background: #fff;\n            border-radius: 8px;\n            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n            padding: 20px;\n            max-width: 400px;\n            width: 100%;\n        }\n        h2 {\n            margin-bottom: 20px;\n            font-size: 24px;\n            color: #333;\n            text-align: center;\n        }\n        .form-group {\n            margin-bottom: 15px;\n        }\n        .form-group label {\n            display: block;\n            font-size: 14px;\n            color: #555;\n            margin-bottom: 5px;\n        }\n        .form-group input, .form-group textarea {\n            width: 100%;\n            padding: 10px;\n            font-size: 14px;\n            border: 1px solid #ddd;\n            border-radius: 4px;\n        }\n        .form-group textarea {\n            resize: vertical;\n        }\n        .rating {\n            display: flex;\n            justify-content: space-between;\n            max-width: 180px;\n            margin: 10px auto;\n        }\n        .rating input {\n            display: none;\n        }\n        .rating label {\n            font-size: 30px;\n            color: #ccc;\n            cursor: pointer;\n        }\n        .rating label:hover ~ label,\n        .rating label:hover,\n        .rating input:checked ~ label {\n            color: #f39c12;\n        }\n        .btn-submit {\n            display: block;\n            width: 100%;\n            padding: 10px;\n            background-color: #007BFF;\n            color: #fff;\n            border: none;\n            border-radius: 4px;\n            font-size: 16px;\n            cursor: pointer;\n            text-align: center;\n        }\n        .btn-submit:hover {\n            background-color: #0056b3;\n        }\n    </style>\n</head>\n<body>\n    <div class=\"feedback-container\">\n        <h2>Feedback Form</h2>\n        <form id=\"feedbackForm\">\n            <div class=\"form-group\">\n                <label for=\"name\">Name</label>\n                <input type=\"text\" id=\"name\" name=\"name\" required>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"email\">Email</label>\n                <input type=\"email\" id=\"email\" name=\"email\" required>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"comments\">Comments</label>\n                <textarea id=\"comments\" name=\"comments\" rows=\"4\" required></textarea>\n            </div>\n            <div class=\"form-group\">\n                <label for=\"rating\">Rating</label>\n                <div class=\"rating\">\n                    <input type=\"radio\" name=\"star\" id=\"star1\" value=\"5\"><label for=\"star1\">&#9733;</label>\n                    <input type=\"radio\" name=\"star\" id=\"star2\" value=\"4\"><label for=\"star2\">&#9733;</label>\n                    <input type=\"radio\" name=\"star\" id=\"star3\" value=\"3\"><label for=\"star3\">&#9733;</label>\n                    <input type=\"radio\" name=\"star\" id=\"star4\" value=\"2\"><label for=\"star4\">&#9733;</label>\n                    <input type=\"radio\" name=\"star\" id=\"star5\" value=\"1\"><label for=\"star5\">&#9733;</label>\n                </div>\n            </div>\n            <button type=\"submit\" class=\"btn-submit\">Submit</button>\n        </form>\n    </div>\n\n    <script>\n        document.getElementById('feedbackForm').addEventListener('submit', function(event) {\n            event.preventDefault();\n            alert('Thank you for your feedback!');\n        });\n    </script>\n</body>\n</html>\n"
  },
  {
    "path": "footer/footer.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Footer - Flipkart</title>\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"../css/bootstrap.min.css\">\n    <link rel=\"stylesheet\" href=\"../css/footer.css\">\n    <style>\n        footer{\n            background-color: rgb(6, 23, 46);\n        }\n    </style>\n</head>\n\n<body>\n    <footer>\n        <div class=\"container-fluid footerTop\">\n            <div class=\"row footer1\">\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>ABOUT</h5>\n                        <ul>\n                            <li><a href=\"../pages/contact_us/contact_us.html\">Contact Us</a></li>\n                            <li><a href=\"\">About Us</a></li>\n                            <li><a href=\"\">Careers</a></li>\n                            <li><a href=\"\">Flipkart Stories</a></li>\n                            <li><a href=\"\">Press</a></li>\n                            <li><a href=\"../pages/Corporate_Information/index.html\">Corporate Information</a></li>\n                            <li><i><a href=\"\">Explore Plus</a></i></li>\n                            \n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>GROUP COMPANIES</h5>\n                        <ul>\n                            <li><a href=\"https://www.myntra.com/\">Myntra</a></li>\n                            <li><a href=\"https://www.flipkartwholesale.com/\">Flipkart Wholesale</a></li>\n                            <li><a href=\"https://www.cleartrip.com/\">Cleartrip</a></li>\n                            <li><a href=\"https://www.shopsy.in/\">Shopsy</a></li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>HELP</h5>\n                        <ul>\n                            <li><a href=\"../pages/Payments/index.html\">Payments</a></li>\n                            <li><a href=\"../pages/Shipping/index.html\">Shipping</a></li>\n                            <li><a href=\"../pages/Cancellation_and_Returns/index.html\">Cancellation & Returns</a></li>\n                            <li><a href=\"/FAQ.html\">FAQ</a></li>\n                            <li><a href=\"\">Report Infringement</a></li>\n                          \n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>CONSUMER POLICY</h5>\n                        <ul>\n\n                            <li><a href=\"../pages/cancellation & return/index.html\">Cancellation & Returns</a></li>\n                            <li><a href=\"\">Terms Of Use</a></li>\n                            <li><a href=\"../pages/Security_Page/index.html\">Security</a></li>\n                            <li><a href=\"../pages/privacypolicy/index.html\">Privacy</a></li>\n\n                            <li><a href=\"../pages/Sitemap/index.html\">Sitemap</a></li>\n                            <li><a href=\"../pages/Grievance Redressal/index.html\">Grievance Redressal</a></li>\n                            <li><a href=\"../pages/EPR/index.html\">EPR Compilance</a></li>\n<!--                             <li><a href=\"../pages/cancellation & return/index.html\">Cancellation & Returns</a></li> -->\n\n\n\n\n\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6 mailSocial\">\n                    <div class=\"footerI\">\n                        <div class=\"mail\">\n                            <h5>Mail Us:</h5>\n                            <p>\n                                Flipkart Internet Private Limited,\n                                Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                                Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India\n                            </p>\n                        </div>\n                        <div class=\"social\">\n                            <h5>Social</h5>\n                            <ul>\n                                <li><a href=\"https://www.facebook.com/flipkart/\" aria-label=\"Facebook\">\n                                    <img src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjkzMzEgMjFDMTcuOTAzNyAyMSAyMS45MzMxIDE2Ljk3MDYgMjEuOTMzMSAxMkMyMS45MzMxIDcuMDI5NDQgMTcuOTAzNyAzIDEyLjkzMzEgM0M3Ljk2MjU0IDMgMy45MzMxMSA3LjAyOTQ0IDMuOTMzMTEgMTJDMy45MzMxMSAxNi45NzA2IDcuOTYyNTQgMjEgMTIuOTMzMSAyMVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE2LjY4MzEgOC4yNUgxNS4xODMxQzE0LjU4NjQgOC4yNSAxNC4wMTQxIDguNDg3MDUgMTMuNTkyMSA4LjkwOTAxQzEzLjE3MDIgOS4zMzA5NyAxMi45MzMxIDkuOTAzMjYgMTIuOTMzMSAxMC41VjIxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05LjkzMzExIDEzLjVIMTUuOTMzMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K\" alt=\"Flipkart Facebook Page\"></a></li>\n                                <li><a href=\"https://twitter.com/Flipkart\" aria-label=\"Twitter\">\n                                    <img src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE4M18yMCkiPgo8cGF0aCBkPSJNMTMuNTQzNiAxMC42MTc5TDIwLjA5NzEgM0gxOC41NDQxTDEyLjg1MzcgOS42MTQ0OEw4LjMwODg3IDNIMy4wNjY4OUw5LjkzOTY0IDEzLjAwMjNMMy4wNjY4OSAyMC45OTA4SDQuNjE5OTRMMTAuNjI5MSAxNC4wMDU2TDE1LjQyODggMjAuOTkwOEgyMC42NzA4TDEzLjU0MzIgMTAuNjE3OUgxMy41NDM2Wk0xMS40MTY1IDEzLjA5MDRMMTAuNzIwMiAxMi4wOTQ0TDUuMTc5NTMgNC4xNjkxMUg3LjU2NDkxTDEyLjAzNjMgMTAuNTY1MUwxMi43MzI2IDExLjU2MTFMMTguNTQ0OCAxOS44NzQ4SDE2LjE1OTVMMTEuNDE2NSAxMy4wOTA4VjEzLjA5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE4M18yMCI+CjxyZWN0IHg9IjMuMDY2ODkiIHk9IjMiIHdpZHRoPSIxNy42MDM5IiBoZWlnaHQ9IjE4IiByeD0iMC4yIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=\" alt=\"Flipkart Twitter Page\"></a></li>\n                                <li><a href=\"https://www.youtube.com/flipkart\" aria-label=\"YouTube\">\n                                    <img src=\"https://static-assets-web.flixcart.com/fk-p-linchpin-web/fk-cp-zion/img/YoutubeLogo_958b78.svg\" alt=\"Flipkart YouTube Channel\"></a></li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>Registered Office Address:</h5>\n                        <p>Flipkart Internet Private Limited,\n                            Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                            Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>\n                        <p>CIN : U51109KA2012PTC066107</p>\n                        <p>Telephone: <a class=\"text-primary\" href=\"tel:044-45614700\">044-45614700</a>\n                            / <a class=\"text-primary\" href=\"tel:044-67415800\">044-67415800</a>\n                        </p>\n                    </div>\n                </div>\n            </div>\n        </div>\n\n        <div class=\"container-fluid footerEnd\">\n            <div class=\"row align-items-center\">\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE2IDE1Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0yLTJoMjB2MjBILTJ6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTUuOTMgNS42MTRoLTIuOTQ4VjQuMTRjMC0uODE4LS42NTUtMS40NzMtMS40NzMtMS40NzNIOC41NmMtLjgxNyAwLTEuNDczLjY1NS0xLjQ3MyAxLjQ3M3YxLjQ3NEg0LjE0Yy0uODE4IDAtMS40NjYuNjU2LTEuNDY2IDEuNDc0bC0uMDA3IDguMTA1YzAgLjgxOC42NTUgMS40NzQgMS40NzMgMS40NzRoMTEuNzljLjgxOCAwIDEuNDc0LS42NTYgMS40NzQtMS40NzRWNy4wODhjMC0uODE4LS42NTYtMS40NzQtMS40NzQtMS40NzR6bS00LjQyMSAwSDguNTZWNC4xNGgyLjk0OHYxLjQ3NHoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yIC0yKSIvPgogICAgPC9nPgo8L3N2Zz4K\"\n                        alt=\"Become a Seller\" width=\"16\" height=\"15\">\n                    <a href=\"../pages/Sell_Online/sell_online.html\"             \n                        aria-label=\"Become a Seller\"><span>Become a Seller</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE1IDE1Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0zLTNoMjB2MjBILTN6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTAuNDkyIDNDNi4zNTMgMyAzIDYuMzYgMyAxMC41YzAgNC4xNCAzLjM1MyA3LjUgNy40OTIgNy41QzE0LjY0IDE4IDE4IDE0LjY0IDE4IDEwLjUgMTggNi4zNiAxNC42NCAzIDEwLjQ5MiAzem0zLjE4IDEyTDEwLjUgMTMuMDg4IDcuMzI3IDE1bC44NC0zLjYwN0w1LjM3IDguOTdsMy42OS0uMzE1TDEwLjUgNS4yNWwxLjQ0IDMuMzk4IDMuNjkuMzE1LTIuNzk4IDIuNDIyLjg0IDMuNjE1eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMgLTMpIi8+CiAgICA8L2c+Cjwvc3ZnPgo=\"\n                        alt=\"Advertise\" width=\"15\" height=\"15\">\n                    <a href=\"https://brands.flipkart.com\" aria-label=\"Advertise\"><span>Advertise</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDE4IDE3Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0xLTFoMjB2MjBILTF6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTYuNjY3IDVIMTQuODVjLjA5Mi0uMjU4LjE1LS41NDIuMTUtLjgzM2EyLjQ5NyAyLjQ5NyAwIDAgMC00LjU4My0xLjM3NUwxMCAzLjM1bC0uNDE3LS41NjdBMi41MSAyLjUxIDAgMCAwIDcuNSAxLjY2N2EyLjQ5NyAyLjQ5NyAwIDAgMC0yLjUgMi41YzAgLjI5MS4wNTguNTc1LjE1LjgzM0gzLjMzM2MtLjkyNSAwLTEuNjU4Ljc0Mi0xLjY1OCAxLjY2N2wtLjAwOCA5LjE2NkExLjY2IDEuNjYgMCAwIDAgMy4zMzMgMTcuNWgxMy4zMzRhMS42NiAxLjY2IDAgMCAwIDEuNjY2LTEuNjY3VjYuNjY3QTEuNjYgMS42NiAwIDAgMCAxNi42NjcgNXptMCA2LjY2N0gzLjMzM3YtNWg0LjIzNEw1LjgzMyA5LjAyNWwxLjM1Ljk3NSAxLjk4NC0yLjdMMTAgNi4xNjdsLjgzMyAxLjEzMyAxLjk4NCAyLjcgMS4zNS0uOTc1LTEuNzM0LTIuMzU4aDQuMjM0djV6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMSAtMSkiLz4KICAgIDwvZz4KPC9zdmc+Cg==\"\n                        alt=\"Gift Cards\" width=\"18\" height=\"17\">\n                    <a href=\"../the-gift-card-store/index.html\"\n                        aria-label=\"Gift Cards\"><span>Gift Cards</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE1IDE1Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0yLTNoMjB2MjBILTJ6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOS41IDNDNS4zNiAzIDIgNi4zNiAyIDEwLjUgMiAxNC42NCA1LjM2IDE4IDkuNSAxOGM0LjE0IDAgNy41LTMuMzYgNy41LTcuNUMxNyA2LjM2IDEzLjY0IDMgOS41IDN6bS43NSAxMi43NWgtMS41di0xLjVoMS41djEuNXptMS41NTMtNS44MTNsLS42NzYuNjljLS41NC41NDgtLjg3Ny45OTgtLjg3NyAyLjEyM2gtMS41di0uMzc1YzAtLjgyNS4zMzgtMS41NzUuODc3LTIuMTIzbC45My0uOTQ1Yy4yNzgtLjI3LjQ0My0uNjQ1LjQ0My0xLjA1NyAwLS44MjUtLjY3NS0xLjUtMS41LTEuNVM4IDcuNDI1IDggOC4yNUg2LjVhMyAzIDAgMSAxIDYgMGMwIC42Ni0uMjcgMS4yNi0uNjk3IDEuNjg4eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIgLTMpIi8+CiAgICA8L2c+Cjwvc3ZnPgo=\"\n                        alt=\"Help Center\" width=\"15\" height=\"15\">\n                    <a href=\"../pages/help center/index.html\"\n                        aria-label=\"Help Center\"><span>Help Center</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <span>© 2007-2024 <span>Flipkart.com</span></span>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/payment-method-c454fb.svg\"\n                        class=\"pCGSTEF\" alt=\"Payment methods\">\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js\"></script>\n</body>\n\n</html>\n"
  },
  {
    "path": "gift-cards/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n\t<meta charset=\"UTF-8\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\t<meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\n\t<title>Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More. Best Offers!</title>\n\t<link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\">\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"../css/homeHeader.css\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/index.css\">\n\t<link rel=\"stylesheet\" href=\"../css/footer.css\">\n\t<link rel=\"stylesheet\" href=\"styles.css\">\n</head>\n\n<body>\n\t<!--Header start  -->\n\t<header id=\"homeHeader\">\n\t\t<nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\n\t\t\t<a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\n\t\t\t\t\twidth=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n\t\t\t</a>\n\t\t\t<div id=\"navbarNav_\">\n\t\t\t\t<ul class=\"navbar-nav\">\n\t\t\t\t\t<li class=\"nav-item navItem1\">\n\t\t\t\t\t\t<div id=\"searchbar\" class=\"navtab\">\n\t\t\t\t\t\t\t<span id=\"searchButton\" style=\"display: flex;align-items: center;\">\n\t\t\t\t\t\t\t\t<svg width=\"24\" height=\"24\" class=\"\" viewBox=\"0 0 24 24\" fill=\"none\"\n\t\t\t\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\">\n\t\t\t\t\t\t\t\t\t<title>Search Icon</title>\n\t\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\t\td=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\n\t\t\t\t\t\t\t\t\t\tstroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t\t<path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<span class=\"flex-grow\">\n\t\t\t\t\t\t\t\t<input id=\"input_data\" type=\"text\" placeholder=\"Search for Products, Brands and More\" />\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<div id=\"autocompleteResults\" class=\"autocom-box\" style=\"display: none;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\ttop: 67px;\n\t\t\t\t\t\t\tbackground: rgb(255, 255, 255);\n\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\tborder: rgba(255, 51, 255, 0.2);\">\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"navbar-nav ml-auto\"\n\t\t\t\t\tstyle=\"flex-wrap: nowrap;flex-direction: row;width: 40vw; justify-content: space-around\">\n\t\t\t\t\t<li class=\"nav-item navItem2 dropdown\" id=\"navbarDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd acnavdd\" href=\"#\" id=\"navbarDropdown\" role=\"button\"\n\t\t\t\t\t\t\tdata-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img src=\"../img/svg/profile-.svg\" alt=\"Profile\" />\n\t\t\t\t\t\t\t<span class=\"navname navname_ac\"> Account <i class=\"bi bi-chevron-down\"></i><i\n\t\t\t\t\t\t\t\t\tclass=\"bi bi-chevron-up\"></i></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0;\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../account/home_account.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tMy Profile </a>\n\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../account/login-signup.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tSign In</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../plus/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/fkplus-+.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tFlipkart Plus Zone</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../account/orders.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/orders.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tOrders</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../wishlist/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/wishList.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tWishlist</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/rewards.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/rewards.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tRewards</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../the-gift-card-store/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/giftCard.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tGift Cards</a>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem3\">\n\t\t\t\t\t\t<a class=\"nav-link cartLogoandname\" href=\"../viewcart/\">\n\t\t\t\t\t\t\t<img\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\" />\n\t\t\t\t\t\t\t<span class=\"navname2\">Cart</span><span id=\"cartItems\"></span>\n\t\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem4\">\n\t\t\t\t\t\t<a class=\"nav-link\" href=\"../sell-online/\">\n\t\t\t\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\n\t\t\t\t\t\t\t\talt=\"Become a Seller\" />\n\t\t\t\t\t\t\t<span class=\"navname3\">Become a Seller</span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem5 dropdown \" id=\"moreLinksDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\"\n\t\t\t\t\t\t\taria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img class=\"nav-dd\"\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\"\n\t\t\t\t\t\t\t\talt=\"More Links\" />\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../notifications/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"../img/svg/notificationPreferences.svg\"\n\t\t\t\t\t\t\t\t\talt=\"appointment-reminders--v2\" />Notification\n\t\t\t\t\t\t\t\tPreferences</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../helpcentre/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"../img/svg/helpcenter.svg\" alt=\"imgcc\">24x7 Customer Care</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\"\n\t\t\t\t\t\t\t\thref=\"https://advertising.flipkart.com/\"><img\n\t\t\t\t\t\t\t\t\twidth=\"30\" height=\"20\" src=\"img/svg/advertise.svg\" alt=\"Advertise\">Advertise</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../mobile-apps/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"../img/svg/downloadApp.svg\" alt=\"img3\">Download App</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t\n\t\t\t\t</ul>\n\t\t\t</div>\n\t\t</nav>\n\t</header>\n\n\t<!-- Main Content -->\n\t<main>\n\t\t<div class=\"container\">\n\t\t\t<div class=\"gift-card-container\">\n\t\t\t\t<!-- Example Gift Card -->\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/apple.webp\" alt=\"Gift Card 1\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 1</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$25</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/blackberry.webp\" alt=\"Gift Card 2\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 2</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$50</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/cinema.webp\" alt=\"Gift Card 3\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 3</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$75</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/flipkart.webp\" alt=\"Gift Card 4\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 4</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$100</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/myntra.webp\" alt=\"Gift Card 5\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 5</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$125</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/tanishq.webp\" alt=\"Gift Card 6\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 6</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$150</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/trends.webp\" alt=\"Gift Card 7\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 7</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$175</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/uber.webp\" alt=\"Gift Card 8\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 8</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$200</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"gift-card\">\n\t\t\t\t\t<img src=\"images/zomato.webp\" alt=\"Gift Card 9\">\n\t\t\t\t\t<div class=\"gift-card-details\">\n\t\t\t\t\t\t<h5>Gift Card 9</h5>\n\t\t\t\t\t\t<p class=\"gift-card-price\">$225</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</main>\n\n\t<!-- Footer Section -->\n\t<footer>\n\t\t<div class=\"container-fluid bg-dark text-white p-3 text-center\">\n\t\t\t<p>© 2023 Flipkart. All rights reserved.</p>\n\t\t</div>\n\t</footer>\n\n\t<script src=\"js/bootstrap.bundle.min.js\"></script>\n</body>\n\n</html>\n"
  },
  {
    "path": "gift-cards/styles.css",
    "content": "/* General styles */\nbody {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n}\n\nh1 {\n    font-size: 24px;\n    font-weight: bold;\n}\n\n.container-fluid {\n    padding: 0 15px;\n}\n\n.container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 20px 15px;\n}\n\nheader .container-fluid {\n    background-color: #2874F0;\n}\n\nheader h1 {\n    font-size: 24px;\n    font-weight: bold;\n    color: white;\n}\n\nheader form {\n    display: flex;\n    align-items: center;\n}\n\nheader input.form-control {\n    border-radius: 4px 0 0 4px;\n}\n\nheader button.btn {\n    border-radius: 0 4px 4px 0;\n}\n\n/* Gift card styles */\n.gift-card-container {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: space-between;\n    gap: 20px;\n    padding: 20px;\n}\n\n.gift-card {\n    border: 1px solid #ddd;\n    border-radius: 16px; /* Rounded corners */\n    overflow: hidden;\n    transition: transform 0.3s, box-shadow 0.3s;\n    width: calc(33.333% - 20px); /* Adjust width to ensure 3 boxes per row */\n    text-align: center;\n    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n}\n\n.gift-card img {\n    width: 100%;\n    height: auto;\n    border-top-left-radius: 16px;\n    border-top-right-radius: 16px;\n}\n\n.gift-card:hover {\n    transform: scale(1.05);\n    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);\n}\n\n.gift-card-details {\n    padding: 15px;\n}\n\n.gift-card-details h5 {\n    font-size: 18px;\n    margin: 10px 0;\n}\n\n.gift-card-price {\n    font-weight: bold;\n    color: #2874F0;\n    margin-top: 10px;\n}\n\n/* Footer styles */\nfooter {\n    background-color: #343a40;\n    color: white;\n    text-align: center;\n    padding: 20px 0;\n}\n\n@media (max-width: 768px) {\n    .gift-card {\n        width: calc(50% - 20px); /* Adjust for smaller screens */\n    }\n}\n\n@media (max-width: 480px) {\n    .gift-card {\n        width: calc(100% - 20px); /* Adjust for very small screens */\n    }\n}\n"
  },
  {
    "path": "header/header.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <title>Header</title>\r\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\">\r\n  <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\r\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/header.css\">\r\n  <style>\r\n    .navbar-brand img {\r\n      width: 120px;\r\n    }\r\n\r\n    .searchBar_h {\r\n      display: flex;\r\n      align-items: center;\r\n      flex: 1;\r\n      margin-left: 20px;\r\n      margin-right: 20px;\r\n    }\r\n\r\n    .searchBar_h input {\r\n      flex: 1;\r\n      padding: 5px 10px;\r\n      border-radius: 5px 0 0 5px;\r\n      border: 1px solid #ccc;\r\n    }\r\n\r\n    .searchBar_h i {\r\n      padding: 5px 10px;\r\n      border-radius: 0 5px 5px 0;\r\n      background-color: #fff;\r\n      border: 1px solid #ccc;\r\n      border-left: 0;\r\n      cursor: pointer;\r\n    }\r\n\r\n    .btn-primary a {\r\n      color: #fff;\r\n      text-decoration: none;\r\n    }\r\n\r\n    .b_a_s, #more_h, .cartLogoandname {\r\n      margin-left: 10px;\r\n    }\r\n\r\n    .cartLogoandname img {\r\n      width: 20px;\r\n    }\r\n\r\n    .secondNav .nav-link {\r\n      display: flex;\r\n      align-items: center;\r\n      padding: 5px 10px;\r\n      color: #000;\r\n    }\r\n\r\n    .secondNav .nav-link i {\r\n      margin-left: 5px;\r\n    }\r\n\r\n    .navbar-toggler-icon {\r\n      background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28155,155,155,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\r\n    }\r\n\r\n    #more_h {\r\n      cursor: pointer;\r\n      position: relative;\r\n      display: inline-block;\r\n      padding: 5px 10px;\r\n      color: #fff;\r\n    }\r\n\r\n    #more-options {\r\n      display: none;\r\n      background-color: white;\r\n      box-shadow: 0 2px 2px rgba(0,0,0,0.15);\r\n      padding: 10px;\r\n      position: absolute;\r\n      z-index: 1;\r\n      top: 100%;\r\n      left: 0;\r\n      min-width: 150px;\r\n      border: 1px solid #e0e0e0;\r\n      border-radius: 5px;\r\n      font-family:'Courier New', Courier, monospace;\r\n      font-weight: 700;\r\n    }\r\n\r\n    #more_h:hover #more-options {\r\n      display: block;\r\n    }\r\n\r\n    .option-item {\r\n      color: #f4c3c3;\r\n      padding: 5px 0;\r\n      text-decoration: none;\r\n      display: block;\r\n      font-size: 13px;\r\n      transition: all 0.78s;\r\n    }\r\n\r\n    .option-item:hover {\r\n      text-decoration: none;\r\n      background-color: #ccc;\r\n      transition: all 0.78s;\r\n    }\r\n  </style>\r\n</head>\r\n\r\n<body>\r\n  \r\n  <!-- Header -->\r\n  <header id=\"header-bluebg\">\r\n    <nav class=\"container-fluid\" style=\"background-color: #2874F0;\">\r\n      <div class=\"container\">\r\n        <nav class=\"navbar bg-body-tertiary\">\r\n          <div class=\"container-fluid\">\r\n            <a class=\"navbar-brand\" href=\"../\">\r\n              <img src=\"../img/flipcartlogo.PNG\" alt=\"Brand Logo\">\r\n            </a>\r\n            <div class=\"searchBar_h\">\r\n              <input id=\"inputField_h\" type=\"text\" autocomplete=\"off\" placeholder=\"Search for products, brands and more\">\r\n              <i id=\"fetchButton_h\" class=\"bi bi-search btn\"></i>\r\n            </div>\r\n            <div>\r\n              <button class=\"btn btn-primary\"><a href=\"../account/login-signup.html\">Login</a></button>\r\n            </div>\r\n            <div class=\"text-white b_a_s\">\r\n              <a href=\"../sell-online/\">Become a Seller</a>\r\n            </div>\r\n            <div class=\"text-white\" id=\"more_h\">\r\n              More <i class=\"bi bi-chevron-down\"></i>\r\n              <div id=\"more-options\">\r\n                <a class=\"option-item\" href=\"../gift-cards/index.html\">Gift-Cards</a>\r\n                <a class=\"option-item\" href=\"../plus/index.html\">Flipkart+</a>\r\n                <a class=\"option-item\" href=\"../account/contact.html\">Contact Us</a>\r\n              </div>\r\n            </div>\r\n            <div class=\"text-white cartLogoandname\">\r\n              <a href=\"../viewcart/\">\r\n                <img src=\"../img/svg/cart_h.svg\" alt=\"Cart\"><span class=\"cart_h\" style=\"color:white\">Cart</span><span id=\"cartItems\"></span>\r\n              </a>\r\n            </div>\r\n          </div>\r\n        </nav>\r\n      </div>\r\n    </nav>\r\n\r\n    <nav class=\"navbar navbar-expand-lg bg-body-tertiary secondNav container-fluid\">\r\n      <div class=\"container\">\r\n        <button class=\"navbar-toggler\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#navbarNav\"\r\n          aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\r\n          <span class=\"navbar-toggler-icon\"></span>\r\n        </button>\r\n        <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\r\n          <ul class=\"navbar-nav\">\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=electronics\">Electronics <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=appliances\">TVs & Appliances <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=men\">Men <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=women\">Women <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=kids\">Baby & Kids <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=home\">Home & Furniture <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=books\">Sports, Books & More <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=flights\">Flights <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../offerpage/offerportal.html\">Offer Zone <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n            <li class=\"nav-item\">\r\n              <a class=\"nav-link\" href=\"../search/?query=grocery\">Grocery <i class=\"bi bi-chevron-down\"></i></a>\r\n            </li>\r\n          </ul>\r\n        </div>\r\n      </div>\r\n    </nav>\r\n  </header>\r\n\r\n  <!-- JavaScript -->\r\n  <script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "helpcenter.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n\t<meta charset=\"UTF-8\">\r\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n\t<meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\r\n\t<title>Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More.\r\n\t\tBest Offers!</title>\r\n\t\t<link rel=\"stylesheet\" href=\"mainflipkart.css\">\r\n\t<link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\r\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"css/bootstrap.min.css\">\r\n    \r\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\r\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\r\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\r\n\t<link rel=\"stylesheet\" href=\"css/homeHeader.css\">\r\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"css/index.css\">\r\n\t<link rel=\"stylesheet\" href=\"css/footer.css\">\r\n\t\t<link href=\"css/contactus.css\" rel=\"stylesheet\">\r\n</head>\r\n\r\n<body>\r\n\t<!-- loader -->\r\n\t<!-- <div id=\"loader\">\r\n\t\t<div class=\"loader-spinner\"></div>\r\n\t\t<img src=\"img/flipkardLoader.png\" height=\"50px\" alt=\"\">\r\n\t</div> -->\r\n\t<div class=\"loader-container\">\r\n\t\t<div class=\"loader-wrapper\">\r\n\t\t\t<div class=\"loader\"></div>\r\n\t\t\t<div class=\"logo\" style=\"background-image: url('img/flipkart_lite.png');\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\t<!-- loader end -->\r\n\r\n\r\n\t<!--Header start  -->\r\n\t<header id=\"homeHeader\">\r\n\t\t<nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\r\n\t\t\t<a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\r\n\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\r\n\t\t\t\t\twidth=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\r\n\t\t\t</a>\r\n\t\t\t<div id=\"navbarNav_\">\r\n\t\t\t\t<ul class=\"navbar-nav\">\r\n\t\t\t\t\t<li class=\"nav-item navItem1\">\r\n\t\t\t\t\t\t<div id=\"searchbar\" class=\"navtab\" style=\"background-color: #F0F5FF;\">\r\n\t\t\t\t\t\t\t<span id=\"searchButton\" style=\"display: flex;align-items: center;\">\r\n\t\t\t\t\t\t\t\t<svg width=\"24\" height=\"24\" class=\"\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n\t\t\t\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\">\r\n\t\t\t\t\t\t\t\t\t<title>Search Icon</title>\r\n\t\t\t\t\t\t\t\t\t<path\r\n\t\t\t\t\t\t\t\t\t\td=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\r\n\t\t\t\t\t\t\t\t\t\tstroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\r\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\r\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\r\n\t\t\t\t\t\t\t\t</svg>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t<span class=\"flex-grow\">\r\n\t\t\t\t\t\t\t\t<input id=\"input_data\" class=\"searchbar\" type=\"text\" placeholder=\"Search for Products, Brands and More\" />\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t<div id=\"autocompleteResults\" class=\"autocom-box\" style=\"display: none;\r\n\t\t\t\t\t\t\tposition: absolute;\r\n\t\t\t\t\t\t\ttop: 67px;\r\n\t\t\t\t\t\t\tbackground: rgb(255, 255, 255);\r\n\t\t\t\t\t\t\tpadding: 10px;\r\n\t\t\t\t\t\t\tborder: rgba(255, 51, 255, 0.2);\">\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</li>\r\n\t\t\t\t</ul>\r\n\t\t\t\t<ul  class=\"navbar-nav ml-auto\"\r\n\t\t\t\t\tstyle=\"flex-wrap: nowrap;flex-direction: row;width: 30vw; justify-content: space-between;margin-left: 20px;\">\r\n\t\t\t\t\t<li class=\"nav-item navItem2 dropdown\" id=\"navbarDropdow\">\r\n\t\t\t\t\t\t<a class=\"nav-link nav-dd acnavdd\" href=\"#\" id=\"navbarDropdown\" role=\"button\"\r\n\t\t\t\t\t\t\tdata-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\r\n\t\t\t\t\t\t\t<img src=\"img/svg/profile-.svg\" alt=\"Profile\" />\r\n\t\t\t\t\t\t\t<span class=\"navname navname_ac\"> Login <i class=\"bi bi-chevron-down\"></i><i\r\n\t\t\t\t\t\t\t\t\tclass=\"bi bi-chevron-up\"></i></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0;\">\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/home_account.html\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tMy Profile </a>\r\n\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/login-signup.html\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tSign In</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"plus/\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/fkplus-+.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tFlipkart Plus Zone</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/orders.html\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/orders.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tOrders</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"wishlist/\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/wishList.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tWishlist</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/notifications.html\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/notifications.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tNotifications</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/rewards.html\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/rewards.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tRewards</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"./the-gift-card-store/index.html\">\r\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/giftCard.svg\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\tGift Cards</a>\r\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/contact.html\">\r\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"https://pngimg.com/uploads/phone/phone_PNG48988.png\" alt=\"flipKart\">\r\n\t\t\t\t\t\t\t\t\tContact Us </a>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</li>\r\n\t\t\t\t\t<li class=\"nav-item navItem3\">\r\n\t\t\t\t\t\t<a class=\"nav-link cartLogoandname\" href=\"viewcart/\">\r\n\t\t\t\t\t\t\t<img\r\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\" />\r\n\t\t\t\t\t\t\t<span class=\"navname2\">Cart</span><span id=\"cartItems\"></span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</li>\r\n\t\t\t\t\t<li class=\"nav-item navItem4\">\r\n\t\t\t\t\t\t<a class=\"nav-link\" href=\"sell-online/\">\r\n\t\t\t\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\r\n\t\t\t\t\t\t\t\talt=\"Become a Seller\" />\r\n\t\t\t\t\t\t\t<span class=\"navname3\">Become a Seller</span>\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t</li>\r\n\t\t\t\t\t<li class=\"nav-item navItem5 dropdown \" id=\"moreLinksDropdow\">\r\n\t\t\t\t\t\t<a class=\"nav-link nav-dd\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\"\r\n\t\t\t\t\t\t\taria-haspopup=\"true\" aria-expanded=\"false\">\r\n\t\t\t\t\t\t\t<img class=\"nav-dd\"\r\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\"\r\n\t\t\t\t\t\t\t\talt=\"More Links\" />\r\n\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t<div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"notifications/\"><img width=\"30\" height=\"20\"\r\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/notificationPreferences.svg\"\r\n\t\t\t\t\t\t\t\t\talt=\"appointment-reminders--v2\" />Notification\r\n\t\t\t\t\t\t\t\tPreferences</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"./helpcenter.html\"><img width=\"30\" height=\"20\"\r\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/helpcenter.svg\" alt=\"imgcc\">24x7 Customer Care</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\"\r\n\t\t\t\t\t\t\t\thref=\"https://advertising.flipkart.com/\"><img\r\n\t\t\t\t\t\t\t\t\twidth=\"30\" height=\"20\" src=\"img/svg/advertise.svg\" alt=\"Advertise\">Advertise</a>\r\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"mobile-apps/\"><img width=\"30\" height=\"20\"\r\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/downloadApp.svg\" alt=\"img3\">Download App</a>\r\n\t\t\t\t\t</li>\r\n\t\t\t\t\t\r\n\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t</nav>\r\n\t</header>\r\n\t<!--Header end -->\r\n\r\n\t<!-- categorylist -->\r\n\t<div id=\"categorylist-wrapper\" class=\"container-fluid categorylist-wrapper\">\r\n\t\t<ul id=\"categories\" class=\"categories\"></ul>\r\n\t</div>\r\n\r\n\t<!-- carousel start -->\r\n\t<div class=\"container-fluid\">\r\n\t\t<div id=\"carouselExampleIndicators\" class=\"carousel slide\" data-bs-ride=\"carousel\">\r\n\t\t\t<div class=\"carousel-indicators\">\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"0\" class=\"active\"\r\n\t\t\t\t\taria-current=\"true\" aria-label=\"Slide 1\"></button>\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"1\"\r\n\t\t\t\t\taria-label=\"Slide 2\"></button>\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"2\"\r\n\t\t\t\t\taria-label=\"Slide 3\"></button>\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"3\"\r\n\t\t\t\t\taria-label=\"Slide 4\"></button>\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"4\"\r\n\t\t\t\t\taria-label=\"Slide 5\"></button>\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"5\"\r\n\t\t\t\t\taria-label=\"Slide 6\"></button>\r\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"6\"\r\n\t\t\t\t\taria-label=\"Slide 7\"></button>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"carousel-inner\">\r\n\t\t\t\t<div class=\"carousel-item active\">\r\n\t\t\t\t\t<img src=\"img/14691d790ec410a9.jpg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"carousel-item\">\r\n\t\t\t\t\t<img src=\"img/17a2c4ed00866b1a.jpg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"carousel-item\">\r\n\t\t\t\t\t<img src=\"img/1f25201ced5d720d.jpg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"carousel-item\">\r\n\t\t\t\t\t<img src=\"img/345037032e3daaaf.jpg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"carousel-item\">\r\n\t\t\t\t\t<img src=\"img/3dc8f265914a1426.jpeg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"carousel-item\">\r\n\t\t\t\t\t<img src=\"img/aa1b2bdcf519b468.jpg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"carousel-item\">\r\n\t\t\t\t\t<img src=\"img/f09f551230626a04.jpg\" class=\"d-block w-100\" alt=\"image\">\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<button class=\"carousel-control-prev \" style=\"width: 35px; height: 45%;  margin-top: 60px;box-shadow: 2px 2px grey;background-color: white; border-top-right-radius: 5px;\r\n  border-bottom-right-radius: 5px;\"\r\n\t\t\t\ttype=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide=\"prev\">\r\n\t\t\t\t<span class=\"carousel-control-prev-icon\" aria-hidden=\"true\"></span>\r\n\t\t\t\t<i class=\"bi bi-caret-left\" style=\"color: black; z-index: 50; margin-right: 10px;\"></i>\r\n\t\t\t\t<span class=\"visually-hidden\">Previous</span>\r\n\t\t\t</button>\r\n\t\t\t<button class=\"carousel-control-next\" style=\"width: 35px; height: 45%;margin-top: 60px; background-color: white; box-shadow: -2px 2px grey;border-top-left-radius: 5px;\r\n  border-bottom-left-radius: 5px;\"\r\n\t\t\t\ttype=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide=\"next\">\r\n\t\t\t\t<span class=\"carousel-control-next-icon\" aria-hidden=\"true\"></span>\r\n\t\t\t\t<i class=\"bi bi-caret-right\" style=\"color: black; z-index: 50; margin-right: 10px;\"></i>\r\n\t\t\t\t<span class=\"visually-hidden\">Next</span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n\t<!-- carousel end -->\r\n\r\n\t<!-- bank card -->\r\n\t <div class=\"container-fluid\">\r\n\t\t<img src=\"/bank-banner/sbi.webp\" class=\"banner\"/>\r\n\t\t\r\n\t </div>\r\n\r\n\r\n\r\n\t<!-- search product show Showing results-->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t<!-- <h4 id=\"showingrslt\">Showing Results</h4> -->\r\n\t\t</div>\r\n\t\t<div class=\"container-fluid mt-4\">\r\n\t\t\t<div class=\"row mt-1\" id=\"results\"></div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n<!-- best of Electronics -->\r\n<div class=\"containter-fluid bg-white\">\r\n\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t<h4>Best of Electronics</h4>\r\n\t</div>\r\n\t<div class=\"container-fluid\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-10\">\r\n\t\t\t\t<div id=\"bestOfElectronics-product\" class=\"row m-1\"></div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-md-2\">\r\n\t\t\t\t<img src=\"img/flytecafd87e5.webp\" alt=\"image\" style=\"width: 100%; height: 100%; object-fit: contain\" class=\"mdHide\">\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div>\r\n\r\n\t<!-- fetch random products -->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t<h4>Suggested for You</h4>\r\n\t\t</div>\r\n\t\t<div id=\"rendom-product\" class=\"row m-1\"></div>\r\n\t</div>\r\n\r\n\r\n\t<!-- fetch mobile under 15000-->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t<h4>Mobile Phone Under 15000 Rs</h4>\r\n\t\t</div>\r\n\t\t<div id=\"mobileUnder15000-product\" class=\"row m-1\"></div>\r\n\t</div>\r\n\r\n\t<!-- newsection for grid items  -->\r\n\t<section id=\"img-box\">\r\n\t\t<a href=\"\">\r\n\t\t\t<div class=\"img\"><img src=\"img/grid-1.webp\" alt=\"image\" /></div>\r\n\t\t</a>\r\n\t\t<a href=\"\">\r\n\t\t\t<div class=\"img\"><img src=\"img/grid-2.jpg\" alt=\"image\" /></div>\r\n\t\t</a>\r\n\t\t<a href=\"\">\r\n\t\t\t<div class=\"img\"><img src=\"img/grid-3.jpg\" alt=\"image\" /></div>\r\n\t\t</a>\r\n\t\t<a href=\"\">\r\n\t\t\t<div class=\"img\"><img src=\"img/grid-1.webp\" alt=\"image\" /></div>\r\n\t\t</a>\r\n\t</section>\r\n\r\n\t<!-- fetch best deal products -->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t<h4>Best Deal for You</h4>\r\n\t\t</div>\r\n\t\t<div id=\"best-deal-product\" class=\"row m-1\"></div>\r\n\t</div>\r\n\r\n\t<!-- fetch data under 500-->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t<h4>Shop Now Under 500 Rs</h4>\r\n\t\t</div>\r\n\t\t<div id=\"shopUnder500-product\" class=\"row m-1\"></div>\r\n\t</div>\r\n\r\n\r\n\t<!-- fetch data-->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"row\">\r\n\t\t\t<div class=\"col-md-3\">\r\n\t\t\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t\t\t<h4>Best for You</h4>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div id=\"s1-product\" class=\"row m-1\">\r\n\t\t\t\t\t<a href=\"Fashion-/\"><img  src=\" img/fk-default-image-75ff340b.png \" alt=\"image\"></a>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"col-md-9\">\r\n\t\t\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t\t\t<h4> </h4>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div id=\"s2-product\" class=\"row m-1\"></div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\r\n\t<!-- Top Selection -->\r\n\t<div class=\"containter-fluid bg-white\">\r\n\t\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t\t<h4>Top Selection</h4>\r\n\t\t</div>\r\n\t\t<div id=\"top-selection-product\" class=\"row m-1\"></div>\r\n\t</div>\r\n\r\n\t<!--Other Top Deals-->\r\n\t<center><h3>Other Top Deals</h3></center>\r\n\t<section id=\"category-grid\">\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal5.png\" alt=\"deal1\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal6.png\" alt=\"deal2\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal1.png\" alt=\"deal3\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal7.png\" alt=\"deal4\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal8.png\" alt=\"deal5\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal9.png\" alt=\"deal6\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal10.png\" alt=\"deal7\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal11.png\" alt=\"deal8\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t\t<div class=\"category-container\">\r\n\t\t  <img class=\"category\" src=\"img/deal12.png\" alt=\"deal9\">\r\n\t\t  <a href=\"#\" class=\"show-items-link\">\r\n\t\t\t<button class=\"show-items-btn\">Show Items</button>\r\n\t\t  </a>\r\n\t\t</div>\r\n\t  </section>\r\n\r\n\t \r\n\r\n<!-- Product Selection -->\r\n<div class=\"containter-fluid bg-white\">\r\n\t<div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n\t\t<h4>Select Your Choice</h4>\r\n\t</div>\r\n\t<div id=\"seletcYourChoice-product\" class=\"row m-1\"></div>\r\n</div>\r\n<!-- Adding brand directory -->\r\n\t<div class=\"brand-directory\">\r\n\t\t<h5 class=\"brand-directory-heading\">Top Stories : Brand Directory</h5>\r\n\r\n\t\t\t<div class=\"most-searched-for-on-flipkart\">\r\n\t\t\t\t<p class=\"paragraph\">\r\n\t\t\t\t\tMOST SEARCHED FOR ON FLIPKART: iPhone 15 | iPhone 15 Plus | iPhone 15 Pro Blue | iPhone 15 Pro Black | iPhone 15 Pro Max Blue | iPhone 15 Pro Black|\r\n\t\t\t\t\tVivi x 100 | Spoyl Store | SAMSUNG Flip5 | SAMSUNG Fold5 | Flipkart Axis Bank Super Elite Credit card| 5G Mobile Phones | Primebook Laptops | Moto Edge 40 |\r\n\t\t\t\t\tGrievance Redressal | OPPO Reno7 Pro 5G | iPhone 13 | Help Centre | Track Orders | Manage Orders | Retyurn Orders | Gift Cards Store | Flipkart Axis Bank Credit Card | Pay Later\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"mobile\">\r\n\t\t\t\t<p class=\"mobile-para\">\r\n\t\t\t\t\tMOBILES: Redmi 12 %G | Realme 12 + 5G | Motorola G84 | Realme C53 | Infinix Smart 8 | Samsung Galaxy S23 5G | Samsung Galaxy 21 FE 5G Qualcomm | Vivo V30 | Samsung Galaxy S24 5G |  Samsung S24+ 5G | iPhone 12 64GB |\r\n\t\t\t\t\tiPhone 12 Pro 512GB | iPhone 12 128GB | Vivo Y15 | SAMSUNG Galaxy S21 FE 5G | Infinix HOT 30i | Realme 10 Pro 5G | MOTOROLA G62 5G | Nothing Phone | REDMI Note 12 Pro 5G | Infinix SMART 7 | Vivo Y12 | Oppo A12 | Motorola 5g Phone |\r\n\t\t\t\t\tRealme 5g Smartphone | Apple 5g Phone | Iqoo 5g Phones | Oneplus 5g Plus | Vivo 5g Phones | Oppo 5g Smart Phones | Oppo F15 | Oppo A31 | Samsung A71 | Samsung A51 | Samsung A31 | iPhone 11 Pro | 4G Mobile | Nokia Mobile | Samsung Mobile | iPhone | Oppo Mobile | Vivo Mobile\r\n\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"camera\">\r\n\t\t\t\t<p class=\"camera-para\">\r\n\t\t\t\t\tCAMERA: GoPro Action Camera | Nikon Camera | Canon Camera | Sony Camera | canon DSLR | Nikon DSLR\r\n\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"laptops\">\r\n\t\t\t\t<p  class=\"laptop-para\">\r\n\t\t\t\t\tLAPTOPS: Asus ROG Ally | MacBook Pro M2 | Premium Laptop | ASUS ROG Strix SCAR 16 (2023) Core i9 13th Gen | ASUS ROG Zephyrus M16 (2023) Core i9 13th Gen | ASUS Zenbook 14 OLED (2022) | Realme Book Prime Core i5 11th Gen | Microsoft Surface Go Pentium 128GB | Apple Laptops | Acer Laptops | Lenovo Laptops | Dell Laptops | Asus Laptops |\r\n\t\t\t\t\tHP Laptops | Gaming laptops | 2 in 1 Laptops | Laptops | Dell latest laptop 2022 | HP latest laptops 2022 | Infinix INBook Y1 Plus | SAMSUNG Galaxy Book3 | 12th gen Intel Core Laptops\r\n\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"tvs\">\r\n\t\t\t\t<p class=\"tvs-para\">\r\n\t\t\t\t\tTVS: Nokia TV | Panasonic TV | Thomson TV | Mi X Pro | Realme TV | Motorola TV | OnePlus TV | LG TV | TV | Sony TV | Samsung TV | Android Television | Iffalcon TV | Mi TV\r\n\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"large-appliances\">\r\n\t\t\t\t<p class=\"large-appliances-para\">\r\n\t\t\t\t\tLARGE APPLIANCES: Television | Washing Machine | Refrigerators | | Air Conditioners | Electric Cookers | Electric Jug(Heater) / Travel Kettles | Induction Cooktops | Inverters / stabilizer | Irons / Iron Box | Mixer Grinder Juicer | Wet\r\n\t\t\t\t\tGrinders Chimneys Microwave Ovens Vacuum Cleaners Water Purifier Fan\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"clothing\">\r\n\t\t\t\t<p class=\"clothing-para\">\r\n\t\t\t\t\tCLOTHING Green bridal lehenga | Tops | Shoes | Sunglasses | Bridal Blouse | Half saree blouse designs | Designer blouses | Blouse designs | Shirts | Cotton saree blouse designs | Tshirts | Jeans | Sarees | Dresses | One pieces | Groom wedding sherwani | Designer Salwar Suits | Bra | Cotton simple blouse designs | Banarasi saree blouse designs | Stylish blouse astin design | Track Pant | Blouse neck designs | Kurtas | Party Dresses | Palazzo Suits | Anarkali | Gowns | Cut out dress | Salwar Suits | Kurtis | Designer Sarees | Leggings | Shorts | Georgette Sarees | Ethnic Wear | uppada pattu sarees | Blouse back design | Jodhpur pants\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"footwear\">\r\n\t\t\t\t<p class=\"footwear-para\">\r\n\t\t\t\t\tFOOTWEAR: Adidas Shoes | Reebok Shoes | Nike Shoes | Puma Shoes | Boots | Bata Shoes | Woodland Shoes | Skechers Shoes | Sneakers | Womens Boots | Sports Shoes | Loafers | Sandals | Lotto Sports Shoes | Casual Shoes | Womens\r\n\t\t\t\t\tSkechers Shoes Asics Sports Shoes Formal Shoes School Shoes\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"groceries\">\r\n\t\t\t\t<p class=\"groceries-para\">\r\n\t\t\t\t\tGROCERIES PhonePe Grocery Voucher | Hand Wash | Soap | Cashew Nuts | Sunflower Oil | Eggs | Toilet Cleaner | Harpic Toilet Cleaner | Dettol Soap | Mustard Oil | Biscuits | Cheese | Patanjali Atta | Fortune Oil | Aashirvaad Atta | Tea\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"best-seller-on-flipkart\">\r\n\t\t\t\t<p class=\"best-seller-on-flipkart-para\">\r\n\t\t\t\t\tBEST SELLING ON FLIPKART Headphones | Best Gas Geyser | Kitchen Geyser | Nutri Blenders | Portable Air Cooler | Best Air Cooler | Bags | Hitachi Refrigerator 3 Door | Books | Toys | Candles | Helmets | Wall Clocks | Baby\r\n\t\t\t\t\tFood | Chocolates | Cycles | Calculators | Lipsticks | Mask | Vertiv UPS | Fastrack Watches | Wallets | Earrings | Gold Coins | Realme Pad Mini | Handbags | conekt SW2 Smartwatch | Mivi DuoPods a350 | Speaker Cleaner\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"furniture\">\r\n\t\t\t\t<p class=\"furniture-para\">\r\n\t\t\t\t\tFURNITURE Furniture | Sofas | Beds | Dining sets | Wardrobes | Mattresses | TV Units | Tables | Chairs | Shelves | Bean Bags | Office Chairs | Computer Table | Office Tables | Red Sofa | Wakefit Beds | White Sofa | Wakefit Mattress | Green\r\n\t\t\t\t\tSofa Black Sofa Brown Sofa\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"bgmh\">\r\n\t\t\t\t<p class=\"bgmh-para\">\r\n\t\t\t\t\tBGMH: Whey Protein | Homeopathy | Cricket | Cycles | Footballs | Treadmills | Christmas Gifts | Fitness Accessories | Online Guitar | Books Store | Musical Instrument Store | Dabur Chyawanprash | Baidyanath Chyawanprash | Energy\r\n\t\t\t\t\tDrinks | Toys | Milk Drink Mixes | Rakhi | Chyawanprash | Indian Flag | Protein Supplements\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t\t</p>\r\n\r\n\t</div>\r\n<!-- text on the homepage -->\r\n<div class=\"text\">\r\n\t<p class=\"main1\">Flipkart: The One-stop Shopping Destination</p>\r\n          E-commerce is revolutionizing the way we all shop in India. Why do you want to hop from one store to another in search of the latest phone when you can find it on the Internet in a single click? Not only mobiles. Flipkart houses everything you can possibly imagine, from trending electronics like laptops, tablets, smartphones, and mobile accessories to in-vogue fashion staples like shoes, clothing and lifestyle accessories; from modern furniture like sofa sets, dining tables, and wardrobes to appliances that make your life easy like washing machines, TVs, ACs, mixer grinder juicers and other time-saving kitchen and small appliances; from home furnishings like cushion covers, mattresses and bedsheets to toys and musical instruments, we got them all covered. You name it, and you can stay assured about finding them all here. For those of you with erratic working hours, Flipkart is your best bet. Shop in your PJs, at night or in the wee hours of the morning. This e-commerce never shuts down. \r\n          <br><br>\r\n          What's more, with our year-round shopping festivals and events, our prices are irresistible. We're sure you'll find yourself picking up more than what you had in mind. If you are wondering why you should shop from Flipkart when there are multiple options available to you, well, the below will answer your question. \r\n          <br><br>\r\n          <p class=\"main1\">Flipkart Plus</p>\r\n          A world of limitless possibilities awaits you - Flipkart Plus was kickstarted as a loyalty reward programme for all its regular customers at zero subscription fee. All you need is 500 supercoins to be a part of this service. For every 100 rupees spent on Flipkart order, Plus members earns 4 supercoins &amp; non-plus members earn 2 supercoins. Free delivery, early access during sales and shopping festivals, exchange offers and priority customer service are the top benefits to a Flipkart Plus member. In short, earn more when you shop more! \r\n          <br><br>\r\n          What's more, you can even use the Flipkart supercoins for a number of exciting services, like:\r\n          <br>\r\n          An annual Zomato Gold membership\r\n          <br>\r\n          An annual Hotstar Premium membership\r\n          <br>\r\n          6 months Gaana plus subscription\r\n          <br>\r\n          Rupees 550 instant discount on flights on ixigo\r\n          <br>\r\n          Check out https://www.flipkart.com/plus/all-offers for the entire list. Terms and conditions apply.\r\n          <br><br>\r\n          <p class=\"heading1\">No Cost EMI</p>\r\n          In an attempt to make high-end products accessible to all, our No Cost EMI plan enables you to shop with us under EMI, without shelling out any processing fee. Applicable on select mobiles, laptops, large and small appliances, furniture, electronics and watches, you can now shop without burning a hole in your pocket. If you've been eyeing a product for a long time, chances are it may be up for a no cost EMI. Take a look ASAP! Terms and conditions apply.\r\n          <br><br>\r\n          <p class=\"heading1\">EMI on Debit Cards</p>\r\n          Did you know debit card holders account for 79.38 crore in the country, while there are only 3.14 crore credit card holders? After enabling EMI on Credit Cards, in another attempt to make online shopping accessible to everyone, Flipkart introduces EMI on Debit Cards, empowering you to shop confidently with us without having to worry about pauses in monthly cash flow. At present, we have partnered with Axis Bank, HDFC Bank, State Bank of India and ICICI Bank for this facility. More power to all our shoppers! Terms and conditions apply. \r\n          <br><br>\r\n          <p class=\"heading1\">Mobile Exchange Offers</p>\r\n          Get an instant discount on the phone that you have been eyeing on. Exchange your old mobile for a new one after the Flipkart experts calculate the value of your old phone, provided it is in a working condition without damage to the screen. If a phone is applicable for an exchange offer, you will see the 'Buy with Exchange' option on the product description of the phone. So, be smart, always opt for an exchange wherever possible. Terms and conditions apply. \r\n          <br><br>\r\n          <p class=\"main1\">What Can You Buy From Flipkart?</p>\r\n          <p class=\"heading1\">Mobile Phones</p>\r\n          From budget phones to state-of-the-art smartphones, we have a mobile for everybody out there. Whether you're looking for larger, fuller screens, power-packed batteries, blazing-fast processors, beautification apps, high-tech selfie cameras or just large internal space, we take care of all the essentials. Shop from top brands in the country like Samsung, Apple, Oppo, Xiaomi, Realme, Vivo, and Honor to name a few. Rest assured, you're buying from only the most reliable names in the market. What's more, with Flipkart's Complete Mobile Protection Plan, you will never again find the need to run around service centres. This plan entails you to a number of post-purchase solutions, starting at as low as Rupees 99 only! Broken screens, liquid damage to phone, hardware and software glitches, and replacements - \r\n          <b>the Flipkart Complete Mobile Protection</b>\r\n          covers a comprehensive range of post-purchase problems, with door-to-door services. \r\n          <br><br>\r\n          <p class=\"heading1\">Electronic Devices and Accessories</p>\r\n          When it comes to laptops, we are not far behind. Filter among dozens of super-fast operating systems, hard disk capacity, RAM, lifestyle, screen size and many other criterias for personalized results in a flash. All you students out there, confused about what laptop to get? Our \r\n          <b>Back To College Store</b>\r\n          segregates laptops purpose wise (gaming, browsing and research, project work, entertainment, design, multitasking) with recommendations from top brands and industry experts, facilitating a shopping experience that is quicker and simpler.\r\n          <br><br>\r\n          Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store. Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store. \r\n          <br><br>\r\n          Turn your home into a theatre with a stunning surround sound system. Choose from our elaborate range of Sony home theatres, JBL soundbars and Philips tower speakers for an experience to remember.\r\n          <br><br>\r\n          How about jazzing up your phone with our quirky designer cases and covers? Our wide-ranging mobile accessories starting from headphones, power banks, memory cards, mobile chargers, to selfie sticks can prove to be ideal travel companions for you and your phone; never again worry about running out of charge or memory on your next vacation.\r\n          <br><br>\r\n          <p class=\"heading1\">Large Appliances</p>\r\n          Sleek TVs, power-saving refrigerators, rapid-cooling ACs, resourceful washing machines - discover everything you need to run a house under one roof. Our \r\n          <b>Dependable TV and Appliance Store</b>\r\n          ensures zero transit damage, with a replacement guarantee if anything goes wrong; delivery and installation as per your convenience and a double warranty (Official Brand Warranty along with an extended Flipkart Warranty) - rest assured, value for money is what is promised and delivered. Shop from market leaders in the country like Samsung, LG, Whirlpool, Midea, Mi, Vu, Panasonic, Godrej, Sony, Daikin, and Hitachi among many others.\r\n          <br><br>\r\n          For certain product categories, Customers meeting the eligibility criteria will have the option to buy larger quantities. To know more on the eligibility criteria and terms and conditions, please reach out to \r\n          <a href=\"mailto:Purchases.oni@flipkart.com\">Purchases.oni@flipkart.com</a>. \r\n          <br><br>\r\n          <p class=\"heading1\">Small Home Appliances</p>\r\n          Find handy and practical home appliances designed to make your life simpler: electric kettles, OTGs, microwave ovens, sandwich makers, hand blenders, coffee makers, and many more other time-saving appliances that are truly crafted for a quicker lifestyle. Live life king size with these appliances at home.\r\n          <br><br>\r\n          <p class=\"main1\">Lifestyle</p>\r\n          Flipkart, \r\n          <b>'India ka Fashion Capital'</b>\r\n          , is your one-stop fashion destination for anything and everything you need to look good. Our exhaustive range of Western and Indian wear, summer and winter clothing, formal and casual footwear, bridal and artificial jewellery, long-lasting make-up, grooming tools and accessories are sure to sweep you off your feet. Shop from crowd favourites like Vero Moda, Forever 21, Only, Arrow, Woodland, Nike, Puma, Revlon, Mac, and Sephora among dozens of other top-of-the-ladder names. From summer staple maxi dresses, no-nonsense cigarette pants, traditional Bandhani kurtis to street-smart biker jackets, you can rely on us for a wardrobe that is up to date. Explore our in-house brands like Metronaut, Anmi, and Denizen, to name a few, for carefully curated designs that are the talk of the town. Get ready to be spoiled for choice.Festivals, office get-togethers, weddings, brunches, or nightwear - Flipkart will have your back each time.\r\n          <br><br>\r\n          <p class=\"heading1\">Home and Furniture</p>\r\n          Moving to a new place is never easy, especially if you're buying new furniture. Beds, sofa sets, dining tables, wardrobes, and TV units - it's not easy to set up everything again. With the hundreds of options thrown at you, the ride could be overwhelming. What place is reliable, what furniture will stand the test of time? These are questions you must ask before you choose a store. Well, our \r\n          <b>Durability Certified Furniture Store</b>\r\n          has not only curated a range of furniture keeping in mind the modern Indian consumer but furniture that comes with a lab certification, ensuring they last you for up to 10 years. Yes, all our furniture has gone through 35 stability and load tests so that you receive only the best-quality furniture. \r\n          <b>Be FurniSure</b>\r\n          , always. Names to look out for are Nilkamal, Godrej Interio, Urban Ladder, HomeTown, Durian and Perfect Homes. \r\n          <br><br>\r\n          You may have your furniture all set up, but they could end up looking flat and incomplete without complementary decor. Curtains, cushion covers, bed sheets, wall shelves, paintings, floor lamps - find everything that turns a house to an inviting home under one roof at Flipkart. \r\n          <br><br>\r\n          <p class=\"heading1\">Baby and Kids</p>\r\n          Your kids deserve only the best. From bodysuits, booties, diapers to strollers, if you're an expecting mother or a new mother, you will find everything you need to set sail on a smooth parenting journey with the help of our baby care collection. When it comes to safety, hygiene and comfort, you can rely on us without a second thought. Huggies, Pampers, MamyPoko, and Johnson &amp; Johnson: we host only the most-trusted names in the business for your baby.\r\n          <br><br>\r\n          <p class=\"heading1\">Books, Sports and Games</p>\r\n          Work hard and no play? We don't believe in that. Get access to best-selling fiction and non-fiction books by your favourite authors, thrilling English and Indian blockbusters, most-wanted gaming consoles, and a tempting range of fitness and sports gadgets and equipment bound to inspire you to get moving. \r\n          <br><br>\r\n          <p class=\"heading1\">Grocery/Supermart</p>\r\n          Launching into the grocery vertical, Flipkart introduces \r\n          <b>Supermart</b>\r\n          that is out to bring everyday essentials close to you. From pulses, spices, dairy, personal and sanitary care, breakfast essentials, health drinks, spreads, ready to cook, grooming to cleaning agents, we are happy to present everything you need to run a house. Now buy Grocery products for as low as 1 Rupee only - our \r\n          <b>1 Rupee Store</b>\r\n          presents new products every day for a nominal price of 1 Rupee only. Terms and conditions apply.\r\n</div>\r\n\r\n\r\n\r\n\t<!-- FAQ Section -->\r\n\t<div class=\"container\" id=\"faq\">\r\n\t\t<div class=\"container mt-5\">\r\n\t\t\t<h2 class=\"text-center mb-4 heading\">Frequently Asked Questions</h2>\r\n\t\t\t<div class=\"accordion\" id=\"faqAccordion\">\r\n\t\t\t\t<div class=\"accordion-item\">\r\n\t\t\t\t\t<div class=\"accordion-item-header active\">\r\n\t\t\t\t\t  <h2 class=\"mb-0\"  style=\"color: blue\">\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t How do I create an account?\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t  </h2>\r\n\t\t\t\t\t  </div>\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t<div class=\"accordion-item-body\">\r\n\t\t\t\t\t\t\t<div class=\"accordion-item-body-content\">\r\n\t\t\t\t\t\t\tTo create an account on Flipkart, simply click on the \"Sign Up\" button located at the\r\n\t\t\t\t\t\t\ttop-right corner of the homepage. Follow the prompts to enter your details and create your\r\n\t\t\t\t\t\t\taccount.\r\n\t\t\t\t\t\t    </div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"accordion-item\">\r\n\t\t\t\t\t<h2 class=\"accordion-header\" id=\"headingTwo\">\r\n\t\t\t\t\t\t<button class=\"accordion-button collapsed\" type=\"button\" data-bs-toggle=\"collapse\"\r\n\t\t\t\t\t\t\tdata-bs-target=\"#collapseTwo\" aria-expanded=\"false\" aria-controls=\"collapseTwo\">\r\n\t\t\t\t\t\t\t2. How can I place an order?\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</h2>\r\n\t\t\t\t\t<div id=\"collapseTwo\" class=\"accordion-collapse collapse\" aria-labelledby=\"headingTwo\"\r\n\t\t\t\t\t\tdata-bs-parent=\"#faqAccordion\">\r\n\t\t\t\t\t\t<div class=\"accordion-body\">\r\n\t\t\t\t\t\t\tPlacing an order on Flipkart is easy! Once you've found the product you want to buy, click\r\n\t\t\t\t\t\t\ton it to view details and then click on the \"Buy Now\" or \"Add to Cart\" button. Follow the\r\n\t\t\t\t\t\t\tsteps to complete your order.\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"accordion-item\">\r\n\t\t\t\t\t<h2 class=\"accordion-header\" id=\"headingThree\">\r\n\t\t\t\t\t\t<button class=\"accordion-button collapsed\" type=\"button\" data-bs-toggle=\"collapse\"\r\n\t\t\t\t\t\t\tdata-bs-target=\"#collapseThree\" aria-expanded=\"false\" aria-controls=\"collapseThree\">\r\n\t\t\t\t\t\t\t3. What payment options are available?\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</h2>\r\n\t\t\t\t\t<div id=\"collapseThree\" class=\"accordion-collapse collapse\" aria-labelledby=\"headingThree\"\r\n\t\t\t\t\t\tdata-bs-parent=\"#faqAccordion\">\r\n\t\t\t\t\t\t<div class=\"accordion-body\">\r\n\t\t\t\t\t\t\tFlipkart offers various payment options including credit/debit cards, net banking, UPI, EMI,\r\n\t\t\t\t\t\t\tand Cash on Delivery (COD) for eligible orders.\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"accordion-item\">\r\n\t\t\t\t\t<h2 class=\"accordion-header\" id=\"headingFour\">\r\n\t\t\t\t\t\t<button class=\"accordion-button collapsed\" type=\"button\" data-bs-toggle=\"collapse\"\r\n\t\t\t\t\t\t\tdata-bs-target=\"#collapseFour\" aria-expanded=\"false\" aria-controls=\"collapseFour\">\r\n\t\t\t\t\t\t\t4. How can I track my order?\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</h2>\r\n\t\t\t\t\t<div id=\"collapseFour\" class=\"accordion-collapse collapse\" aria-labelledby=\"headingFour\"\r\n\t\t\t\t\t\tdata-bs-parent=\"#faqAccordion\">\r\n\t\t\t\t\t\t<div class=\"accordion-body\">\r\n\t\t\t\t\t\t\tYou can track your order by clicking on the \"Track Order\" link in the \"My Orders\" section of\r\n\t\t\t\t\t\t\tyour Flipkart account. You will receive regular updates on your order status via email and\r\n\t\t\t\t\t\t\tSMS.\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"accordion-item\">\r\n\t\t\t\t\t<h2 class=\"accordion-header\" id=\"heading5\">\r\n\t\t\t\t\t\t<button class=\"accordion-button collapsed\" type=\"button\" data-bs-toggle=\"collapse\"\r\n\t\t\t\t\t\t\tdata-bs-target=\"#collapse5\" aria-expanded=\"false\" aria-controls=\"collapse5\">\r\n\t\t\t\t\t\t\t5. What is Flipkart's return policy?\r\n\t\t\t\t\t\t</button>\r\n\t\t\t\t\t</h2>\r\n\t\t\t\t\t<div id=\"collapse5\" class=\"accordion-collapse collapse\" aria-labelledby=\"heading5\"\r\n\t\t\t\t\t\tdata-bs-parent=\"#faqAccordion\">\r\n\t\t\t\t\t\t<div class=\"accordion-body\">\r\n\t\t\t\t\t\t\tFlipkart has a hassle-free return policy. If you're not satisfied with your purchase, you\r\n\t\t\t\t\t\t\tcan initiate a return within the specified return period. Simply go to the \"My Orders\"\r\n\t\t\t\t\t\t\tsection, select the order you want to return, and follow the prompts.\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t<!-- faq end -->\r\n\t<!-- Contact Us -->\r\n<div class=\"main\">\r\n\r\n\t<div class=\"container\">\r\n\t\t<img src=\"rateus.png\" alt=\"rateus\">\r\n\t\t<div class=\"form-container\">\r\n\t\t\t<h1>Contact Us</h1>\r\n\t\t\t<form id=\"contact-form\">\r\n\t\t\t\t<!-- <label for=\"name\">Name:</label> -->\r\n\t\t\t\t<input type=\"text\" id=\"name\" name=\"name\" required placeholder=\"Name:\">\r\n\t\r\n\t\t\t\t<!-- <label for=\"email\">Email:</label> -->\r\n\t\t\t\t<input type=\"email\" id=\"email\" name=\"email\" required placeholder=\"Email:\">\r\n\t\r\n\t\t\t\t<!-- <label for=\"comment\">Comment:</label> -->\r\n\t\t\t\t<textarea id=\"comment\" name=\"feedback\" required placeholder=\"Comment:\"></textarea>\r\n\t\r\n\t\t\t\t\r\n\t\t\t\t<p id=\"thank-you-message\" style=\"color: white; display: none;\">Thank you !!<br>We will connect soon.</p>\r\n\t\t\t</form>\r\n\t\t\t<button onclick=\"handleSubmit()\" id=\"button\">Submit</button>\r\n\t\t\t</div>\r\n\t\t\t</div>  \r\n</div>\r\n\t<!-- go to top button -->\r\n\t<button id=\"goToTopBtn\" class=\"hidden\"><i class=\"fas fa-chevron-up\"></i></button>\r\n\t<!-- footer fetch to components : components/footer/footer.html -->\r\n\t<footer id=\"footer\" style=\"background-color: #292d33;\"></footer>\r\n\r\n\t<!-- voiceflow.chat script -->\r\n\t<script type=\"text/javascript\">\r\n\t\t(function (d, t) {\r\n\t\t\tvar v = d.createElement(t), s = d.getElementsByTagName(t)[0];\r\n\t\t\tv.onload = function () {\r\n\t\t\t\twindow.voiceflow.chat.load({\r\n\t\t\t\t\tverify: { projectID: '6647471456cab012ae016d07' },\r\n\t\t\t\t\turl: 'https://general-runtime.voiceflow.com',\r\n\t\t\t\t\tversionID: 'production'\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t\tv.src = \"https://cdn.voiceflow.com/widget/bundle.mjs\"; v.type = \"text/javascript\"; s.parentNode.insertBefore(v, s);\r\n\t\t})(document, 'script');\r\n\t</script>\r\n\r\n\t<script src=\"js/bootstrap.bundle.min.js\"></script>\r\n\t<script src=\"js/homeHeader.js\"></script>\r\n\t<script src=\"js/categoryjs.js\"></script>\r\n\t<script src=\"js/searchIndexProducts.js\"></script>\r\n\t<script src=\"js/fetchProductOfIndex.js\"></script>\r\n\t<script src=\"js/index.js\"></script>\r\n\t<script type=\"text/javascript\"\r\n\tsrc=\"https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js\">\r\n</script>\r\n\t<script src=\"js/contactus.js\"></script>\r\n\t\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "helpcentre/helpcentre.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n}\n\nheader {\n    background: linear-gradient(to right, #ffe97c, #51b4e6bf);\n}\n\nsection {\n    padding: 60px 0;\n}\n\nfooter {\n    background: #343a40;\n    color: #fff;\n}\n\nfooter p {\n    margin: 0;\n}\n\n.list-group-item {\n    cursor: pointer;\n}\n\n.btn-link {\n    color: #2874f0;\n}\n\n.btn-link:hover {\n    text-decoration: none;\n    color: #0056b3;\n}\n\n.card-header {\n    background-color: #f8f9fa;\n}\n\n.card-header h5 {\n    margin: 0;\n}\n\n.flipkart-logo {\n    display: block;\n    margin: -24px auto;\n    max-width: 400px;\n}\n.card-header button.btn-link {\n    color: #000000; /* Setting the question color to black */\n}\n.heading {\n    color: rgb(13, 58, 156); /* Setting the heading background color to blue */\n}"
  },
  {
    "path": "helpcentre/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Flipkart 24x7 Customer Care</title>\n    <link rel=\"shortcut icon\" href=\"../img/flipkart_lite.png\" type=\"image/x-icon\">\n    <link href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"helpcentre.css\">\n</head>\n<body>\n\n<nav class=\"navbar navbar-expand-lg navbar-dark bg-dark\">\n    <a class=\"navbar-brand\" href=\"../\">Flipkart</a>\n    <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarNav\" aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n        <span class=\"navbar-toggler-icon\"></span>\n    </button>\n    <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n        <ul class=\"navbar-nav ml-auto\">\n            <li class=\"nav-item active\">\n                <a class=\"nav-link\" href=\"../\">Home</a>\n            </li>\n            <li class=\"nav-item\">\n                <a class=\"nav-link\" href=\"../account/home_account.html\">My Profile</a>\n            </li>\n            <li class=\"nav-item\">\n                <a class=\"nav-link\" href=\"../account/orders.html\">Orders</a>\n            </li>\n            <li class=\"nav-item\">\n                <a class=\"nav-link\" href=\"../account/rewards.html\">Rewards</a>\n            </li>\n        </ul>\n    </div>\n</nav>\n\n<header class=\"bg-primary text-center py-5 heading\">\n    <h1>Welcome to Flipkart 24x7 Customer Care</h1>\n    <p>We are here to assist you round the clock</p>\n</header>\n\n<section class=\"container my-5\">\n    <div class=\"row\">\n        <div class=\"col-md-6\">\n            <h2 style=\"color: #000000;\">Contact Us</h2>\n            <p>If you have any queries or issues, feel free to contact us anytime. We are available 24x7 to assist you with your needs.</p>\n            <ul class=\"list-unstyled\">\n                <li><strong>Phone:</strong> 1800 202 9898</li>\n                <li><strong>Email:</strong> support@flipkart.com</li>\n                <li><strong>Live Chat:</strong> Available 24x7</li>\n            </ul>\n            <img src=\"../img/flipkart_lite.png\" height=\"255px\" alt=\"Flipkart Logo\" class=\"flipkart-logo\">\n        </div>\n        <div class=\"col-md-6\">\n            <h2 style=\"color: #000000;\">Frequently Asked Questions</h2>\n            <div class=\"accordion\" id=\"faqAccordion\">\n                <div class=\"card\">\n                    <div class=\"card-header\" id=\"faqHeading1\">\n                        <h5 class=\"mb-0\">\n                            <button class=\"btn btn-link\" type=\"button\" data-toggle=\"collapse\" data-target=\"#faq1\" aria-expanded=\"true\" aria-controls=\"faq1\">\n                                How do I track my order?\n                            </button>\n                        </h5>\n                    </div>\n                    <div id=\"faq1\" class=\"collapse show\" aria-labelledby=\"faqHeading1\" data-parent=\"#faqAccordion\">\n                        <div class=\"card-body\">\n                            You can track your order by logging into your Flipkart account and navigating to the 'My Orders' section.\n                        </div>\n                    </div>\n                </div>\n                <div class=\"card\">\n                    <div class=\"card-header\" id=\"faqHeading2\">\n                        <h5 class=\"mb-0\">\n                            <button class=\"btn btn-link collapsed\" type=\"button\" data-toggle=\"collapse\" data-target=\"#faq2\" aria-expanded=\"false\" aria-controls=\"faq2\">\n                                What is the return policy?\n                            </button>\n                        </h5>\n                    </div>\n                    <div id=\"faq2\" class=\"collapse\" aria-labelledby=\"faqHeading2\" data-parent=\"#faqAccordion\">\n                        <div class=\"card-body\">\n                            Our return policy allows you to return products within 30 days of delivery. Please refer to our return policy page for more details.\n                        </div>\n                    </div>\n                </div>\n                <div class=\"card\">\n                    <div class=\"card-header\" id=\"faqHeading3\">\n                        <h5 class=\"mb-0\">\n                            <button class=\"btn btn-link collapsed\" type=\"button\" data-toggle=\"collapse\" data-target=\"#faq3\" aria-expanded=\"false\" aria-controls=\"faq3\">\n                                How do I cancel my order?\n                            </button>\n                        </h5>\n                    </div>\n                    <div id=\"faq3\" class=\"collapse\" aria-labelledby=\"faqHeading3\" data-parent=\"#faqAccordion\">\n                        <div class=\"card-body\">\n                            You can cancel your order from the 'My Orders' section in your account. Select the order you wish to cancel and click on the 'Cancel' button.\n                        </div>\n                    </div>\n                </div>\n                <div class=\"card\">\n                    <div class=\"card-header\" id=\"faqHeading4\">\n                        <h5 class=\"mb-0\">\n                            <button class=\"btn btn-link collapsed\" type=\"button\" data-toggle=\"collapse\" data-target=\"#faq4\" aria-expanded=\"false\" aria-controls=\"faq4\">\n                            How do I change my shipping address?\n                            </button>\n                        </h5>\n                    </div>\n                    <div id=\"faq4\" class=\"collapse\" aria-labelledby=\"faqHeading4\" data-parent=\"#faqAccordion\">\n                        <div class=\"card-body\">\n                            You can change your shipping address during the checkout process or update your address book in your account settings.\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n    </div>\n</section>\n\n<section class=\"bg-light py-5\">\n    <div class=\"container text-center\">\n        <h2>Need More Help?</h2>\n        <p>Our customer care representatives are always ready to assist you. Click the button below to start a live chat.</p>\n        <button class=\"btn btn-primary btn-lg\">Start Live Chat</button>\n    </div>\n</section>\n\n<footer class=\"bg-dark text-white text-center py-3\">\n    <p>&copy; 2024 Flipkart. All rights reserved.</p>\n</footer>\n\n\n<script src=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js\"></script>\n<script src=\"https://code.jquery.com/jquery-3.5.1.slim.min.js\"></script>\n<script src=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js\"></script>\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\r\n    <title>Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More.\r\n        Best Offers!</title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/bootstrap.min.css\">\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\r\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\r\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\r\n    <link rel=\"stylesheet\" href=\"css/homeHeader.css\">\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/index.css\">\r\n    <link rel=\"stylesheet\" href=\"css/footer.css\">\r\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css\" rel=\"stylesheet\" />\r\n    <link href=\"css/contactus.css\" rel=\"stylesheet\">\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\r\n    <title>Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More.\r\n        Best Offers!</title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/bootstrap.min.css\">\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\r\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\r\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\r\n    <link rel=\"stylesheet\" href=\"css/homeHeader.css\">\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/index.css\">\r\n    <link rel=\"stylesheet\" href=\"css/footer.css\">\r\n\r\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css\" rel=\"stylesheet\" />\r\n\r\n\r\n    <link href=\"css/contactus.css\" rel=\"stylesheet\">\r\n\r\n    <style>\r\n           body {\r\n            font-family: Arial, sans-serif;\r\n            background-color: #f8f9fa;\r\n            color: #4a4a4a;\r\n            margin: 0;\r\n            padding: 0;\r\n        }\r\n        .container {\r\n            max-width: 1200px;\r\n            margin: 0 auto;\r\n            padding: 1rem;\r\n        }\r\n        .flex {\r\n            display: flex;\r\n        }\r\n        .flex-wrap {\r\n            flex-wrap: wrap;\r\n        }\r\n        .flex-col {\r\n            flex-direction: column;\r\n        }\r\n        .items-center {\r\n            align-items: center;\r\n        }\r\n        .justify-center {\r\n            justify-content: center;\r\n        }\r\n        .relative {\r\n            position: relative;\r\n        }\r\n        .w-6 {\r\n            width: 1.5rem;\r\n        }\r\n        .h-6 {\r\n            height: 1.5rem;\r\n        }\r\n        .h-full {\r\n            height: 100%;\r\n        }\r\n        .w-full {\r\n            width: 100%;\r\n        }\r\n        .mt-10 {\r\n            margin-top: 2.5rem;\r\n        }\r\n        .pt-10 {\r\n            padding-top: 2.5rem;\r\n        }\r\n        .pb-10 {\r\n            padding-bottom: 2.5rem;\r\n        }\r\n        .pb-20 {\r\n            padding-bottom: 5rem;\r\n        }\r\n        .rounded-full {\r\n            border-radius: 50%;\r\n        }\r\n        .bg-gray-200 {\r\n            background-color: #e5e5e5;\r\n        }\r\n        .bg-indigo-500 {\r\n            background-color: #6366f1;\r\n        }\r\n        .bg-indigo-100 {\r\n            background-color: #ebf4ff;\r\n        }\r\n        .text-white {\r\n            color: #ffffff;\r\n        }\r\n        .text-gray-600 {\r\n            color: #718096;\r\n        }\r\n        .text-gray-900 {\r\n            color: #1a202c;\r\n        }\r\n        .title-font {\r\n            font-weight: 600;\r\n        }\r\n        .text-sm {\r\n            font-size: 0.875rem;\r\n        }\r\n        .text-xl {\r\n            font-size: 1.25rem;\r\n        }\r\n        .leading-relaxed {\r\n            line-height: 1.625;\r\n        }\r\n        .mb-1 {\r\n            margin-bottom: 0.25rem;\r\n        }\r\n        .md-w-2-3 {\r\n            width: 66.666667%;\r\n        }\r\n        .md-pl-8 {\r\n            padding-left: 2rem;\r\n        }\r\n        .pl-6 {\r\n            padding-left: 1.5rem;\r\n        }\r\n        .sm-items-center {\r\n            align-items: center;\r\n        }\r\n        .sm-mt-0 {\r\n            margin-top: 0;\r\n        }\r\n        .sm-pl-6 {\r\n            padding-left: 1.5rem;\r\n        }\r\n        .pointer-events-none {\r\n            pointer-events: none;\r\n        }\r\n        html {\r\n            scroll-behavior: smooth;\r\n        }\r\n\r\n        body {\r\n            margin: 0;\r\n            padding: 0;\r\n        }\r\n\r\n        .scrollToTop {\r\n            height: 40px;\r\n            width: 40px;\r\n            background: hsl(217, 87%, 45%);\r\n            display: none;\r\n            justify-content: center;\r\n            align-items: center;\r\n            border-radius: 50%;\r\n            color: white;\r\n            cursor: pointer;\r\n            position: fixed;\r\n            bottom: 45px;\r\n            right: 50%;\r\n            left: 50%;\r\n        }\r\n            .inner {\r\n                height: 85%;\r\n                width: 85%;\r\n                background: black;\r\n                display: flex;\r\n                justify-content: center;\r\n                align-items: center;\r\n                border-radius: 50%;\r\n            }\r\n\r\n        .r4vIwl{\r\n            padding: 8px 10px 10px 0;\r\n    width: 100%;\r\n    color: #000;\r\n    font-size: inherit;\r\n    background: #fff;\r\n    border: none;\r\n    border-bottom: 1px solid #e0e0e0;\r\n}\r\n        \r\n\r\n        /* } */\r\n\r\n    #progress-container {\r\n    position: fixed ;\r\n    top: 0px;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 15px;\r\n    z-index: 99990;\r\n    /* background: #f3f3f3; */\r\n}\r\n\r\n#progress-bar {\r\n    height: 53%;\r\n    width: 0;\r\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\r\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\r\n    transition: width 0.09s ease-in-out;\r\n    border-radius: 10px;\r\n}\r\n\r\n@media screen and (max-width: 600px) {\r\n    .form-container button#button {\r\n        margin-left: 0 !important;\r\n    }\r\n    .main {\r\n        margin-left: 0;\r\n        width: 100%;\r\n    }\r\n}\r\n    </style>\r\n\r\n\r\n</head>\r\n\r\n<body>\r\n    <!-- loader -->\r\n    <!-- <div id=\"loader\">\r\n\t\t<div class=\"loader-spinner\"></div>\r\n\t\t<img src=\"img/flipkardLoader.png\" height=\"50px\" alt=\"\">\r\n\t</div> -->\r\n    <div class=\"loader-container\">\r\n        <div class=\"loader-wrapper\">\r\n            <div class=\"loader\"></div>\r\n            <div class=\"logo\" style=\"background-image: url('img/flipkart_lite.png');\"></div>\r\n        </div>\r\n    </div>\r\n    <!-- loader end -->\r\n    <div id=\"progress-container\">\r\n        <div id=\"progress-bar\"></div>\r\n      </div>\r\n\r\n      <script>\r\n            \r\n        window.addEventListener('scroll', function() {\r\n            const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\r\n            const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n            const scrolled = (winScroll / height) * 100;\r\n            document.getElementById('progress-bar').style.width = scrolled + '%';\r\n        });\r\n        </script>\r\n      \r\n  \r\n    <div id=\"divA\" class=\"popup-container\">\r\n        <div class=\"signupin\">\r\n            <div class=\"leftpanal\">\r\n                <h4>Login</h4>\r\n                <p>Get access to your Orders, Wishlist and Recommendations</p>\r\n            </div>\r\n            <div class=\"rightSignuppanal\">\r\n                <span class=\"close-btn\" id=\"close-btn\">&times;</span>\r\n                <form autocomplete=\"on\">\r\n                    <div class=\"I-qZ4M vLRlQb\">\r\n                        <input autocomplete=\"off\" id=\"inputsin\" type=\"text\" class=\"r4vIwl BV+Dqf\" value=\"\"\r\n                            required=\"\" />\r\n                        <label class=\"Gq-80a\" id=\"inputsin\"><span>Enter Email/Mobile </span></label>\r\n                        <div class=\"underline\"></div>\r\n                    </div>\r\n                    <div class=\"EpHS0A\">By continuing, you agree to Flipkart's\r\n                        <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/terms/\">Terms of Use</a> and\r\n                        <a class=\"c9RDXR\" target=\"_blank\" href=\"../pages/privacypolicy/index.html\">Privacy Policy</a>.\r\n                    </div>\r\n                    <div class=\"LSOAQH mt-2\">\r\n                        <button class=\"QqFHMw twnTnD _7Pd1Fp\">Request OTP</button>\r\n                    </div>\r\n                    <div class=\"ZJ3AS1 d-flex justify-content-center mt-4\">\r\n\r\n                        <a class=\"azBkHf\" href=\"account/login-signup.html\" id=\"buttonA\">New to Flipkart? Create an account</a>\r\n\r\n                    </div>\r\n                </form>\r\n            </div>\r\n        </div>\r\n    </div>\r\n\r\n    <script>\r\n        document.addEventListener(\"DOMContentLoaded\", function () {\r\n            // Show the popup when the page loads\r\n            const popupContainer = document.getElementById(\"divA\");\r\n            popupContainer.style.display = \"flex\";\r\n\r\n            // Hide the popup when the close button is clicked\r\n            const closeBtn = document.getElementById(\"close-btn\");\r\n            closeBtn.addEventListener(\"click\", function () {\r\n                popupContainer.style.display = \"none\";\r\n            });\r\n\r\n            // Prevent form submission from reloading the page and close the popup\r\n            const form = document.querySelector(\"form\");\r\n            form.addEventListener(\"submit\", function (event) {\r\n                event.preventDefault();\r\n                // Your form submission logic here, e.g., AJAX call\r\n                console.log(\"Form submitted\");\r\n                // Close the popup\r\n                popupContainer.style.display = \"none\";\r\n            });\r\n        });\r\n    </script>\r\n    <style>\r\n        #divA {\r\n            display: none;\r\n            /* Initially hidden */\r\n            position: fixed;\r\n            top: 0;\r\n            left: 0;\r\n            width: 100%;\r\n            height: 100%;\r\n            background-color: rgba(0, 0, 0, 0.5);\r\n            justify-content: center;\r\n            align-items: center;\r\n            z-index: 9999;\r\n            /* Ensure the popup is above other content */\r\n        }\r\n\r\n        .signupin {\r\n            /* background: #f1f3f6; */\r\n            display: flex;\r\n            justify-content: center;\r\n            align-items: center;\r\n            padding: 30px;\r\n            position: relative;\r\n        }\r\n\r\n        .signupin .leftpanal {\r\n            padding: 20px;\r\n            background-color: #2874F0;\r\n            color: #fff;\r\n            background-image: url(../img/login_img_bg.png);\r\n            background-position: center 85%;\r\n            background-repeat: no-repeat;\r\n            height: 400px;\r\n            width: 20vw;\r\n        }\r\n        .signupin .leftpanal p{\r\n            color:rgb(220, 219, 219);\r\n        }\r\n        .signupin .rightSignuppanal {\r\n            padding: 20px;\r\n            background: #fff;\r\n            height: 400px;\r\n            width: 30vw;\r\n            display: flex;\r\n            align-items: center;\r\n            justify-content: center;\r\n            position: relative;\r\n        }\r\n\r\n        ._7Pd1Fp {\r\n            justify-self: flex-start;\r\n            background: #fb641b;\r\n            width: 100%;\r\n            padding: 5px;\r\n            box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);\r\n            border: none;\r\n            color: #fff;\r\n        }\r\n\r\n        .EpHS0A {\r\n            font-size: 11px;\r\n        }\r\n\r\n        .I-qZ4M  {\r\n            position: relative;\r\n    margin-bottom: 34px;\r\n    font-size: 16px;\r\n        }\r\n        .Gq-80a {\r\n            color: #878787;\r\n            font-size: 16px;\r\n            font-weight: 400;\r\n            position: absolute;\r\n            pointer-events: none;\r\n            left: 0;\r\n            top: 0;\r\n            -webkit-transform: translateY(10px);\r\n            transform: translateY(10px);\r\n            transition: -webkit-transform .2s ease;\r\n            transition: transform .2s ease;\r\n            transition: transform .2s ease, -webkit-transform .2s ease;\r\n            will-change: transform;\r\n           -webkit-transform-origin: left;\r\n            transform-origin: left;\r\n        }\r\n\r\n        .Gq-80a:focus{\r\n            border-bottom: 2px solid #2874F0;\r\n        }\r\n\r\n        .I-qZ4M .vLRlQb input[type=\"text\"] {\r\n            font-size: 20px;\r\n            width: 100%;\r\n            border: none;\r\n            border-bottom: 2px solid #ccc;\r\n            padding: 5px 0;\r\n            background-color: transparent;\r\n            outline: none;\r\n        }\r\n\r\n        .I-qZ4M .vLRlQb .label {\r\n            position: absolute;\r\n            top: 12px;\r\n            left: 0;\r\n            color: #ccc;\r\n            transition: all 0.3s ease;\r\n            pointer-events: none;\r\n        }\r\n\r\n        .I-qZ4M .vLRlQb input[type=\"text\"]:focus~.label,\r\n        .I-qZ4M .vLRlQb input[type=\"text\"]:valid~.label {\r\n            top: -20px;\r\n            font-size: 16px;\r\n            color: #333;\r\n        }\r\n\r\n        .I-qZ4M .vLRlQb .underline {\r\n            position: absolute;\r\n            bottom: 0;\r\n            left: 0;\r\n            height: 2px;\r\n            width: 100%;\r\n            background-color: #333;\r\n            transform: scaleX(0);\r\n            transition: all 0.3s ease;\r\n        }\r\n\r\n        .I-qZ4M .vLRlQb input[type=\"text\"]:focus~.underline,\r\n        .I-qZ4M .vLRlQb input[type=\"text\"]:valid~.underline {\r\n            transform: scaleX(1);\r\n            background-color: #2874F0;\r\n        }\r\n\r\n        #seletcYourChoice-product .products {\r\n            margin: 0 auto;\r\n            padding: 5px;\r\n            transition: transform 0.3s ease-in-out;\r\n        }\r\n\r\n        #seletcYourChoice-product .products:hover {\r\n            transform: scale(1.1);\r\n            opacity: 0.82;\r\n        }\r\n\r\n        /* Hover effect for \"Best Deal for You\" section */\r\n#best-deal-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#best-deal-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Shop Now Under 500 Rs\" section */\r\n#shopUnder500-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#shopUnder500-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Top Selection\" section */\r\n#top-selection-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#top-selection-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Mobile Phone Under 15000 Rs\" section */\r\n#mobileUnder15000-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#mobileUnder15000-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Suggested for You\" section */\r\n#rendom-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#rendom-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Best of Electronics\" section */\r\n#bestOfElectronics-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#bestOfElectronics-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Best Deal for You\" section */\r\n#best-deal-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#best-deal-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Shop Now Under 500 Rs\" section */\r\n#shopUnder500-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#shopUnder500-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Top Selection\" section */\r\n#top-selection-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#top-selection-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Select Your Choice\" section */\r\n#seletcYourChoice-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#seletcYourChoice-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Mobile Phone Under 15000 Rs\" section */\r\n#mobileUnder15000-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#mobileUnder15000-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Suggested for You\" section */\r\n#rendom-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#rendom-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for \"Best of Electronics\" section */\r\n#bestOfElectronics-product .products {\r\n    margin: 0 auto;\r\n    padding: 5px;\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#bestOfElectronics-product .products:hover {\r\n    transform: scale(1.1);\r\n    opacity: 0.82;\r\n}\r\n\r\n/* Hover effect for FAQ section */\r\n.faq-card {\r\n  background: white;\r\n  border-radius: 10px;\r\n  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\r\n  padding: 10px;\r\n  text-align: left;\r\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\r\n}\r\n\r\n.faq-card:hover {\r\n  transform: translateY(-5px);\r\n  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);\r\n}\r\n\r\n\r\n/* Hover effect for \"Search Bar\"  */\r\n#searchbar input {\r\n    transition: border-color 0.3s ease-in-out;\r\n}\r\n\r\n#searchbar input:focus {\r\n    border-color: #2874F0; /* Change the border color on focus */\r\n}\r\n\r\n/* Hover effect for \"Account Dropdown\"  */\r\n#navbarDropdown .nav-link img {\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#navbarDropdown .nav-link img:hover {\r\n    transform: scale(1.1);\r\n}\r\n\r\n/* Hover effect for \"Cart Icon\"  */\r\n.cartLogoandname img {\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n.cartLogoandname img:hover {\r\n    transform: scale(1.1);\r\n}\r\n\r\n/* Hover effect for \"Become a Seller Icon\"  */\r\n.navItem4 img {\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n.navItem4 img:hover {\r\n    transform: scale(1.1);\r\n}\r\n\r\n/* Hover effect for \"More Links Dropdown\"  */\r\n#moreLinksDropdown .nav-link img {\r\n    transition: transform 0.3s ease-in-out;\r\n}\r\n\r\n#moreLinksDropdown .nav-link img:hover {\r\n    transform: scale(1.1);\r\n}\r\n\r\n        @media screen and (max-width: 1200px) {\r\n            .signupin .leftpanal {\r\n                width: 30vw;\r\n            }\r\n\r\n            .signupin .rightSignuppanal {\r\n                width: 40vw;\r\n            }\r\n        }\r\n\r\n        @media screen and (max-width: 1000px) {\r\n            .signupin .leftpanal {\r\n                width: 35vw;\r\n                padding: 15px;\r\n            }\r\n\r\n            .signupin .rightSignuppanal {\r\n                width: 45vw;\r\n            }\r\n        }\r\n\r\n        @media screen and (max-width: 800px) {\r\n            .signupin .leftpanal {\r\n                width: 43vw;\r\n                padding: 5px;\r\n            }\r\n\r\n            .signupin .rightSignuppanal {\r\n                width: 56vw;\r\n            }\r\n        }\r\n\r\n        .close-btn {\r\n            position: absolute;\r\n            top: 10px;\r\n            right: 10px;\r\n            font-size: 24px;\r\n            cursor: pointer;\r\n        }\r\n        .temporary-login-btn{\r\n            color:white;\r\n            text-decoration:none;\r\n            padding-right:20px;\r\n            padding-left:20px;\r\n            padding-bottom:5px;\r\n            background: #2a55e5;\r\n            margin-left:950px;\r\n            z-index:1000!important;\r\n       }\r\n    </style>\r\n\r\n\r\n    <!--Header start  -->\r\n    <!--Header start  -->\r\n    <header id=\"homeHeader\">\r\n        <nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\r\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\r\n                <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\r\n                    width=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\r\n            </a>\r\n            <div id=\"navbarNav_\" style=\"display: flex; align-items: center;\">\r\n                <ul class=\"navbar-nav\">\r\n                    <li class=\"nav-item navItem1\">\r\n                        <div id=\"searchbar\" class=\"navtab\">\r\n                            <span id=\"searchButton\" class=\"search-icon\">\r\n                                <svg width=\"30\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\r\n                                    xmlns=\"http://www.w3.org/2000/svg\">\r\n                                    <title>Search Icon</title>\r\n                                    <path\r\n                                        d=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\r\n                                        stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\r\n                                        stroke-linejoin=\"round\"></path>\r\n                                    <path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1\" stroke-linecap=\"round\"\r\n                                        stroke-linejoin=\"round\"></path>\r\n                                </svg>\r\n                            </span>\r\n                            <span class=\"flex-grow\">\r\n                                <input id=\"input_data\" class=\"searchbar\" type=\"text\"\r\n                                    placeholder=\"Search for Products, Brands and More\" />\r\n                            </span>\r\n                            <div id=\"autocompleteResults\" class=\"autocom-box\">\r\n                                <!-- Autocomplete results here -->\r\n                            </div>\r\n                        </div>\r\n                    </li>\r\n                </ul>\r\n                <ul class=\"navbar-nav ml-auto\">\r\n                    <li class=\"nav-item dropdown\" id=\"navbarDropdown\">\r\n                        <a class=\"nav-link acnavdd ml-3 mr-5\" href=\"#\" role=\"button\" data-bs-toggle=\"dropdown\"\r\n                            aria-expanded=\"false\">\r\n                            <img src=\"img/svg/profile-.svg\" alt=\"Profile\" href=\"account/login-signup.html\"\r\n                                style=\"width: 20px; height: 20px; margin-right: 5px; margin-left: 10px;\" />\r\n                            <span class=\"navname\" style=\"font-size: 14px;\">Login <i\r\n                                    class=\"bi bi-chevron-down\"></i></span>\r\n                        </a>\r\n                        <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0;\">\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/home_account.html\"><img width=\"20\"\r\n                                    src=\"img/svg/profile-.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> My Profile\r\n                            </a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"login/login.html\"><img width=\"20\" src=\"img/svg/profile-.svg\"\r\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Log into account </a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/login-signup.html\"><img width=\"20\"\r\n                                    src=\"img/svg/profile-.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> Sign In</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"plus/\"><img width=\"20\" src=\"img/svg/fkplus-+.svg\"\r\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Flipkart Plus Zone</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/orders.html\"><img width=\"20\" src=\"img/svg/orders.svg\"\r\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Orders</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"wishlist/\"><img width=\"20\" src=\"img/svg/wishList.svg\"\r\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Wishlist</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/notifications.html\"><img width=\"20\"\r\n                                    src=\"img/svg/notifications.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\">\r\n                                Notifications</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/rewards.html\"><img width=\"20\"\r\n                                    src=\"img/svg/rewards.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> Rewards</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"./the-gift-card-store/index.html\"><img width=\"20\"\r\n                                    src=\"img/svg/giftCard.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> Gift Cards</a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/contact.html\"><img width=\"20\" height=\"10\"\r\n                                    src=\"https://pngimg.com/uploads/phone/phone_PNG48988.png\" alt=\"flipKart\"\r\n                                    style=\"margin-right: 5px;\"> Contact Us </a>\r\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/feedback.html\"><i class=\"bi bi-chat-dots\"></i> My\r\n                                Feedback </a>\r\n                        </div>\r\n                    </li>\r\n\r\n                    <li class=\"nav-item\">\r\n                        <a class=\"nav-link mr-5\" href=\"viewcart/\" style=\"font-size: 14px; margin-left: 20px; font-weight: 500;\">\r\n                            <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\"\r\n                                style=\"width: 20px; height: 20px; margin-right: 5px;\" /> Cart\r\n                        </a>\r\n                    </li>\r\n                    <li class=\"nav-item\">\r\n                        <a class=\"nav-link\" href=\"./pages/Sell_Online/sell_online.html\" style=\"font-size: 14px;\">\r\n                            <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\r\n                                style=\"width: 20px; height: 20px; margin-right: 5px;\" /> Become a Seller\r\n<!--                         <a class=\"nav-link mr-5\" href=\"sell-online/\" style=\"font-size: 14px; margin-left: 30px; font-weight: 500;\">\r\n                            <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\" style=\"width: 20px; height: 20px; margin-right: 5px;\" /> Become a Seller\r\n                        </a> -->\r\n                    </li>\r\n                    <li class=\"nav-item dropdown mr-5\" style=\"margin-left: 50px;\" id=\"moreLinksDropdown\">\r\n                        <a href=\"#\"><i class=\"fas fa-ellipsis-v\"></i></a>\r\n                        <div class=\"dropdown-menu\">\r\n\r\n                            <a href=\"https://www.flipkart.com/communication-preferences/push?t=all\"><i class=\"fa-regular fa-bell\"></i> &nbsp; Notification Preferences</a>\r\n                            <a href=\"https://www.flipkart.com/helpcentre\"><i class=\"fa-solid fa-headset\"></i>&nbsp; 24 X 7 customer service</a>\r\n                            <a href=\"https://advertising.flipkart.com/login?returl=/?otracker=ch_vn_advertise_header\"><i class=\"fas fa-arrow-up\"></i>&nbsp; Advertise</a>\r\n                            <a href=\"https://www.flipkart.com/mobile-apps?otracker=ch_vn_mobile_apps\"><i class=\"fa-solid fa-download\"></i> &nbsp; Download App</a>\r\n\r\n\r\n                        </div>\r\n                    </li>\r\n                    <style>\r\n                        .nav-item .dropdown-menu a {\r\n                            color: black;\r\n                            padding: 6px 16px;\r\n                            text-decoration: none;\r\n                            display: block;\r\n                        }\r\n\r\n                        .nav-item .dropdown-menu a:hover {\r\n                            background-color: #f1f1f1;\r\n                        }\r\n\r\n                        .nav-item:hover .dropdown-menu {\r\n                            display: block;\r\n                        }\r\n\r\n                        .nav-item:hover{\r\n                            text-decoration: underline;\r\n                        }\r\n                    </style>\r\n\r\n                    <!-- <a class=\"nav-link nav-dd dropdown-toggle\" href=\"#\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\r\n   <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\" style=\"width: 20px; height: 20px; margin-right: 5px;\" /> More Links\r\n    </a> -->\r\n\r\n\r\n                    \r\n                    </li>\r\n\r\n                </ul>\r\n            </div>\r\n        </nav>\r\n    </header>\r\n    <!--Header end -->\r\n\r\n\r\n <!-- categorylist -->\r\n <div id=\"categorylist-wrapper\" class=\"container-fluid categorylist-wrapper\">\r\n    <ul id=\"categories\" class=\"categories\"></ul>\r\n</div>\r\n\r\n    <script>\r\n        document.addEventListener('DOMContentLoaded', function() {\r\n            const loginBtn = document.getElementById('temporary-login-btn');\r\n            loginBtn.style.display = 'block';\r\n            loginBtn.classList.add('shake'); \r\n    \r\n            loginBtn.addEventListener('click', function() {\r\n                window.location.href = '../account/login-signup.html'; \r\n            });\r\n    \r\n            setTimeout(function() {\r\n                loginBtn.style.display = 'none';\r\n            }, 30000);\r\n        });\r\n    </script>\r\n    <script src=\"https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js\"></script>\r\n    <script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js\"></script>\r\n \r\n   \r\n    \r\n    <!-- carousel start -->\r\n    <div id=\"default-carousel\" class=\"relative w-full\" data-carousel=\"slide\">\r\n        <!-- Carousel wrapper -->\r\n        <div class=\"relative h-56 overflow-hidden rounded-lg md:h-100\">\r\n            <!-- Item 1 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/14691d790ec410a9.jpg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n            <!-- Item 2 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/17a2c4ed00866b1a.jpg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n            <!-- Item 3 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/1f25201ced5d720d.jpg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n            <!-- Item 4 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/aa1b2bdcf519b468.jpg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n            <!-- Item 5 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/345037032e3daaaf.jpg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n            <!-- Item 6 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/3dc8f265914a1426.jpeg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n            <!-- Item 7 -->\r\n            <div class=\"hidden duration-700 ease-in-out\" data-carousel-item>\r\n                <img src=\"img/f09f551230626a04.jpg\"\r\n                    class=\"absolute block w-full -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2\" alt=\"...\">\r\n            </div>\r\n\r\n        </div>\r\n        <!-- Slider indicators -->\r\n        <div class=\"absolute z-30 flex -translate-x-1/2 bottom-5 left-1/2 space-x-3 rtl:space-x-reverse\">\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"true\" aria-label=\"Slide 1\"\r\n                data-carousel-slide-to=\"0\"></button>\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"false\" aria-label=\"Slide 2\"\r\n                data-carousel-slide-to=\"1\"></button>\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"false\" aria-label=\"Slide 3\"\r\n                data-carousel-slide-to=\"2\"></button>\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"false\" aria-label=\"Slide 4\"\r\n                data-carousel-slide-to=\"3\"></button>\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"false\" aria-label=\"Slide 5\"\r\n                data-carousel-slide-to=\"4\"></button>\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"false\" aria-label=\"Slide 5\"\r\n                data-carousel-slide-to=\"5\"></button>\r\n            <button type=\"button\" class=\"w-3 h-3 rounded-full\" aria-current=\"false\" aria-label=\"Slide 5\"\r\n                data-carousel-slide-to=\"6\"></button>\r\n\r\n        </div>\r\n        <!-- Slider controls -->\r\n        <button type=\"button\"\r\n            class=\"absolute top-0 start-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none\"\r\n            data-carousel-prev>\r\n            <span\r\n                class=\"inline-flex items-center justify-center w-10 h-10 rounded-full bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none\">\r\n                <svg class=\"w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180\" aria-hidden=\"true\"\r\n                    xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 6 10\">\r\n                    <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\r\n                        d=\"M5 1 1 5l4 4\" />\r\n                </svg>\r\n                <span class=\"sr-only\">Previous</span>\r\n            </span>\r\n        </button>\r\n        <button type=\"button\"\r\n            class=\"absolute top-0 end-0 z-30 flex items-center justify-center h-full px-4 cursor-pointer group focus:outline-none\"\r\n            data-carousel-next>\r\n            <span\r\n                class=\"inline-flex items-center justify-center w-10 h-10 rounded-full bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none\">\r\n                <svg class=\"w-4 h-4 text-white dark:text-gray-800 rtl:rotate-180\" aria-hidden=\"true\"\r\n                    xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 6 10\">\r\n                    <path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"\r\n                        d=\"m1 9 4-4-4-4\" />\r\n                </svg>\r\n                <span class=\"sr-only\">Next</span>\r\n            </span>\r\n        </button>\r\n    </div>\r\n   <!-- carousel end -->\r\n\r\n    <!-- bank card -->\r\n    <div class=\"container-fluid\">\r\n        <img src=\"img/sbi.webp\" class=\"banner\" />\r\n    </div>\r\n\t\r\n    <!-- offers -->\r\n    <img src=\"img/1a (1).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <img src=\"img/1a (2).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <img src=\"img/1a (3).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <img src=\"img/1a (4).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <section class=\"text-gray-600 body-font\">\r\n        <div class=\"container px-5 py-1 mx-auto flex flex-wrap\">\r\n            <!-- Step 1 -->\r\n            <div class=\"flex relative pt-10 pb-20 sm:items-center md:w-2/3 mx-auto\">\r\n                <div class=\"h-full w-6 absolute inset-0 flex items-center justify-center\">\r\n                    <div class=\"h-full w-1 bg-gray-200 pointer-events-none\"></div>\r\n                </div>\r\n                <div class=\"flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-indigo-500 text-white relative z-10 title-font font-medium text-sm\">1</div>\r\n                <div class=\"flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row\">\r\n                    <div class=\"flex-shrink-0 w-24 h-24 bg-indigo-100 text-indigo-500 rounded-full inline-flex items-center justify-center\">\r\n                        <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-12 h-12\" viewBox=\"0 0 24 24\">\r\n                            <path d=\"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z\"></path>\r\n                        </svg>\r\n                    </div>\r\n                    <div class=\"flex-grow sm:pl-6 mt-6 sm:mt-0\">\r\n                        <h2 class=\"font-medium title-font text-gray-900 mb-1 text-xl\">Product Discovery</h2>\r\n                        <p class=\"leading-relaxed\">Explore a wide range of products available on our platform. From electronics to fashion, find everything in one place.</p>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <!-- Step 2 -->\r\n            <div class=\"flex relative pb-20 sm:items-center md:w-2/3 mx-auto\">\r\n                <div class=\"h-full w-6 absolute inset-0 flex items-center justify-center\">\r\n                    <div class=\"h-full w-1 bg-gray-200 pointer-events-none\"></div>\r\n                </div>\r\n                <div class=\"flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-indigo-500 text-white relative z-10 title-font font-medium text-sm\">2</div>\r\n                <div class=\"flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row\">\r\n                    <div class=\"flex-shrink-0 w-24 h-24 bg-indigo-100 text-indigo-500 rounded-full inline-flex items-center justify-center\">\r\n                        <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-12 h-12\" viewBox=\"0 0 24 24\">\r\n                            <path d=\"M22 12h-4l-3 9L9 3l-3 9H2\"></path>\r\n                        </svg>\r\n                    </div>\r\n                    <div class=\"flex-grow sm:pl-6 mt-6 sm:mt-0\">\r\n                        <h2 class=\"font-medium title-font text-gray-900 mb-1 text-xl\">Add to Cart</h2>\r\n                        <p class=\"leading-relaxed\">Easily add products to your cart and review your selections. Our intuitive interface makes shopping a breeze.</p>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <!-- Step 3 -->\r\n            <div class=\"flex relative pb-20 sm:items-center md:w-2/3 mx-auto\">\r\n                <div class=\"h-full w-6 absolute inset-0 flex items-center justify-center\">\r\n                    <div class=\"h-full w-1 bg-gray-200 pointer-events-none\"></div>\r\n                </div>\r\n                <div class=\"flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-indigo-500 text-white relative z-10 title-font font-medium text-sm\">3</div>\r\n                <div class=\"flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row\">\r\n                    <div class=\"flex-shrink-0 w-24 h-24 bg-indigo-100 text-indigo-500 rounded-full inline-flex items-center justify-center\">\r\n                        <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-12 h-12\" viewBox=\"0 0 24 24\">\r\n                            <circle cx=\"12\" cy=\"5\" r=\"3\"></circle>\r\n                            <path d=\"M12 22V8M5 12H2a10 10 0 0020 0h-3\"></path>\r\n                        </svg>\r\n                    </div>\r\n                    <div class=\"flex-grow sm:pl-6 mt-6 sm:mt-0\">\r\n                        <h2 class=\"font-medium title-font text-gray-900 mb-1 text-xl\">Secure Checkout</h2>\r\n                        <p class=\"leading-relaxed\">Proceed to checkout with confidence. Our secure payment gateway ensures your information is safe.</p>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <!-- Step 4 -->\r\n            <div class=\"flex relative pb-10 sm:items-center md:w-2/3 mx-auto\">\r\n                <div class=\"h-full w-6 absolute inset-0 flex items-center justify-center\">\r\n                    <div class=\"h-full w-1 bg-gray-200 pointer-events-none\"></div>\r\n                </div>\r\n                <div class=\"flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-indigo-500 text-white relative z-10 title-font font-medium text-sm\">4</div>\r\n                <div class=\"flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row\">\r\n                    <div class=\"flex-shrink-0 w-24 h-24 bg-indigo-100 text-indigo-500 rounded-full inline-flex items-center justify-center\">\r\n                        <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-12 h-12\" viewBox=\"0 0 24 24\">\r\n                            <path d=\"M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2\"></path>\r\n                            <circle cx=\"12\" cy=\"7\" r=\"4\"></circle>\r\n                        </svg>\r\n                    </div>\r\n                    <div class=\"flex-grow sm:pl-6 mt-6 sm:mt-0\">\r\n                        <h2 class=\"font-medium title-font text-gray-900 mb-1 text-xl\">Fast Delivery</h2>\r\n                        <p class=\"leading-relaxed\">Enjoy fast and reliable delivery to your doorstep. Track your order and get updates in real-time.</p>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section>\r\n\r\n    <img src=\"img/1a (5).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <img src=\"img/1a (6).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <img src=\"img/1a (7).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n    <img src=\"img/1a (8).png\" alt=\"\" class=\"img-fluid\" width=\"100%\">\r\n\r\n\r\n    <!-- best of Electronics -->\r\n    <div class=\"containter-fluid bg-white\">\r\n        <div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Best of Electronics</h4>\r\n        </div>\r\n        <div class=\"container-fluid\">\r\n            <div class=\"row\">\r\n                <div class=\"col-md-10\">\r\n                    <div id=\"bestOfElectronics-product\" class=\"row m-1\"></div>\r\n                </div>\r\n                <div class=\"col-md-2\">\r\n                    <img src=\"img/flytecafd87e5.webp\" alt=\"image\" style=\"width: 100%; height: 100%; object-fit: contain\"\r\n                        class=\"mdHide\">\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n    <section class=\"bg-light py-5\">\r\n        <div class=\"container\">\r\n          <div class=\"text-center mb-5\">\r\n            <h1 class=\"display-4\">Exclusive Online Deals</h1>\r\n            <p class=\"lead text-muted\">Grab the latest electronics, fashion, and home essentials at unbeatable prices. Limited-time offers, hurry up!</p>\r\n            <div class=\"d-flex justify-content-center mt-3\">\r\n              <div class=\"bg-primary rounded-circle\" style=\"width: 4rem; height: 4px;\"></div>\r\n            </div>\r\n          </div>\r\n          <div class=\"row\">\r\n            <div class=\"col-md-4 mb-4\">\r\n              <div class=\"text-center\">\r\n                <div class=\"bg-light text-primary rounded-circle mb-4 d-flex align-items-center justify-content-center\" style=\"width: 5rem; height: 5rem;\">\r\n                  <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-50 h-50\" viewBox=\"0 0 24 24\">\r\n                    <path d=\"M22 12h-4l-3 9L9 3l-3 9H2\"></path>\r\n                  </svg>\r\n                </div>\r\n                <h2 class=\"h5 text-dark\">Top Electronics</h2>\r\n                <p class=\"text-muted\">Find the best deals on smartphones, laptops, and more. Get the latest gadgets at unbeatable prices.</p>\r\n                <a href=\"#\" class=\"text-primary\">Shop Now\r\n                  <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"ml-2\" style=\"width: 1rem; height: 1rem;\" viewBox=\"0 0 24 24\">\r\n                    <path d=\"M5 12h14M12 5l7 7-7 7\"></path>\r\n                  </svg>\r\n                </a>\r\n              </div>\r\n            </div>\r\n            <div class=\"col-md-4 mb-4\">\r\n              <div class=\"text-center\">\r\n                <div class=\"bg-light text-primary rounded-circle mb-4 d-flex align-items-center justify-content-center\" style=\"width: 5rem; height: 5rem;\">\r\n                  <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-50 h-50\" viewBox=\"0 0 24 24\">\r\n                    <circle cx=\"6\" cy=\"6\" r=\"3\"></circle>\r\n                    <circle cx=\"6\" cy=\"18\" r=\"3\"></circle>\r\n                    <path d=\"M20 4L8.12 15.88M14.47 14.48L20 20M8.12 8.12L12 12\"></path>\r\n                  </svg>\r\n                </div>\r\n                <h2 class=\"h5 text-dark\">Fashion Trends</h2>\r\n                <p class=\"text-muted\">Upgrade your wardrobe with the latest fashion styles. Explore our exclusive collections at amazing prices.</p>\r\n                <a href=\"#\" class=\"text-primary\">Discover More\r\n                  <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"ml-2\" style=\"width: 1rem; height: 1rem;\" viewBox=\"0 0 24 24\">\r\n                    <path d=\"M5 12h14M12 5l7 7-7 7\"></path>\r\n                  </svg>\r\n                </a>\r\n              </div>\r\n            </div>\r\n            <div class=\"col-md-4 mb-4\">\r\n              <div class=\"text-center\">\r\n                <div class=\"bg-light text-primary rounded-circle mb-4 d-flex align-items-center justify-content-center\" style=\"width: 5rem; height: 5rem;\">\r\n                  <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"w-50 h-50\" viewBox=\"0 0 24 24\">\r\n                    <path d=\"M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2\"></path>\r\n                    <circle cx=\"12\" cy=\"7\" r=\"4\"></circle>\r\n                  </svg>\r\n                </div>\r\n                <h2 class=\"h5 text-dark\">Home Essentials</h2>\r\n                <p class=\"text-muted\">From kitchen appliances to home decor, find everything you need to make your home a better place.</p>\r\n                <a href=\"#\" class=\"text-primary\">Shop Now\r\n                  <svg fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" class=\"ml-2\" style=\"width: 1rem; height: 1rem;\" viewBox=\"0 0 24 24\">\r\n                    <path d=\"M5 12h14M12 5l7 7-7 7\"></path>\r\n                  </svg>\r\n                </a>\r\n              </div>\r\n            </div>\r\n          </div>\r\n          <button class=\"btn btn-primary btn-lg d-block mx-auto mt-5\">Explore All Deals</button>\r\n        </div>\r\n      </section>\r\n      \r\n      \r\n      \r\n\r\n    <!-- fetch random products -->\r\n    <div class=\"containter-fluid bg-white\">\r\n        <div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Suggested for You</h4>\r\n        </div>\r\n        <div id=\"rendom-product\" class=\"row m-1\"></div>\r\n    </div>\r\n\r\n\r\n    <!-- Mobile Phone Under 15000 Rs -->\r\n    <div class=\"container-fluid bg-white\">\r\n        <div class=\"container-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Mobile Phone Under 15000 Rs</h4>\r\n        </div>\r\n        <div id=\"mobileUnder15000-product\" class=\"row m-1\"></div>\r\n        <div id=\"viewMoreMobileUnder15000Container\" class=\"d-flex justify-content-center\">\r\n            <button id=\"viewMoreMobileUnder15000Btn\" class=\"btn btn-primary\">View More</button>\r\n        </div>\r\n    </div>\r\n\r\n\r\n    <!-- newsection for grid items  -->\r\n    <section id=\"img-box\">\r\n        <a href=\"\">\r\n            <div class=\"img\"><img src=\"img/grid-1.webp\" alt=\"image\" /></div>\r\n        </a>\r\n        <a href=\"\">\r\n            <div class=\"img\"><img src=\"img/grid-2.jpg\" alt=\"image\" /></div>\r\n        </a>\r\n        <a href=\"\">\r\n            <div class=\"img\"><img src=\"img/grid-3.jpg\" alt=\"image\" /></div>\r\n        </a>\r\n        <a href=\"\">\r\n            <div class=\"img\"><img src=\"img/grid-1.webp\" alt=\"image\" /></div>\r\n        </a>\r\n    </section>\r\n\r\n    <!-- Best Deal for You -->\r\n    <div class=\"container-fluid bg-white\">\r\n        <div class=\"container-fluid p-3\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Best Deal for You</h4>\r\n        </div>\r\n        <div id=\"best-deal-product\" class=\"row m-1\"></div>\r\n        <div id=\"viewMoreBestDealContainer\" class=\"d-flex justify-content-center\">\r\n            <button id=\"viewMoreBestDealBtn\" class=\"btn btn-primary\">View More</button>\r\n        </div>\r\n    </div>\r\n\r\n\r\n    <!-- Shop Now Under 500 Rs -->\r\n    <div class=\"container-fluid bg-white\">\r\n        <div class=\"container-fluid p-3\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Shop Now Under 500 Rs</h4>\r\n        </div>\r\n        <div id=\"shopUnder500-product\" class=\"row m-1\"></div>\r\n        <div id=\"viewMoreShopUnder500Container\" class=\"d-flex justify-content-center\">\r\n            <button id=\"viewMoreShopUnder500Btn\" class=\"btn btn-primary none\">View More</button>\r\n        </div>\r\n    </div>\r\n\r\n    \r\n\r\n    <!-- fetch data-->\r\n    <div class=\"containter-fluid bg-white\">\r\n        <div class=\"row\">\r\n            <div class=\"col-md-3\">\r\n                <div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n                    <h4>Best for You</h4>\r\n                </div>\r\n                <div id=\"s1-product\" class=\"row m-1\">\r\n                    <a href=\"Fashion-/\"><img src=\" img/fk-default-image-75ff340b.png \" alt=\"image\"></a>\r\n                </div>\r\n            </div>\r\n            <div class=\"col-md-9\">\r\n                <div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n                    <h4> </h4>\r\n                </div>\r\n                <div id=\"s2-product\" class=\"row m-1\"></div>\r\n            </div>\r\n        </div>\r\n    </div>\r\n\r\n\r\n    <!-- Top Selection -->\r\n    <div class=\"containter-fluid bg-white\">\r\n        <div class=\"containter-fluid p-3\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Top Selection</h4>\r\n        </div>\r\n        <div id=\"top-selection-product\" class=\"row m-1\"></div>\r\n        <div id=\"viewMoreTopSelectionContainer\" class=\"d-flex justify-content-center\">\r\n            <button id=\"viewMoreTopSelectionBtn\" class=\"btn btn-primary\">View More</button>\r\n        </div>\r\n    </div>\r\n\r\n    <!--Other Top Deals-->\r\n    <center>\r\n        <h3>Other Top Deals</h3>\r\n    </center>\r\n    <section id=\"category-grid\">\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal5.png\" alt=\"deal1\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal6.png\" alt=\"deal2\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal1.png\" alt=\"deal3\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal7.png\" alt=\"deal4\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal8.png\" alt=\"deal5\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal9.png\" alt=\"deal6\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal10.png\" alt=\"deal7\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal11.png\" alt=\"deal8\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n        <div class=\"category-container\">\r\n            <img class=\"category\" src=\"img/deal12.png\" alt=\"deal9\">\r\n            <a href=\"#\" class=\"show-items-link\">\r\n                <button class=\"show-items-btn\">Show Items</button>\r\n            </a>\r\n        </div>\r\n    </section>\r\n\r\n    <!-- Product Selection -->\r\n    <div class=\"container-fluid bg-white\">\r\n        <div class=\"container-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb;\">\r\n            <h4>Select Your Choice</h4>\r\n        </div>\r\n        <div id=\"seletcYourChoice-product\" class=\"row m-1\"></div>\r\n        <div id=\"viewMoreContainer\" class=\"d-flex justify-content-center\">\r\n            <button id=\"viewMoreBtn\" class=\"btn btn-primary\">View More</button>\r\n        </div>\r\n    </div>\r\n\r\n    \r\n    <!-- Adding brand directory -->\r\n    <div class=\"brand-directory\">\r\n        <h5 class=\"brand-directory-heading\">Top Stories : Brand Directory</h5>\r\n\r\n        <div class=\"most-searched-for-on-flipkart\">\r\n            <p class=\"paragraph\">\r\n                MOST SEARCHED FOR ON FLIPKART: iPhone 15 | iPhone 15 Plus | iPhone 15 Pro Blue | iPhone 15 Pro Black |\r\n                iPhone 15 Pro Max Blue | iPhone 15 Pro Black| Vivi x 100 | Spoyl Store | SAMSUNG Flip5 | SAMSUNG Fold5 |\r\n                Flipkart Axis Bank Super Elite Credit card|\r\n                5G Mobile Phones | Primebook Laptops | Moto Edge 40 | Grievance Redressal | OPPO Reno7 Pro 5G | iPhone\r\n                13 | Help Centre | Track Orders | Manage Orders | Retyurn Orders | Gift Cards Store | Flipkart Axis Bank\r\n                Credit Card | Pay Later\r\n            </p>\r\n        </div>\r\n        <div class=\"mobile\">\r\n            <p class=\"mobile-para\">\r\n                MOBILES: Redmi 12 %G | Realme 12 + 5G | Motorola G84 | Realme C53 | Infinix Smart 8 | Samsung Galaxy S23\r\n                5G | Samsung Galaxy 21 FE 5G Qualcomm | Vivo V30 | Samsung Galaxy S24 5G | Samsung S24+ 5G | iPhone 12\r\n                64GB | iPhone 12 Pro 512GB | iPhone 12 128GB\r\n                | Vivo Y15 | SAMSUNG Galaxy S21 FE 5G | Infinix HOT 30i | Realme 10 Pro 5G | MOTOROLA G62 5G | Nothing\r\n                Phone | REDMI Note 12 Pro 5G | Infinix SMART 7 | Vivo Y12 | Oppo A12 | Motorola 5g Phone | Realme 5g\r\n                Smartphone | Apple 5g Phone | Iqoo\r\n                5g Phones | Oneplus 5g Plus | Vivo 5g Phones | Oppo 5g Smart Phones | Oppo F15 | Oppo A31 | Samsung A71\r\n                | Samsung A51 | Samsung A31 | iPhone 11 Pro | 4G Mobile | Nokia Mobile | Samsung Mobile | iPhone | Oppo\r\n                Mobile | Vivo Mobile\r\n\r\n            </p>\r\n        </div>\r\n        <div class=\"camera\">\r\n            <p class=\"camera-para\">\r\n                CAMERA: GoPro Action Camera | Nikon Camera | Canon Camera | Sony Camera | canon DSLR | Nikon DSLR\r\n\r\n            </p>\r\n        </div>\r\n        <div class=\"laptops\">\r\n            <p class=\"laptop-para\">\r\n                LAPTOPS: Asus ROG Ally | MacBook Pro M2 | Premium Laptop | ASUS ROG Strix SCAR 16 (2023) Core i9 13th\r\n                Gen | ASUS ROG Zephyrus M16 (2023) Core i9 13th Gen | ASUS Zenbook 14 OLED (2022) | Realme Book Prime\r\n                Core i5 11th Gen | Microsoft Surface Go Pentium\r\n                128GB | Apple Laptops | Acer Laptops | Lenovo Laptops | Dell Laptops | Asus Laptops | HP Laptops |\r\n                Gaming laptops | 2 in 1 Laptops | Laptops | Dell latest laptop 2022 | HP latest laptops 2022 | Infinix\r\n                INBook Y1 Plus | SAMSUNG Galaxy Book3\r\n                | 12th gen Intel Core Laptops\r\n\r\n            </p>\r\n        </div>\r\n        <div class=\"tvs\">\r\n            <p class=\"tvs-para\">\r\n                TVS: Nokia TV | Panasonic TV | Thomson TV | Mi X Pro | Realme TV | Motorola TV | OnePlus TV | LG TV | TV\r\n                | Sony TV | Samsung TV | Android Television | Iffalcon TV | Mi TV\r\n\r\n            </p>\r\n        </div>\r\n        <div class=\"large-appliances\">\r\n            <p class=\"large-appliances-para\">\r\n                LARGE APPLIANCES: Television | Washing Machine | Refrigerators | | Air Conditioners | Electric Cookers |\r\n                Electric Jug(Heater) / Travel Kettles | Induction Cooktops | Inverters / stabilizer | Irons / Iron Box |\r\n                Mixer Grinder Juicer | Wet Grinders Chimneys\r\n                Microwave Ovens Vacuum Cleaners Water Purifier Fan\r\n            </p>\r\n        </div>\r\n        <div class=\"clothing\">\r\n            <p class=\"clothing-para\">\r\n                CLOTHING Green bridal lehenga | Tops | Shoes | Sunglasses | Bridal Blouse | Half saree blouse designs |\r\n                Designer blouses | Blouse designs | Shirts | Cotton saree blouse designs | Tshirts | Jeans | Sarees |\r\n                Dresses | One pieces | Groom wedding sherwani\r\n                | Designer Salwar Suits | Bra | Cotton simple blouse designs | Banarasi saree blouse designs | Stylish\r\n                blouse astin design | Track Pant | Blouse neck designs | Kurtas | Party Dresses | Palazzo Suits |\r\n                Anarkali | Gowns | Cut out dress |\r\n                Salwar Suits | Kurtis | Designer Sarees | Leggings | Shorts | Georgette Sarees | Ethnic Wear | uppada\r\n                pattu sarees | Blouse back design | Jodhpur pants\r\n            </p>\r\n        </div>\r\n        <div class=\"footwear\">\r\n            <p class=\"footwear-para\">\r\n                FOOTWEAR: Adidas Shoes | Reebok Shoes | Nike Shoes | Puma Shoes | Boots | Bata Shoes | Woodland Shoes |\r\n                Skechers Shoes | Sneakers | Womens Boots | Sports Shoes | Loafers | Sandals | Lotto Sports Shoes |\r\n                Casual Shoes | Womens Skechers Shoes Asics Sports\r\n                Shoes Formal Shoes School Shoes\r\n            </p>\r\n        </div>\r\n        <div class=\"groceries\">\r\n            <p class=\"groceries-para\">\r\n                GROCERIES PhonePe Grocery Voucher | Hand Wash | Soap | Cashew Nuts | Sunflower Oil | Eggs | Toilet\r\n                Cleaner | Harpic Toilet Cleaner | Dettol Soap | Mustard Oil | Biscuits | Cheese | Patanjali Atta |\r\n                Fortune Oil | Aashirvaad Atta | Tea\r\n            </p>\r\n        </div>\r\n        <div class=\"best-seller-on-flipkart\">\r\n            <p class=\"best-seller-on-flipkart-para\">\r\n                BEST SELLING ON FLIPKART Headphones | Best Gas Geyser | Kitchen Geyser | Nutri Blenders | Portable Air\r\n                Cooler | Best Air Cooler | Bags | Hitachi Refrigerator 3 Door | Books | Toys | Candles | Helmets | Wall\r\n                Clocks | Baby Food | Chocolates | Cycles | Calculators\r\n                | Lipsticks | Mask | Vertiv UPS | Fastrack Watches | Wallets | Earrings | Gold Coins | Realme Pad Mini |\r\n                Handbags | conekt SW2 Smartwatch | Mivi DuoPods a350 | Speaker Cleaner\r\n            </p>\r\n        </div>\r\n        <div class=\"furniture\">\r\n            <p class=\"furniture-para\">\r\n                FURNITURE Furniture | Sofas | Beds | Dining sets | Wardrobes | Mattresses | TV Units | Tables | Chairs |\r\n                Shelves | Bean Bags | Office Chairs | Computer Table | Office Tables | Red Sofa | Wakefit Beds | White\r\n                Sofa | Wakefit Mattress | Green Sofa Black\r\n                Sofa Brown Sofa\r\n            </p>\r\n        </div>\r\n        <div class=\"bgmh\">\r\n            <p class=\"bgmh-para\">\r\n                BGMH: Whey Protein | Homeopathy | Cricket | Cycles | Footballs | Treadmills | Christmas Gifts | Fitness\r\n                Accessories | Online Guitar | Books Store | Musical Instrument Store | Dabur Chyawanprash | Baidyanath\r\n                Chyawanprash | Energy Drinks | Toys | Milk Drink\r\n                Mixes | Rakhi | Chyawanprash | Indian Flag | Protein Supplements\r\n            </p>\r\n        </div>\r\n        </p>\r\n\r\n    </div>\r\n    <!-- text on the homepage -->\r\n    <div class=\"text\">\r\n        <p class=\"main1\">Flipkart: The One-stop Shopping Destination</p>\r\n        E-commerce is revolutionizing the way we all shop in India. Why do you want to hop from one store to another in\r\n        search of the latest phone when you can find it on the Internet in a single click? Not only mobiles. Flipkart\r\n        houses everything you can possibly\r\n        imagine, from trending electronics like laptops, tablets, smartphones, and mobile accessories to in-vogue\r\n        fashion staples like shoes, clothing and lifestyle accessories; from modern furniture like sofa sets, dining\r\n        tables, and wardrobes to appliances\r\n        that make your life easy like washing machines, TVs, ACs, mixer grinder juicers and other time-saving kitchen\r\n        and small appliances; from home furnishings like cushion covers, mattresses and bedsheets to toys and musical\r\n        instruments, we got them\r\n        all covered. You name it, and you can stay assured about finding them all here. For those of you with erratic\r\n        working hours, Flipkart is your best bet. Shop in your PJs, at night or in the wee hours of the morning. This\r\n        e-commerce never shuts\r\n        down.\r\n        <br><br> What's more, with our year-round shopping festivals and events, our prices are irresistible. We're sure\r\n        you'll find yourself picking up more than what you had in mind. If you are wondering why you should shop from\r\n        Flipkart when there\r\n        are multiple options available to you, well, the below will answer your question.\r\n        <br><br>\r\n        <p class=\"main2\">Flipkart Plus</p>\r\n        A world of limitless possibilities awaits you - Flipkart Plus was kickstarted as a loyalty reward programme for\r\n        all its regular customers at zero subscription fee. All you need is 500 supercoins to be a part of this service.\r\n        For every 100 rupees spent\r\n        on Flipkart order, Plus members earns 4 supercoins &amp; non-plus members earn 2 supercoins. Free delivery,\r\n        early access during sales and shopping festivals, exchange offers and priority customer service are the top\r\n        benefits to a Flipkart Plus\r\n        member. In short, earn more when you shop more!\r\n        <br><br> What's more, you can even use the Flipkart supercoins for a number of exciting services, like:\r\n        <br> An annual Zomato Gold membership\r\n        <br> An annual Hotstar Premium membership\r\n        <br> 6 months Gaana plus subscription\r\n        <br> Get an instant discount of Rupees 550 on Akasa flights\r\n        <br> Check out https://www.flipkart.com/plus/all-offers for the entire list. Terms and conditions apply.\r\n        <br><br>\r\n        <p class=\"heading2\">No Cost EMI</p>\r\n        In an attempt to make high-end products accessible to all, our No Cost EMI plan enables you to shop with us\r\n        under EMI, without shelling out any processing fee. Applicable on select mobiles, laptops, large and small\r\n        appliances, furniture, electronics and\r\n        watches, you can now shop without burning a hole in your pocket. If you've been eyeing a product for a long\r\n        time, chances are it may be up for a no cost EMI. Take a look ASAP! Terms and conditions apply.\r\n        <br><br>\r\n        <p class=\"heading2\">EMI on Debit Cards</p>\r\n        Did you know debit card holders account for 79.38 crore in the country, while there are only 3.14 crore credit\r\n        card holders? After enabling EMI on Credit Cards, in another attempt to make online shopping accessible to\r\n        everyone, Flipkart introduces EMI\r\n        on Debit Cards, empowering you to shop confidently with us without having to worry about pauses in monthly cash\r\n        flow. At present, we have partnered with Axis Bank, HDFC Bank, State Bank of India and ICICI Bank for this\r\n        facility. More power to\r\n        all our shoppers! Terms and conditions apply.\r\n        <br><br>\r\n        <p class=\"heading2\">Mobile Exchange Offers</p>\r\n        Get an instant discount on the phone that you have been eyeing on. Exchange your old mobile for a new one after\r\n        the Flipkart experts calculate the value of your old phone, provided it is in a working condition without damage\r\n        to the screen. If a phone\r\n        is applicable for an exchange offer, you will see the 'Buy with Exchange' option on the product description of\r\n        the phone. So, be smart, always opt for an exchange wherever possible. Terms and conditions apply.\r\n        <br><br>\r\n        <p class=\"main1\">What Can You Buy From Flipkart?</p>\r\n        <ul>\r\n            <li>\r\n                <p class=\"heading1\">Mobile Phones</p>\r\n                From budget phones to state-of-the-art smartphones, we have a mobile for everybody out there. Whether\r\n                you're looking for larger, fuller screens, power-packed batteries, blazing-fast processors,\r\n                beautification apps, high-tech selfie cameras or just large\r\n                internal space, we take care of all the essentials. Shop from top brands in the country like Samsung,\r\n                Apple, Oppo, Xiaomi, Realme, Vivo, and Honor to name a few. Rest assured, you're buying from only the\r\n                most reliable names in the market.\r\n                What's more, with Flipkart's Complete Mobile Protection Plan, you will never again find the need to run\r\n                around service centres. This plan entails you to a number of post-purchase solutions, starting at as low\r\n                as Rupees 99 only! Broken\r\n                screens, liquid damage to phone, hardware and software glitches, and replacements -\r\n                <b>the Flipkart Complete Mobile Protection</b> covers a comprehensive range of post-purchase problems,\r\n                with door-to-door services.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n                <p class=\"heading1\">Electronic Devices and Accessories</p>\r\n                When it comes to laptops, we are not far behind. Filter among dozens of super-fast operating systems,\r\n                hard disk capacity, RAM, lifestyle, screen size and many other criterias for personalized results in a\r\n                flash. All you students out there, confused about\r\n                what laptop to get? Our\r\n                <b>Back To College Store</b> segregates laptops purpose wise (gaming, browsing and research, project\r\n                work, entertainment, design, multitasking) with recommendations from top brands and industry experts,\r\n                facilitating a shopping experience\r\n                that is quicker and simpler.\r\n                <br><br> Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras,\r\n                ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for\r\n                adventure junkies: our range of cameras\r\n                is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some\r\n                big names you'll find in our store. Photography lovers, you couldn't land at a better page than ours.\r\n                Cutting-edge DSLR cameras, ever\r\n                reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure\r\n                junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro,\r\n                Sony, and Fujifilm are some\r\n                big names you'll find in our store.\r\n                <br><br> Turn your home into a theatre with a stunning surround sound system. Choose from our elaborate\r\n                range of Sony home theatres, JBL soundbars and Philips tower speakers for an experience to remember.\r\n                <br><br> How about jazzing up your phone with our quirky designer cases and covers? Our wide-ranging\r\n                mobile accessories starting from headphones, power banks, memory cards, mobile chargers, to selfie\r\n                sticks can prove to be ideal travel\r\n                companions for you and your phone; never again worry about running out of charge or memory on your next\r\n                vacation.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n                <p class=\"heading1\">Large Appliances</p>\r\n                Sleek TVs, power-saving refrigerators, rapid-cooling ACs, resourceful washing machines - discover\r\n                everything you need to run a house under one roof. Our\r\n                <b>Dependable TV and Appliance Store</b> ensures zero transit damage, with a replacement guarantee if\r\n                anything goes wrong; delivery and installation as per your convenience and a double warranty (Official\r\n                Brand Warranty along with an extended\r\n                Flipkart Warranty) - rest assured, value for money is what is promised and delivered. Shop from market\r\n                leaders in the country like Samsung, LG, Whirlpool, Midea, Mi, Vu, Panasonic, Godrej, Sony, Daikin, and\r\n                Hitachi among many others.\r\n                <br><br> For certain product categories, Customers meeting the eligibility criteria will have the option\r\n                to buy larger quantities. To know more on the eligibility criteria and terms and conditions, please\r\n                reach out to\r\n                <a href=\"mailto:Purchases.oni@flipkart.com\">Purchases.oni@flipkart.com</a>.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n                <p class=\"heading1\">Small Home Appliances</p>\r\n                Find handy and practical home appliances designed to make your life simpler: electric kettles, OTGs,\r\n                microwave ovens, sandwich makers, hand blenders, coffee makers, and many more other time-saving\r\n                appliances that are truly crafted for a quicker lifestyle.\r\n                Live life king size with these appliances at home.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n                <p class=\"heading1\">Home and Furniture</p>\r\n                Moving to a new place is never easy, especially if you're buying new furniture. Beds, sofa sets, dining\r\n                tables, wardrobes, and TV units - it's not easy to set up everything again. With the hundreds of options\r\n                thrown at you, the ride could be overwhelming.\r\n                What place is reliable, what furniture will stand the test of time? These are questions you must ask\r\n                before you choose a store. Well, our\r\n                <b>Durability Certified Furniture Store</b> has not only curated a range of furniture keeping in mind\r\n                the modern Indian consumer but furniture that comes with a lab certification, ensuring they last you for\r\n                up to 10 years. Yes, all our\r\n                furniture has gone through 35 stability and load tests so that you receive only the best-quality\r\n                furniture.\r\n                <b>Be FurniSure</b> , always. Names to look out for are Nilkamal, Godrej Interio, Urban Ladder,\r\n                HomeTown, Durian and Perfect Homes.\r\n                <br><br> You may have your furniture all set up, but they could end up looking flat and incomplete\r\n                without complementary decor. Curtains, cushion covers, bed sheets, wall shelves, paintings, floor lamps\r\n                - find everything that turns a house\r\n                to an inviting home under one roof at Flipkart.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n                <p class=\"heading1\">Baby and Kids</p>\r\n                Your kids deserve only the best. From bodysuits, booties, diapers to strollers, if you're an expecting\r\n                mother or a new mother, you will find everything you need to set sail on a smooth parenting journey with\r\n                the help of our baby care collection. When\r\n                it comes to safety, hygiene and comfort, you can rely on us without a second thought. Huggies, Pampers,\r\n                MamyPoko, and Johnson &amp; Johnson: we host only the most-trusted names in the business for your baby.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n\r\n                <p class=\"heading1\">Books, Sports and Games</p>\r\n                Work hard and no play? We don't believe in that. Get access to best-selling fiction and non-fiction\r\n                books by your favourite authors, thrilling English and Indian blockbusters, most-wanted gaming consoles,\r\n                and a tempting range of fitness and sports gadgets\r\n                and equipment bound to inspire you to get moving.\r\n                <br><br>\r\n            </li>\r\n            <li>\r\n                <p class=\"heading1\">Grocery/Supermart</p>\r\n                Launching into the grocery vertical, Flipkart introduces\r\n                <b>Supermart</b> that is out to bring everyday essentials close to you. From pulses, spices, dairy,\r\n                personal and sanitary care, breakfast essentials, health drinks, spreads, ready to cook, grooming to\r\n                cleaning agents, we are happy to present\r\n                everything you need to run a house. Now buy Grocery products for as low as 1 Rupee only - our\r\n                <b>1 Rupee Store</b> presents new products every day for a nominal price of 1 Rupee only. Terms and\r\n                conditions apply.\r\n            </li>\r\n        </ul>\r\n\r\n        <p class=\"main1\">Lifestyle</p>\r\n        Flipkart,\r\n        <b>'India ka Fashion Capital'</b> , is your one-stop fashion destination for anything and everything you need to\r\n        look good. Our exhaustive range of Western and Indian wear, summer and winter clothing, formal and casual\r\n        footwear, bridal and artificial\r\n        jewellery, long-lasting make-up, grooming tools and accessories are sure to sweep you off your feet. Shop from\r\n        crowd favourites like Vero Moda, Forever 21, Only, Arrow, Woodland, Nike, Puma, Revlon, Mac, and Sephora among\r\n        dozens of other top-of-the-ladder\r\n        names. From summer staple maxi dresses, no-nonsense cigarette pants, traditional Bandhani kurtis to street-smart\r\n        biker jackets, you can rely on us for a wardrobe that is up to date. Explore our in-house brands like Metronaut,\r\n        Anmi, and Denizen,\r\n        to name a few, for carefully curated designs that are the talk of the town. Get ready to be spoiled for\r\n        choice.Festivals, office get-togethers, weddings, brunches, or nightwear - Flipkart will have your back each\r\n        time.\r\n        <br><br>\r\n    </div>\r\n\r\n\r\n\r\n   <!-- FAQ Section -->\r\n   <div class=\"faq-container\" id=\"faq\">\r\n   <div> <h2 class=\"faq-heading text-center mb-4\">Frequently Asked Questions</h2></div>\r\n   \r\n    <div class=\"row\">\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">How do I create an account?</h5>\r\n                <p class=\"faq-answer\">To create an account on Flipkart, simply click on the \"Sign Up\" button located\r\n                    at the top-right corner of the homepage. Follow the prompts to enter your details and create\r\n                    your account.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">How can I place an order?</h5>\r\n                <p class=\"faq-answer\">Placing an order on Flipkart is easy! Once you've found the product you want\r\n                    to buy, click on it to view details and then click on the \"Buy Now\" or \"Add to Cart\" button.\r\n                   </p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">What payment options are available?</h5>\r\n                <p class=\"faq-answer\">Flipkart offers various payment options including credit/debit cards, net\r\n                    banking, UPI, EMI, and Cash on Delivery (COD) for eligible orders.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">How can I track my order?</h5>\r\n                <p class=\"faq-answer\">You can track your order by clicking on the \"Track Order\" link in the \"My\r\n                    Orders\" section of your Flipkart account. You will receive regular updates on your order status\r\n                    via email and SMS.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">What is Flipkart's return policy?</h5>\r\n                <p class=\"faq-answer\">Flipkart has a hassle-free return policy. If you're not satisfied with your\r\n                    purchase, you can initiate a return within the specified return period. Simply go to the \"My\r\n                    Orders\" section, select the order you want to return, and follow the prompts.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">Is the cost of the appointment covered by private health insurance?</h5>\r\n                <p class=\"faq-answer\">Many private health insurance plans cover the cost of our appointments. We recommend checking with your insurance provider to confirm the extent of your coverage. If you need documentation for your insurance claim, please let us know.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">What is your cancellation policy?</h5>\r\n                <p class=\"faq-answer\">Our cancellation policy requires that you notify us at least 24 hours in advance if you need to cancel or reschedule your appointment. Failure to do so may result in a cancellation fee. We understand that emergencies happen, so please contact us as soon as possible.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">Do I need a referral?</h5>\r\n                <p class=\"faq-answer\">Referrals are not necessary to book an appointment with us. However, if you have a referral from a healthcare provider, please bring it along to your appointment. It can provide useful background information for our consultants.</p>\r\n            </div>\r\n        </div>\r\n        <div class=\"col-md-6 col-lg-4 mb-4\">\r\n            <div class=\"faq-card\">\r\n                <div class=\"faq-icon\">\r\n                    <img src=\"https://img.icons8.com/ios-filled/50/000000/question-mark.png\" alt=\"Question Icon\">\r\n                </div>\r\n                <h5 class=\"faq-question\">What are the parking and public transport options?</h5>\r\n                <p class=\"faq-answer\">We offer complimentary parking for all our clients. Our office is also easily accessible by public transport. The nearest bus stop is a 5-minute walk, and the train station is about 10 minutes away. Detailed directions can be found on our website.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n</div>\r\n<!-- faq end -->\r\n    <!-- Contact Us -->\r\n    <div class=\"main\">\r\n\r\n        <div class=\"container\">\r\n            <img src=\"rateus.png\" alt=\"rateus\">\r\n            <div class=\"form-container\">\r\n                <h1>Contact Us</h1>\r\n                <form id=\"contact-form\">\r\n                    <!-- <label for=\"name\">Name:</label> -->\r\n                    <input type=\"text\" id=\"name\" name=\"name\" required placeholder=\"Name:\">\r\n\r\n                    <!-- <label for=\"email\">Email:</label> -->\r\n                    <input type=\"email\" id=\"email\" name=\"email\" required placeholder=\"Email:\">\r\n\r\n                    <!-- <label for=\"comment\">Comment:</label> -->\r\n                    <textarea id=\"comment\" name=\"feedback\" required placeholder=\"Comment:\"></textarea>\r\n\r\n\r\n                    <p id=\"thank-you-message\" style=\"color: white; display: none;\">Thank you !!<br>We will connect soon.\r\n                    </p>\r\n                </form>\r\n                <button onclick=\"handleSubmit()\" id=\"button\">Submit</button>\r\n            </div>\r\n        </div>\r\n    </div>\r\n    <!-- go to top button -->\r\n    <!-- <button id=\"goToTopBtn\" class=\"hidden\"><i class=\"fas fa-chevron-up\"></i></button> -->\r\n    <div class=\"scrollToTop\">\r\n        <div class=\"inner\">\r\n            <i class=\"fa fa-arrow-up icon\"></i>\r\n        </div>\r\n    </div>\r\n\r\n\r\n\r\n\r\n    <!-- footer fetch to components : components/footer/footer.html -->\r\n    <footer id=\"footer\" style=\"background-color: #09090a;\"></footer>\r\n\r\n    <!-- voiceflow.chat script -->\r\n    <script type=\"text/javascript\">\r\n        (function (d, t) {\r\n            var v = d.createElement(t), s = d.getElementsByTagName(t)[0];\r\n            v.onload = function () {\r\n                window.voiceflow.chat.load({\r\n                    verify: { projectID: '6647471456cab012ae016d07' },\r\n                    url: 'https://general-runtime.voiceflow.com',\r\n                    versionID: 'production'\r\n                });\r\n            }\r\n            v.src = \"https://cdn.voiceflow.com/widget/bundle.mjs\"; v.type = \"text/javascript\"; s.parentNode.insertBefore(v, s);\r\n        })(document, 'script');\r\n    </script>\r\n\r\n    <script src=\"js/bootstrap.bundle.min.js\"></script>\r\n    <script src=\"js/homeHeader.js\"></script>\r\n    <!-- <script src=\"js/categoryjs.js\"></script> -->\r\n    <script src=\"js/searchIndexProducts.js\"></script>\r\n    <script src=\"js/fetchProductOfIndex.js\"></script>\r\n    <script src=\"js/index.js\"></script>\r\n\r\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js\"></script>\r\n\r\n\r\n    <script type=\"text/javascript\" src=\"https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js\">\r\n    </script>\r\n    <script src=\"js/contactus.js\"></script>\r\n    <script>\r\n        // Select the scrollToTop element\r\n        var scrollToTop = document.querySelector(\".scrollToTop\");\r\n\r\n        // Function to calculate the scroll value and update the scrollToTop button\r\n        function calcScrollValue() {\r\n            let pos = document.body.scrollTop || document.documentElement.scrollTop;\r\n            let calcHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n            let percentval = Math.round((pos * 100) / calcHeight);\r\n\r\n            if (pos > 100) {\r\n                scrollToTop.style.display = \"flex\";\r\n            } else {\r\n                scrollToTop.style.display = \"none\";\r\n            }\r\n\r\n            scrollToTop.style.background = `conic-gradient(#28CEF7 ${percentval}%, white ${percentval}%)`;\r\n        }\r\n\r\n        // Add click event listener to scrollToTop button\r\n        scrollToTop.addEventListener(\"click\", function () {\r\n            document.body.scrollTop = 0; // For Safari\r\n            document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE, and Opera\r\n        });\r\n\r\n        // Call calcScrollValue on scroll and on load\r\n        window.onscroll = calcScrollValue;\r\n        window.onload = calcScrollValue;\r\n\r\n    </script>\r\n    \r\n        </div>\r\n        </div>\r\n        </div>\r\n        </div>\r\n        <!-- faq end -->\r\n\r\n        <!-- go to top button -->\r\n        <!-- <button id=\"goToTopBtn\" class=\"hidden\"><i class=\"fas fa-chevron-up\"></i></button> -->\r\n        <div class=\"scrollToTop\">\r\n            <div class=\"inner\">\r\n                <i class=\"fa fa-arrow-up icon\"></i>\r\n            </div>\r\n        </div>\r\n        <!-- footer fetch to components : components/footer/footer.html -->\r\n        <footer id=\"footer\" style=\"background-color: #292d33;\"></footer>\r\n\r\n        <!-- voiceflow.chat script -->\r\n        <script type=\"text/javascript\">\r\n            (function (d, t) {\r\n                var v = d.createElement(t),\r\n                    s = d.getElementsByTagName(t)[0];\r\n                v.onload = function () {\r\n                    window.voiceflow.chat.load({\r\n                        verify: {\r\n                            projectID: '6647471456cab012ae016d07'\r\n                        },\r\n                        url: 'https://general-runtime.voiceflow.com',\r\n                        versionID: 'production'\r\n                    });\r\n                }\r\n                v.src = \"https://cdn.voiceflow.com/widget/bundle.mjs\";\r\n                v.type = \"text/javascript\";\r\n                s.parentNode.insertBefore(v, s);\r\n            })(document, 'script');\r\n        </script>\r\n\r\n        <script src=\"js/bootstrap.bundle.min.js\"></script>\r\n        <script src=\"js/homeHeader.js\"></script>\r\n        <script src=\"js/categoryjs.js\"></script>\r\n        <script src=\"js/index.js\"></script>\r\n\r\n        <script src=\"https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js\"></script>\r\n\r\n\r\n        <script type=\"text/javascript\" src=\"https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js\">\r\n        </script>\r\n        <script src=\"js/contactus.js\"></script>\r\n\r\n        <script>\r\n            // Select the scrollToTop element\r\n            var scrollToTop = document.querySelector(\".scrollToTop\");\r\n\r\n            // Function to calculate the scroll value and update the scrollToTop button\r\n            function calcScrollValue() {\r\n                let pos = document.body.scrollTop || document.documentElement.scrollTop;\r\n                let calcHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n                let percentval = Math.round((pos * 100) / calcHeight);\r\n\r\n                if (pos > 100) {\r\n                    scrollToTop.style.display = \"flex\";\r\n                } else {\r\n                    scrollToTop.style.display = \"none\";\r\n                }\r\n\r\n                scrollToTop.style.background = `conic-gradient(#28CEF7 ${percentval}%, white ${percentval}%)`;\r\n            }\r\n\r\n            // Add click event listener to scrollToTop button\r\n            scrollToTop.addEventListener(\"click\", function () {\r\n                document.body.scrollTop = 0; // For Safari\r\n                document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE, and Opera\r\n            });\r\n\r\n            // Call calcScrollValue on scroll and on load\r\n            window.onscroll = calcScrollValue;\r\n            window.onload = calcScrollValue;\r\n        </script>\r\n\r\n     \r\n        \r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "js/account.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n  const components = [\r\n    { id: \"footer-account\", url: \"../footer/footer.html\" },\r\n    { id: \"header-account\", url: \"../header/header.html\" },\r\n  ];\r\n\r\n  components.forEach((component) => {\r\n    fetch(component.url)\r\n      .then((response) => response.text())\r\n      .then((data) => {\r\n        document.getElementById(component.id).innerHTML = data;\r\n      })\r\n      .catch((error) =>\r\n        console.error(`Error loading ${component.url}:`, error)\r\n      );\r\n  });\r\n});\r\n"
  },
  {
    "path": "js/addKartProduct.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\n  const elementsToLoad = [\n    { id: \"footer-addkart\", url: \"../footer/footer.html\" },\n    { id: \"header-addkart\", url: \"../header/header.html\" },\n  ];\n\n  elementsToLoad.forEach(({ id, url }) => loadHtml(id, url));\n});\n\nconst loadHtml = (id, url) => {\n  fetch(url)\n    .then((res) => res.ok ? res.text() : Promise.reject(res.status))\n    .then((data) => document.getElementById(id).innerHTML = data)\n    .catch((err) => {\n      console.error(`Error loading ${url}:`, err);\n      document.getElementById(id).innerHTML = `<p style=\"color: red;\">Failed to load content. Please try again later.</p>`;\n    });\n};\n\nconst getQueryParameter = (name) => {\n  return new URLSearchParams(window.location.search).get(name);\n};\n\nconst formatIndianRupee = (number) => {\n  const [integerPart, decimalPart] = number.toString().split(\".\");\n  return integerPart.replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\") + (decimalPart ? \".\" + decimalPart : \"\");\n};\n\nconst createProductCard = (product) => {\n  const discount = Math.floor((product.rating * parseInt(product.price.toString().slice(0, 2))) / 10);\n  const discountedPrice = Math.round(((100 - discount) * product.price) / 100);\n\n  return `\n    <div class=\"col-md-6\">\n      <div class=\"container\">\n        <div class=\"text-center img-fluid\" style=\"height:400px;\">\n          <img class=\"p-3\" src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" style=\"width:75%;height:75%;margin:auto;object-fit:contain;\" alt=\"${product.name}\">\n        </div>\n        <div>\n          <a class=\"btn btn-primary\" style=\"width:45%;height:50px;background-color:#ff9f00;padding-top:12px;\" href=\"../viewcart/?query=${product.name}\">\n            <img src=\"../img/svg/cart_h.svg\">&nbsp Add To Cart\n          </a>\n          <a class=\"btn btn-danger\" style=\"width:45%;height:50px;background-color:#fb641b;padding-top:12px;\" href=\"checkout.html\">\n            <img src=\"../img/svg/electricity.svg\">&nbspBuy Now\n          </a>\n        </div>\n      </div>\n    </div>\n    <div class=\"col-md-6\">\n      <div class=\"products_kart\">\n        <div class=\"mt-2 card-title\">${product.name}</div>\n        <div class=\"rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\n        <span class=\"text-success mt-2\">Special price</span>\n        <div>\n          <strong class=\"fs-3\">₹${formatIndianRupee(discountedPrice)}</strong>\n          <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del>\n          <span style=\"color:#388e3c\">${discount}% off</span>\n        </div>\n        <div class=\"text-success\">Available offers</div>\n        <div style=\"font-size:14px;\">\n          <img style=\"width:20px;height:20px;\" src=\"https://rukminim2.flixcart.com/www/36/36/promos/06/09/2016/c22c9fc4-0555-4460-8401-bf5c28d7ba29.png?q=90\">\n          <span style=\"font-weight:600;\">Bank Offer</span> Get ₹50 instant discount on first Flipkart UPI transaction on order of ₹200 and above <a href=\"#\">T&C</a><br>\n          <img style=\"width:20px;height:20px;\" src=\"https://rukminim2.flixcart.com/www/36/36/promos/06/09/2016/c22c9fc4-0555-4460-8401-bf5c28d7ba29.png?q=90\">\n          <span style=\"font-weight:600;\">Bank Offer</span> 5% Cashback on Flipkart Axis Bank Card <a href=\"#\">T&C</a><br>\n          <img style=\"width:20px;height:20px;\" src=\"https://rukminim2.flixcart.com/www/36/36/promos/06/09/2016/c22c9fc4-0555-4460-8401-bf5c28d7ba29.png?q=90\">\n          <span style=\"font-weight:600;\">Special Price</span> Get extra 12% off (price inclusive of cashback/coupon) <a href=\"#\">T&C</a><br>\n          <span class=\"text-primary\"><a href=\"#\" style=\"font-weight:500;\">View 12 more offers</a></span>\n        </div>\n        <div style=\"background-color:#f8f8f8;padding:20px 10px;width:70%;\">\n          <span style=\"color:grey;font-size:15px;font-weight:500;\">Warranty</span>\n          <span style=\"font-size:14px;\">&nbsp;&nbsp;Covers Manufacturing Defects <a href=\"#\">Know More</a></span>\n        </div>\n        <div style=\"width:70%;padding:11px;background-color:#f8f8f8;border:none;\">\n          <div style=\"display:flex;align-items:center;margin-bottom:15px;\">\n            <div style=\"margin-right:20px;color:grey;font-size:15px;font-weight:500;margin-left:0px;\">Delivery</div>\n            <div style=\"border:none;border-bottom:2px solid #2874f0;\">\n              <form autocomplete=\"off\" style=\"display:flex;align-items:center;width:100%;\">\n                <div style=\"position:relative;flex-grow:1;\">\n                  <svg width=\"16\" height=\"16\" viewBox=\"0 0 9 12\" xmlns=\"http://www.w3.org/2000/svg\" style=\"position:absolute;top:50%;left:10px;transform:translateY(-50%);\">\n                    <path fill=\"#2874f0\" d=\"M4.2 5.7c-.828 0-1.5-.672-1.5-1.5 0-.398.158-.78.44-1.06.28-.282.662-.44 1.06-.44.828 0 1.5.672 1.5 1.5 0 .398-.158.78-.44 1.06-.28.282-.662.44-1.06.44zm0-5.7C1.88 0 0 1.88 0 4.2 0 7.35 4.2 12 4.2 12s4.2-4.65 4.2-7.8C8.4 1.88 6.52 0 4.2 0z\" fill-rule=\"evenodd\"></path>\n                  </svg>\n                  <input placeholder=\"Enter Delivery Pincode\" type=\"text\" maxlength=\"6\" style=\"background-color:#f8f8f8;padding:10px 10px 10px 35px;border:none;width:100%;font-size:15px;color:grey;font-weight:500;\" />\n                </div>\n                <button style=\"padding:10px 0;background-color:#f8f8f8;color:#2874f0;border:none;margin-left:10px;cursor:pointer;font-weight:550;font-size:15px;position:relative;\">\n                  Check\n                </button>\n              </form>\n            </div>\n          </div>\n          <div style=\"padding:10px;background-color:#e9ecef;margin-left:80px;margin-right:110px;\">\n            <div style=\"display:flex;justify-content:space-between;font-size:15px;\">\n              <div style=\"font-weight:600;\">Delivery by <span>16 Jul, Tuesday</span></div>\n              <div style=\"width:2px;height:auto;background-color:grey;\"></div>\n              <div style=\"color:#388e3c;font-weight:500;\">Free <span style=\"color:grey;font-size:10px;padding:0px 4px;border-radius:50%;border:1px solid grey;\">?</span></div>\n            </div>\n            <div style=\"color:#757575;font-size:14px;\">if ordered before 9:59 PM</div>\n          </div>\n          <div style=\"margin-top:10px;color:#007bff;cursor:pointer;font-size:15px;font-weight:550;margin-left:80px;\">View Details</div>\n        </div>\n        <div class=\"card-title\"><strong>${product.description}</strong></div>\n      </div>\n    </div>`;\n};\n\nconst createSimilarProductCard = (product) => {\n  const discount = Math.floor((product.rating * parseInt(product.price.toString().slice(0, 2))) / 10);\n  const discountedPrice = Math.round(((100 - discount) * product.price) / 100);\n\n  return `\n    <a class=\"btn col-lg-2 col-md-3 m-1\" href=\"productview.html?id=${product.id}\" style=\"text-align:left;\">\n      <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" style=\"width:75%;height:150px;display:block;margin:auto;object-fit:contain;\" alt=\"${product.name}\">\n      <div class=\"text-success\" style=\"font-weight:600;\">₹${formatIndianRupee(discountedPrice)}</div>\n      <div style=\"color:#212121;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:550;font-size:14px;\">${product.name}</div>\n      <div style=\"color:#878787;\">₹${formatIndianRupee(product.price)}</div>\n      <div style=\"color:#388e3c;\">${discount}% off</div>\n    </a>`;\n};\n\nconst displayProduct = async () => {\n  try {\n    const productId = getQueryParameter(\"id\");\n    if (!productId) throw new Error(\"Product ID is missing in the URL.\");\n\n    const response = await fetch(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/products.json\");\n    if (!response.ok) throw new Error(\"Failed to fetch product data.\");\n\n    const products = await response.json();\n    const product = products.find((p) => p.id === parseInt(productId));\n    if (!product) throw new Error(\"Product not found.\");\n\n    document.getElementById(\"productkart-card\").innerHTML = createProductCard(product);\n\n    const similarProductsContainer = document.getElementById(\"similar-products\");\n    similarProductsContainer.innerHTML = products\n      .filter((p) => p.category === product.category && p.id !== product.id)\n      .map((p) => createSimilarProductCard(p))\n      .join(\"\");\n  } catch (error) {\n    console.error(error);\n    document.getElementById(\"productkart-card\").innerHTML = `<p style=\"color: red;\">Error: ${error.message}</p>`;\n  }\n};\n\ndisplayProduct();\n"
  },
  {
    "path": "js/categoryData.json",
    "content": "[\r\n    {\r\n        \"id\": \"top-offers\",\r\n        \"name\": \"Top Offers\",\r\n        \"icon\": \"topoffer.webp\",\r\n        \"subcategories\":[]\r\n    },\r\n\r\n    {\r\n        \"id\": \"grocery\",\r\n        \"name\": \"Grocery\",\r\n        \"icon\": \"grocery.webp\",\r\n        \"subcategories\": [\r\n            {\r\n                \"id\": \"fruits-vegetables\",\r\n                \"name\": \"Fruits & Vegetables\",\r\n                \"icon\": \"grocery.png\",\r\n                \"subcategories\": [\"Fresh Fruits\", \"Fresh Vegetables\"]\r\n            },\r\n            {\r\n                \"id\": \"dairy-eggs\",\r\n                \"name\": \"Dairy & Eggs\",\r\n                \"icon\": \"grocery.png\",\r\n                \"subcategories\": [\"Milk\", \"Cheese\", \"Eggs\"]\r\n            },\r\n            {\r\n                \"id\": \"bakery\",\r\n                \"name\": \"Bakery\",\r\n                \"icon\": \"grocery.png\",\r\n                \"subcategories\": [\"Bread\", \"Pastries\", \"Cakes\"]\r\n            },\r\n            {\r\n                \"id\": \"canned-packaged\",\r\n                \"name\": \"Canned & Packaged\",\r\n                \"icon\": \"grocery.png\",\r\n                \"subcategories\": [\"Canned Food\", \"Pasta\", \"Rice\", \"Snacks\"]\r\n            },\r\n            {\r\n                \"id\": \"desserts\",\r\n                \"name\": \"Desserts\",\r\n                \"icon\": \"grocery.png\",\r\n                \"subcategories\": null\r\n            }\r\n        ]\r\n    },\r\n    \r\n    {\r\n        \"id\": \"Mobiles\",\r\n        \"name\":\"Mobiles & Tablets\",\r\n\r\n        \"icon\": \"mobile.webp\",\r\n        \"subcategories\": [\r\n        {\r\n            \"id\": \"smartphones\",\r\n            \"name\": \"Smartphones\",\r\n            \"icon\": \"mobile.png\",\r\n            \"subcategories\": [\"Android Phones\", \"iPhones\"]\r\n        },\r\n        {\r\n            \"id\": \"accessories\",\r\n            \"name\": \"Accessories\",\r\n            \"icon\": \"mobile.png\",\r\n            \"subcategories\": [\"Chargers\", \"Cases\", \"Screen Protectors\"]\r\n        },\r\n        {\r\n            \"id\": \"wearables\",\r\n            \"name\": \"Wearables\",\r\n            \"icon\": \"mobile.png\",\r\n            \"subcategories\": [\"Smartwatches\", \"Fitness Trackers\"]\r\n        },\r\n        {\r\n            \"id\": \"audio\",\r\n            \"name\": \"Audio\",\r\n            \"icon\": \"mobile.png\",\r\n            \"subcategories\": [\"Earbuds\", \"Headphones\", \"Speakers\"]\r\n        },\r\n        {\r\n            \"id\": \"brands\",\r\n            \"name\": \"Brands\",\r\n            \"icon\": \"mobile.png\",\r\n            \"subcategories\": [\"Samsung\", \"Apple\", \"OnePlus\", \"Xiaomi\"]\r\n          }\r\n        ]\r\n    },\r\n    {\r\n        \"id\": \"Fashion\",\r\n        \"name\": \"Fashion\",\r\n        \"icon\": \"fashion.webp\",\r\n        \"subcategories\": [\r\n            {\r\n                \"id\": \"mens-top_wear\",\r\n                \"name\": \"Men's Top Wear\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"All\" ,\"Men's T-Shirts\", \"Men's Casual Shirts\",\"Men's Kurtas\",\"Men's Ethnic Sets\", \"Men's Blazers\", \"Men's Raincoat\",\"Men's Formal Shirts\", \"Men's Pants\", \"Men's Jackets\"]\r\n            },\r\n            {\r\n                \"id\": \"mens-bottom_wear\",\r\n                \"name\": \"Men's Bottom Wear\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"All\" ,\"Men's Jeans\", \"Men's Tousers\",\"Men's Track Pants\",\"Men's Shorts\", \"Men's Cargo\", \"Men's Threefourths\",\"Men's Dhoti\", \"Men's Ethnic Pyjama\", \"Men's Pyjama & Loungerpants\"]\r\n            },\r\n            {\r\n                \"id\": \"womens-ethnics\",\r\n                \"name\": \"Women's Ethnic\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"All\",\"Women Sarees\",\"Women kurtas & Kurtis\",\"Women Kurta Set & Salwar Suits\",\"Women Gowns\",\"Women Blouse\",\"Ethnic Dresses\", \"Women Dupatta\"]\r\n            },\r\n            {\r\n                \"id\": \"mens-Footwear_wear\",\r\n                \"name\": \"Men's Footwear\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"All\", \"Men's Sports Shoe\",\"Mens Casual shoes\", \"Shoe Care\"]\r\n            },\r\n            {\r\n                \"id\": \"women-Footwear_wear\",\r\n                \"name\": \"Women Footwear\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"All\",\"Women Flats\",\"Women Heels\",\"Women Sports Shoe\",\"Women Casual shoes\", \"Shoe Care\"]\r\n            },\r\n            {\r\n                \"id\": \"watches_and_accessories\",\r\n                \"name\": \"Watches And Accessories\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"All\",\"Men & Women Watches\", \"Men & Women Sunglasses\",\"Wallets\",\"Mens & Women Belts\"]\r\n            },\r\n            {\r\n                \"id\": \"kids-clothing\",\r\n                \"name\": \"Kids\",\r\n                \"icon\": \"fashion.png\",\r\n                \"subcategories\": [\"T-shirts\", \"Jeans\", \"Dresses\"]\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"id\": \"electronics\",\r\n        \"name\": \"Electronics\",\r\n        \"icon\": \"elec.webp\",\r\n        \"subcategories\": [\r\n         \r\n            {\r\n                \"id\": \"computers\",\r\n                \"name\": \"Computers\",\r\n                \"icon\": \"electronics.png\",\r\n                \"subcategories\": [\"Laptops\", \"Desktops\", \"Tablets\"]\r\n            },\r\n            {\r\n                \"id\": \"accessories\",\r\n                \"name\": \"Accessories\",\r\n                \"icon\": \"electronics.png\",\r\n                \"subcategories\": [\"Headphones\", \"Chargers\", \"Cases\"]\r\n            }\r\n        ]\r\n    },\r\n    {\r\n\r\n        \"id\": \"appliances\",\r\n        \"name\":\"TVs & Appliances\",\r\n        \"icon\": \"tv.webp\",\r\n        \"subcategories\": []\r\n    },\r\n    {\r\n\r\n        \"id\": \"home-kitchen\",\r\n        \"name\":\"Home & Kitchen\",\r\n        \"icon\": \"homekit.webp\",\r\n        \"subcategories\": []\r\n    },\r\n    {\r\n        \"id\": \"home-furniture\",\r\n        \"name\": \"Furniture\",\r\n        \"icon\": \"furniture.webp\",\r\n        \"subcategories\": [\r\n            {\r\n                \"id\": \"Kitchen-appliances\",\r\n                \"name\": \"kitchen Appliances\",\r\n                \"icon\": \"home&furniture.jpg\",\r\n                \"subcategories\": [\"Blenders\", \"Microwaves\", \"Coffee Makers\", \"Pressure cookers\", \"Pans\"]\r\n            },\r\n            {\r\n                \"id\": \"furniture\",\r\n                \"name\": \"Furniture\",\r\n                \"icon\": \"home&furniture.jpg\",\r\n                \"subcategories\": [\"Sofas\", \"Tables\", \"Chairs\", \"Beds\"]\r\n            },\r\n            {\r\n                \"id\": \"home-decor\",\r\n                \"name\": \"Home Decor\",\r\n                \"icon\": \"home&furniture.jpg\",\r\n                \"subcategories\": [\"Rugs\", \"Lamps\", \"Mirrors\", \"Clocks\"]\r\n            },\r\n            \r\n            {\r\n                \"id\": \"pet\",\r\n                \"name\": \"Pet supplies\",\r\n                \"icon\": \"home&furniture.jpg\",\r\n                \"subcategories\": [\"Dogs\", \"Cats\", \"Fish and Aquatics\"]\r\n            }\r\n        ]\r\n    },\r\n    \r\n    {\r\n        \"id\": \"beauty\",\r\n        \"name\": \"Beauty, Toys & More\",\r\n        \"icon\": \"beauty.webp\",\r\n        \"subcategories\": [\r\n            {\r\n                \"id\": \"face\",\r\n                \"name\": \"Face\",\r\n                \"icon\": \"beautyToys.png\",\r\n                \"subcategories\": [\"Foundation\", \"Concealer\", \"Powder\"]\r\n            },\r\n            {\r\n                \"id\": \"eyes\",\r\n                \"name\": \"Eyes\",\r\n                \"icon\": \"beautyToys.png\",\r\n                \"subcategories\": [\"Eyeshadow\", \"Mascara\", \"Eyeliner\"]\r\n            },\r\n            {\r\n                \"id\": \"lips\",\r\n                \"name\": \"Lips\",\r\n                \"icon\": \"beautyToys.png\",\r\n                \"subcategories\": [\"Lipstick\", \"Lip Gloss\", \"Lip Liner\"]\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"id\": \"travel\",\r\n        \"name\":\"Travel\",\r\n        \"icon\": \"travel.webp\",\r\n        \"subcategories\": [\r\n                {\r\n                    \"id\": \"destinations\",\r\n                    \"name\": \"Destinations\",\r\n                    \"icon\": \"travel.png\",\r\n                    \"subcategories\": [\"Beach\", \"Mountain\", \"City\"]\r\n                },\r\n                {\r\n                    \"id\": \"transportation\",\r\n                    \"name\": \"Transportation\",\r\n                    \"icon\": \"travel.png\",\r\n                    \"subcategories\": [\"Flights\", \"Trains\", \"Car Rentals\"]\r\n                },\r\n                {\r\n                    \"id\": \"accommodation\",\r\n                    \"name\": \"Accommodation\",\r\n                    \"icon\": \"travel.png\",\r\n                    \"subcategories\": [\"Hotels\", \"Hostels\", \"Vacation Rentals\"]\r\n                },\r\n                {\r\n                    \"id\": \"travel-gear\",\r\n                    \"name\": \"Travel Gear\",\r\n                    \"icon\": \"travel.png\",\r\n                    \"subcategories\": [\"Luggage\", \"Backpacks\", \"Travel Accessories\"]\r\n                }\r\n        ]\r\n\r\n    },\r\n    {\r\n        \"id\": \"twoWheeler\",\r\n        \"name\": \"Two Wheelers\",\r\n        \"icon\": \"twowheelers.png\",\r\n        \"subcategories\":[]\r\n    }\r\n    \r\n   \r\n]\r\n"
  },
  {
    "path": "js/categoryjs.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", function () {\r\n    const categoriesList = document.getElementById(\"categories\");\r\n\r\n    function createCategoryItem(categoryData) {\r\n        console.log(\"Creating category item for:\", categoryData.name);\r\n        const categoryItem = document.createElement(\"li\");\r\n        categoryItem.id = categoryData.id;\r\n\r\n        const icon = document.createElement(\"img\");\r\n        icon.src = \"img/\" + categoryData.icon;\r\n\r\n        const nameLink = document.createElement(\"a\");\r\n        nameLink.href = \"#\"; // Default href is \"#\"\r\n        nameLink.textContent = categoryData.name;\r\n\r\n        const name = document.createElement(\"span\");\r\n        name.appendChild(document.createElement(\"br\"));\r\n        name.appendChild(nameLink);\r\n\r\n        categoryItem.appendChild(icon);\r\n        categoryItem.appendChild(name);\r\n\r\n        const subcategoriesList = document.createElement(\"div\");\r\n        subcategoriesList.classList.add('dropdownbox', `${categoryData.id}`);\r\n\r\n        if (!categoryData.subcategories) {\r\n            const singleItem = document.createElement(\"div\");\r\n            const singleLink = document.createElement(\"a\");\r\n            singleLink.href = \"#\";\r\n            singleLink.textContent = categoryData.name;\r\n            singleItem.appendChild(singleLink);\r\n            subcategoriesList.appendChild(singleItem);\r\n        } else {\r\n            categoryData.subcategories.forEach(function (subcategoryData) {\r\n                if (subcategoryData && subcategoryData.name === undefined) {\r\n                    const singleItem = document.createElement(\"div\");\r\n                    singleItem.textContent = subcategoryData;\r\n                    subcategoriesList.appendChild(singleItem);\r\n                } else if (subcategoryData) {\r\n                    const subcategoryItem = createSubcategoryItem(subcategoryData);\r\n                    subcategoriesList.appendChild(subcategoryItem);\r\n                }\r\n            });\r\n        }\r\n\r\n        categoryItem.appendChild(subcategoriesList);\r\n\r\n        categoryItem.addEventListener('mouseenter', function (event) {\r\n            const existingList = document.querySelector(`.${categoryData.id}`);\r\n            if (existingList) {\r\n                existingList.remove();\r\n            }\r\n            document.querySelector('.categorylist-wrapper').appendChild(subcategoriesList);\r\n            subcategoriesList.style.display = 'block';\r\n        });\r\n\r\n        categoryItem.addEventListener('mouseleave', function (event) {\r\n            const relatedTarget = event.relatedTarget;\r\n            if (!relatedTarget || !relatedTarget.closest(`.${event.target.id}`)) {\r\n                document.querySelectorAll(`.${event.target.id}`).forEach(elem => elem.remove());\r\n                subcategoriesList.style.display = 'none';\r\n            }\r\n        });\r\n\r\n        if (subcategoriesList && subcategoriesList.childNodes.length) {\r\n            subcategoriesList.addEventListener('mouseenter', function(event){\r\n                subcategoriesList.style.display = 'block';\r\n            });\r\n            \r\n            subcategoriesList.addEventListener('mouseleave', function (event) {\r\n                subcategoriesList.style.display = 'none';\r\n                document.querySelectorAll(`.${categoryData.id}`).forEach(elem => elem.remove());\r\n            });\r\n        } else {\r\n            console.log(\"subcategoriesList is not defined or is empty.\");\r\n        }\r\n\r\n        // Add click event listener to redirect to top-offers.html if id is \"top-offers\"\r\n        categoryItem.addEventListener('click', function () {\r\n            if (categoryData.id === \"top-offers\") {\r\n                window.location.href = \"top-offers.html\";\r\n            }\r\n        });\r\n\r\n        return categoryItem;\r\n    }\r\n\r\n    function createSubcategoryItem(subcategoryData) {\r\n        console.log(\"Creating subcategory item for:\", subcategoryData.name);\r\n        // Create the main subcategory item div\r\n        const subcategoryItem = document.createElement(\"div\");\r\n\r\n        // Append the subcategory name\r\n        const subcategoryName = document.createElement(\"div\");\r\n        subcategoryName.textContent = subcategoryData.name;\r\n        subcategoryName.className = subcategoryData.id;\r\n        subcategoryItem.appendChild(subcategoryName);\r\n\r\n        // If there are subcategories, create a subsubcategories list\r\n        if (subcategoryData.subcategories) {\r\n            const subsubcategoriesList = document.createElement(\"div\");\r\n            subsubcategoriesList.id = subcategoryData.id;\r\n            subsubcategoriesList.className = \"subdropdown\";\r\n\r\n            const moreInText = document.createElement(\"div\");\r\n            moreInText.textContent = `More in ${subcategoryData.name}`;\r\n            subsubcategoriesList.appendChild(moreInText);\r\n\r\n            // Iterate over subcategories and append each subsubcategory item\r\n            subcategoryData.subcategories.forEach(function (subsubcategoryData) {\r\n                const subsubcategoryItem = document.createElement(\"div\");\r\n                subsubcategoryItem.textContent = subsubcategoryData;\r\n                subsubcategoriesList.appendChild(subsubcategoryItem);\r\n            });\r\n\r\n            subcategoryItem.appendChild(subsubcategoriesList);\r\n        }\r\n\r\n        // Append the side arrow span\r\n        const sideArrow = document.createElement(\"span\");\r\n        sideArrow.className = 'sidearrow';\r\n        subcategoryItem.appendChild(sideArrow);\r\n\r\n        return subcategoryItem;\r\n    }\r\n\r\n    fetch('js/categoryData.json')\r\n        .then(response => response.json())\r\n        .then(data => {\r\n            console.log(\"Fetched data:\", data);\r\n            data.forEach(function (categoryData) {\r\n                const categoryItem = createCategoryItem(categoryData);\r\n                categoriesList.appendChild(categoryItem);\r\n            });\r\n        })\r\n        .catch(error => console.error('Error fetching category data:', error));\r\n});\r\n"
  },
  {
    "path": "js/componentsFetch.js",
    "content": "\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    const components = [\r\n        { id: 'footer', url: 'footer/footer.html' },\r\n        { id: 'footer-login', url: '../footer/footer.html' }\r\n    ];\r\n\r\n    components.forEach(component => {\r\n        fetch(component.url)\r\n            .then(response => response.text())\r\n            .then(data => {\r\n                document.getElementById(component.id).innerHTML = data;\r\n            })\r\n            .catch(error => console.error(`Error loading ${component.url}:`, error));\r\n    });\r\n});"
  },
  {
    "path": "js/contactus.js",
    "content": "document.getElementById(\"contact-form\").reset();\r\nemailjs.init({\r\n      publicKey: \"your_api_key\",\r\n});\r\n// Feedback JS\r\nfunction handleSubmit() {\r\n\r\n\r\nemailjs.sendForm('your_service_id', 'your_template_id',\"#contact-form\").then(\r\n(response) => {\r\nconsole.log('SUCCESS!',  response.status, response.text);\r\n},\r\n(error) => {\r\nconsole.log('FAILED...', error);\r\n},\r\n);\r\n\r\n\r\n\r\n\r\n\r\nsetTimeout(function() {\r\nmessageElement.style.display = \"none\";\r\ndocument.getElementById(\"contact-form\").reset();\r\n}, 3000);\r\n\r\n\r\n\r\n\r\n\r\n\r\n};\r\n"
  },
  {
    "path": "js/fetchProductOfIndex.js",
    "content": "\r\n// product fetch\r\n// Function to create a product card\r\nfunction createProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n\r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n  }\r\n  \r\n  // Function to populate rendom products\r\n  function rendom_products(products) {\r\n    const productList = document.getElementById(\"rendom-product\");\r\n    productList.innerHTML = products\r\n      .map((product) => createProductCard(product))\r\n      .join(\"\");\r\n  }\r\n  \r\n  let currentBestDealIndex = 0;\r\n  const bestDealItemsPerPage = 6;\r\n  let allBestDealProducts = [];\r\n  \r\n  function best_deal_products(products) {\r\n      allBestDealProducts = products;\r\n      currentBestDealIndex = 0;\r\n      loadMoreBestDealProducts();\r\n  }\r\n  \r\n  function loadMoreBestDealProducts() {\r\n      const productList = document.getElementById(\"best-deal-product\");\r\n      const newProducts = allBestDealProducts.slice(currentBestDealIndex, currentBestDealIndex + bestDealItemsPerPage);\r\n      productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(\"\");\r\n      currentBestDealIndex += bestDealItemsPerPage;\r\n      toggleViewMoreBestDealButton();\r\n  }\r\n  \r\n  function toggleViewMoreBestDealButton() {\r\n      const viewMoreBtn = document.getElementById(\"viewMoreBestDealBtn\");\r\n      if (currentBestDealIndex >= allBestDealProducts.length) {\r\n          viewMoreBtn.style.display = \"none\";\r\n      } else {\r\n          viewMoreBtn.style.display = \"block\";\r\n      }\r\n  }\r\n  \r\n  document.getElementById(\"viewMoreBestDealBtn\").addEventListener(\"click\", loadMoreBestDealProducts);\r\n\r\n\r\n\r\n  let currentTopSelectionIndex = 0;\r\n  const topSelectionItemsPerPage = 6;\r\n  let allTopSelectionProducts = [];\r\n  \r\n  function top_selection_products(products) {\r\n      allTopSelectionProducts = products;\r\n      currentTopSelectionIndex = 0;\r\n      loadMoreTopSelectionProducts();\r\n  }\r\n  \r\n  function loadMoreTopSelectionProducts() {\r\n      const productList = document.getElementById(\"top-selection-product\");\r\n      const newProducts = allTopSelectionProducts.slice(currentTopSelectionIndex, currentTopSelectionIndex + topSelectionItemsPerPage);\r\n      productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(\"\");\r\n      currentTopSelectionIndex += topSelectionItemsPerPage;\r\n      toggleViewMoreTopSelectionButton();\r\n  }\r\n  \r\n  function toggleViewMoreTopSelectionButton() {\r\n      const viewMoreBtn = document.getElementById(\"viewMoreTopSelectionBtn\");\r\n      if (currentTopSelectionIndex >= allTopSelectionProducts.length) {\r\n          viewMoreBtn.style.display = \"none\";\r\n      } else {\r\n          viewMoreBtn.style.display = \"block\";\r\n      }\r\n  }\r\n  \r\n  document.getElementById(\"viewMoreTopSelectionBtn\").addEventListener(\"click\", loadMoreTopSelectionProducts);\r\n  \r\n  \r\n  let currentMobileUnder15000Index = 0;\r\n  const mobileUnder15000ItemsPerPage = 6;\r\n  let allMobileUnder15000Products = [];\r\n  \r\n  function mobileUnder15000(products) {\r\n      allMobileUnder15000Products = products;\r\n      currentMobileUnder15000Index = 0;\r\n      loadMoreMobileUnder15000Products();\r\n  }\r\n  \r\n  function loadMoreMobileUnder15000Products() {\r\n      const productList = document.getElementById(\"mobileUnder15000-product\");\r\n      const newProducts = allMobileUnder15000Products.slice(currentMobileUnder15000Index, currentMobileUnder15000Index + mobileUnder15000ItemsPerPage);\r\n      productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(\"\");\r\n      currentMobileUnder15000Index += mobileUnder15000ItemsPerPage;\r\n      toggleViewMoreMobileUnder15000Button();\r\n  }\r\n  \r\n  function toggleViewMoreMobileUnder15000Button() {\r\n      const viewMoreBtn = document.getElementById(\"viewMoreMobileUnder15000Btn\");\r\n      if (currentMobileUnder15000Index >= allMobileUnder15000Products.length) {\r\n          viewMoreBtn.style.display = \"none\";\r\n      } else {\r\n          viewMoreBtn.style.display = \"block\";\r\n      }\r\n  }\r\n  \r\n  document.getElementById(\"viewMoreMobileUnder15000Btn\").addEventListener(\"click\", loadMoreMobileUnder15000Products);\r\n  \r\n  \r\n  \r\n  // Function to s2-product\r\n  function s2_products(products) {\r\n    const productList = document.getElementById(\"s2-product\");\r\n    productList.innerHTML = products\r\n      .map((product) => createProductCard(product))\r\n      .join(\"\");\r\n  }\r\n  \r\n  let currentShopUnder500Index = 0;\r\n  const shopUnder500ItemsPerPage = 6;\r\n  let allShopUnder500Products = [];\r\n  \r\n  function shopUnder500(products) {\r\n      allShopUnder500Products = products;\r\n      currentShopUnder500Index = 0;\r\n      loadMoreShopUnder500Products();\r\n  }\r\n  \r\n  function loadMoreShopUnder500Products() {\r\n      const productList = document.getElementById(\"shopUnder500-product\");\r\n      const newProducts = allShopUnder500Products.slice(currentShopUnder500Index, currentShopUnder500Index + shopUnder500ItemsPerPage);\r\n      productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(\"\");\r\n      currentShopUnder500Index += shopUnder500ItemsPerPage;\r\n      toggleViewMoreShopUnder500Button();\r\n  }\r\n  \r\n  function toggleViewMoreShopUnder500Button() {\r\n      const viewMoreBtn = document.getElementById(\"viewMoreShopUnder500Btn\");\r\n      if (currentShopUnder500Index >= allShopUnder500Products.length) {\r\n          viewMoreBtn.style.display = \"none\";\r\n      } else {\r\n          viewMoreBtn.style.display = \"block\";\r\n      }\r\n  }\r\n  \r\n  document.getElementById(\"viewMoreShopUnder500Btn\").addEventListener(\"click\", loadMoreShopUnder500Products);\r\n  \r\n  \r\n  \r\n  // best of Electronics \r\n  function bestOfEelecronics_products(products) {\r\n    const productList = document.getElementById(\"bestOfElectronics-product\");\r\n    productList.innerHTML = products\r\n      .map((product) => createProductCard(product))\r\n      .join(\"\");\r\n  }\r\n\r\nlet currentIndex = 0;\r\nconst itemsPerPage = 6;\r\nlet allProducts = [];\r\n\r\nfunction seletcYourChoice_products(products) {\r\n    allProducts = products;\r\n    currentIndex = 0;\r\n    loadMoreProducts();\r\n}\r\n\r\nfunction loadMoreProducts() {\r\n    const productList = document.getElementById(\"seletcYourChoice-product\");\r\n    const newProducts = allProducts.slice(currentIndex, currentIndex + itemsPerPage);\r\n    productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(\"\");\r\n    currentIndex += itemsPerPage;\r\n    toggleViewMoreButton();\r\n}\r\n\r\nfunction toggleViewMoreButton() {\r\n    const viewMoreBtn = document.getElementById(\"viewMoreBtn\");\r\n    if (currentIndex >= allProducts.length) {\r\n        viewMoreBtn.style.display = \"none\";\r\n    } else {\r\n        viewMoreBtn.style.display = \"block\";\r\n    }\r\n}\r\n\r\ndocument.getElementById(\"viewMoreBtn\").addEventListener(\"click\", loadMoreProducts);\r\n\r\nfunction shopUnder500(products) {\r\n    const productList = document.getElementById(\"shopUnder500-product\");\r\n    productList.innerHTML = products.map((product) => createProductCard(product)).join(\"\");\r\n}\r\n\r\nfunction bestOfEelecronics_products(products) {\r\n    const productList = document.getElementById(\"bestOfElectronics-product\");\r\n    productList.innerHTML = products.map((product) => createProductCard(product)).join(\"\");\r\n}\r\n\r\n// General function to fetch and shuffle data\r\nfunction fetchAndShuffleData(url, callback, numberOfProducts) {\r\n    fetch(url)\r\n        .then((response) => response.json())\r\n        .then((data) => {\r\n            // Shuffle the array using the Fisher-Yates algorithm\r\n            for (let i = data.length - 1; i > 0; i--) {\r\n                const j = Math.floor(Math.random() * (i + 1));\r\n                [data[i], data[j]] = [data[j], data[i]];\r\n            }\r\n\r\n            // Select the desired number of products from the shuffled array\r\n            const selectedProducts = data.slice(0, numberOfProducts);\r\n\r\n            // Call the callback function with the selected products\r\n            callback(selectedProducts);\r\n        })\r\n        .catch((error) => console.error(\"Error fetching data:\", error));\r\n}\r\n  \r\n  \r\n  // General function to fetch 15000 rs mobile data\r\n  function fetchAndShuffleDataMobile15000(url, callback, numberOfProducts) {\r\n    fetch(url)\r\n      .then((response) => response.json())\r\n      .then((data) => {\r\n  \r\n        const f_data = data.filter(product => product.price<=15000 && product.category=='mobile');\r\n        // Shuffle the array using the Fisher-Yates algorithm\r\n        for (let i = f_data.length - 1; i > 0; i--) {\r\n          const j = Math.floor(Math.random() * (i + 1));\r\n          [f_data[i], f_data[j]] = [f_data[j], f_data[i]];\r\n        }\r\n  \r\n        // Select the desired number of products from the shuffled array\r\n        const selectedProducts = f_data.slice(0, numberOfProducts);\r\n  \r\n        // Call the callback function with the selected products\r\n        callback(selectedProducts);\r\n      })\r\n      .catch((error) => console.error(\"Error fetching data:\", error));\r\n  }\r\n  \r\n  \r\n  // best of electronics \r\n  function bestOfEelecronics(url, callback, numberOfProducts) {\r\n    fetch(url)\r\n      .then((response) => response.json())\r\n      .then((data) => {\r\n  \r\n        const f_data = data.filter(product => product.category=='electronics');\r\n        // Shuffle the array using the Fisher-Yates algorithm\r\n        for (let i = f_data.length - 1; i > 0; i--) {\r\n          const j = Math.floor(Math.random() * (i + 1));\r\n          [f_data[i], f_data[j]] = [f_data[j], f_data[i]];\r\n        }\r\n  \r\n        // Select the desired number of products from the shuffled array\r\n        const selectedProducts = f_data.slice(0, numberOfProducts);\r\n  \r\n        // Call the callback function with the selected products\r\n        callback(selectedProducts);\r\n      })\r\n      .catch((error) => console.error(\"Error fetching data:\", error));\r\n  }\r\n  \r\n  \r\n  // General function to fetch under 500 data\r\n  function fetchAndShuffleDataUnder(url, callback, numberOfProducts) {\r\n    fetch(url)\r\n      .then((response) => response.json())\r\n      .then((data) => {\r\n  \r\n        const f_data = data.filter(product => product.price<=500);\r\n        // Shuffle the array using the Fisher-Yates algorithm\r\n        for (let i = f_data.length - 1; i > 0; i--) {\r\n          const j = Math.floor(Math.random() * (i + 1));\r\n          [f_data[i], f_data[j]] = [f_data[j], f_data[i]];\r\n        }\r\n  \r\n        // Select the desired number of products from the shuffled array\r\n        const selectedProducts = f_data.slice(0, numberOfProducts);\r\n  \r\n        // Call the callback function with the selected products\r\n        callback(selectedProducts);\r\n      })\r\n      .catch((error) => console.error(\"Error fetching data:\", error));\r\n  }\r\n  \r\n  \r\n  \r\n  //  mobileUnder15000Data()\r\n  // Fetch data for best-deal products  rendom products & top selection\r\n  bestOfEelecronics(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", bestOfEelecronics_products, 6);\r\n  \r\n  fetchAndShuffleData(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", rendom_products, 12);\r\n  fetchAndShuffleData(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", best_deal_products, 18);\r\n  fetchAndShuffleData(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", top_selection_products, 12);\r\n  fetchAndShuffleData(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", s2_products, 12);\r\n  fetchAndShuffleData(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", seletcYourChoice_products, 120);\r\n  \r\n  fetchAndShuffleDataMobile15000(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", mobileUnder15000, 12);\r\n  fetchAndShuffleDataUnder(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\", shopUnder500, 18);\r\n  \r\n  \r\n  \r\n"
  },
  {
    "path": "js/fkMobileApp.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n  const components = [\r\n    { id: \"footer-fkMobileApp\", url: \"../footer/footer.html\" },\r\n    { id: \"header-fkMobileApp\", url: \"../header/header.html\" },\r\n  ];\r\n\r\n  components.forEach((component) => {\r\n    fetch(component.url)\r\n      .then((response) => response.text())\r\n      .then((data) => {\r\n        document.getElementById(component.id).innerHTML = data;\r\n      })\r\n      .catch((error) =>\r\n        console.error(`Error loading ${component.url}:`, error)\r\n      );\r\n  });\r\n});\r\n\r\n"
  },
  {
    "path": "js/giftCard.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", function () {\r\n  const amountSelect = document.getElementById(\"amount\");\r\n  const selectedAmount = document.getElementById(\"selectedAmount\");\r\n  const form = document.getElementById(\"giftCardForm\");\r\n\r\n  amountSelect.addEventListener(\"change\", function () {\r\n    selectedAmount.textContent = `₹${amountSelect.value}`;\r\n  });\r\n\r\n  form.addEventListener(\"submit\", function (event) {\r\n    event.preventDefault();\r\n    alert(`You have selected a gift card with amount: ₹${amountSelect.value}`);\r\n  });\r\n});\r\n\r\n\r\n// fetch footer\r\n\r\ndocument.addEventListener(\"DOMContentLoaded\", () => {\r\n  const components = [\r\n    { id: \"footer-giftCard\", url: \"../footer/footer.html\" },\r\n  ];\r\n\r\n  components.forEach((component) => {\r\n    fetch(component.url)\r\n      .then((response) => response.text())\r\n      .then((data) => {\r\n        document.getElementById(component.id).innerHTML = data;\r\n      })\r\n      .catch((error) =>\r\n        console.error(`Error loading ${component.url}:`, error)\r\n      );\r\n  });\r\n});\r\n"
  },
  {
    "path": "js/homeHeader.js",
    "content": "function toggleDropdownMenu(event) {\r\n  const dropdownMenu = event.currentTarget.querySelector(\r\n    \".homeHeader .dropdown-menu\"\r\n  );\r\n  if (dropdownMenu) {\r\n    if (event.type === \"mouseenter\") {\r\n      dropdownMenu.classList.add(\"show\");\r\n      // console.log(\"shwo\")\r\n    } else if (event.type === \"mouseleave\") {\r\n      dropdownMenu.classList.remove(\"show\");\r\n      // console.log(\"hide\")\r\n    }\r\n  }\r\n}\r\n\r\n// Adding event listeners to both elements\r\nconst navbarDropdown = document.getElementById(\"navbarDropdow\");\r\nconst moreLinksDropdown = document.getElementById(\"moreLinksDropdow\");\r\n\r\nif (navbarDropdown) {\r\n  navbarDropdown.addEventListener(\"mouseenter\", toggleDropdownMenu);\r\n  navbarDropdown.addEventListener(\"mouseleave\", toggleDropdownMenu);\r\n}\r\n\r\nif (moreLinksDropdown) {\r\n  moreLinksDropdown.addEventListener(\"mouseenter\", toggleDropdownMenu);\r\n  moreLinksDropdown.addEventListener(\"mouseleave\", toggleDropdownMenu);\r\n}\r\n\r\n// for kart\r\n\r\ntry {\r\n  const cartItemsFromStorage = JSON.parse(\r\n    localStorage.getItem(\"filteredProducts\")\r\n  );\r\n  let cartItemslen = cartItemsFromStorage.length;\r\n  if(cartItemslen>0){\r\n     document.getElementById(\"cartItems\").style.visibility=\"visible\";\r\n     let toggleItmDis = document.getElementById(\"cartItems\");\r\n     let dataItms = document.getElementById(\"cartItems\");\r\n     dataItms.innerText = cartItemslen;\r\n  }\r\n  else{\r\n    document.getElementById(\"cartItems\").style.visibility=\"hidden\";\r\n  }\r\n  \r\n} catch (error) {\r\n  document.getElementById(\"cartItems\").style.display=\"none\"\r\n  console.warn(error)\r\n}\r\n"
  },
  {
    "path": "js/index.js",
    "content": "// footer and content page load \r\ndocument.addEventListener(\"DOMContentLoaded\", () => {\r\n  const components = [\r\n    // { id: \"content-page\", url: \"pages/content-page.html\" },\r\n    { id: \"footer\", url: \"footer/footer.html\" },\r\n  ];\r\n\r\n  components.forEach((component) => {\r\n    fetch(component.url)\r\n      .then((response) => response.text())\r\n      .then((data) => {\r\n        document.getElementById(component.id).innerHTML = data;\r\n      })\r\n      .catch((error) =>\r\n        console.error(`Error loading ${component.url}:`, error)\r\n      );\r\n  });\r\n});\r\n// end -footer\r\n\r\n\r\n// Show or hide the \"Go to Top\" button based on scroll position\r\n document.addEventListener(\"DOMContentLoaded\", function () {\r\n  const backToTopButton = document.getElementById('goToTopBtn');\r\n\r\n  function checkButtonVisibility() {\r\n      if (window.innerWidth > 100 && window.scrollY > 100) {\r\n          backToTopButton.style.display = 'block';\r\n      } else {\r\n          backToTopButton.style.display = 'none';\r\n      }\r\n  }\r\n\r\n// Show or hide the \"Go to Top\" button based on scroll position\r\nwindow.addEventListener(\"scroll\", function() {\r\n    var scrollToTopBtn = document.getElementById(\"goToTopBtn\");\r\n    if (window.scrollY > 100) {\r\n        scrollToTopBtn.classList.remove(\"hidden\");\r\n    } else {\r\n        scrollToTopBtn.classList.add(\"hidden\");\r\n    }\r\n});\r\n\r\n\r\n  window.addEventListener('scroll', checkButtonVisibility);\r\n  window.addEventListener('resize', checkButtonVisibility);\r\n\r\n  backToTopButton.addEventListener('click', function () {\r\n      window.scrollTo({\r\n          top: 0,\r\n          behavior: 'smooth' \r\n      });\r\n  });\r\n  checkButtonVisibility();\r\n});\r\n\r\n\r\n\r\n// loader\r\n// old\r\n// setTimeout(function() {\r\n//     document.getElementById('loader').style.display = 'none';\r\n//   }, 2000);\r\n\r\n// new\r\n  document.addEventListener(\"DOMContentLoaded\", function() {\r\n\t\tconst loader = document.querySelector(\".loader-container\");\r\n\t\tsetTimeout(function() {\r\n\t\t\tloader.style.display = \"none\";\r\n\t\t}, 2000);\r\n\t});\r\n\r\n\r\n  document.addEventListener(\"DOMContentLoaded\", function() {\r\n    fetch('../footer/footer.html')\r\n        .then(response => response.text())\r\n        .then(data => {\r\n            document.getElementById('footer').innerHTML = data;\r\n        })\r\n        .catch(error => console.error('Error loading footer:', error));\r\n});\r\n"
  },
  {
    "path": "js/ipcwdsOnlyDist.js",
    "content": "const ipcwds={515004:\"ANANTHAPUR\",515731:\"ANANTHAPUR\",515002:\"ANANTHAPUR\",515766:\"ANANTHAPUR\",515415:\"ANANTHAPUR\",515822:\"ANANTHAPUR\",515445:\"ANANTHAPUR\",515001:\"ANANTHAPUR\",515741:\"ANANTHAPUR\",515775:\"ANANTHAPUR\",515455:\"ANANTHAPUR\",515465:\"ANANTHAPUR\",515751:\"ANANTHAPUR\",515867:\"ANANTHAPUR\",515763:\"ANANTHAPUR\",515767:\"ANANTHAPUR\",515722:\"ANANTHAPUR\",515863:\"ANANTHAPUR\",515425:\"ANANTHAPUR\",515402:\"ANANTHAPUR\",515761:\"ANANTHAPUR\",515787:\"ANANTHAPUR\",515413:\"ANANTHAPUR\",515870:\"ANANTHAPUR\",515871:\"ANANTHAPUR\",515411:\"ANANTHAPUR\",515408:\"ANANTHAPUR\",515401:\"ANANTHAPUR\",515812:\"ANANTHAPUR\",515701:\"ANANTHAPUR\",515865:\"ANANTHAPUR\",515414:\"ANANTHAPUR\",515842:\"ANANTHAPUR\",515405:\"ANANTHAPUR\",515611:\"ANANTHAPUR\",515721:\"ANANTHAPUR\",515711:\"ANANTHAPUR\",515765:\"ANANTHAPUR\",515803:\"ANANTHAPUR\",515832:\"ANANTHAPUR\",515005:\"ANANTHAPUR\",515801:\"ANANTHAPUR\",515872:\"ANANTHAPUR\",515774:\"ANANTHAPUR\",515435:\"ANANTHAPUR\",515003:\"ANANTHAPUR\",517425:\"Chittoor\",517403:\"Chittoor\",517280:\"Chittoor\",517124:\"Chittoor\",517415:\"Chittoor\",517421:\"Chittoor\",517326:\"Madanapalle\",517390:\"Chittoor\",517432:\"Chittoor\",517247:\"Chittoor\",517167:\"Chittoor\",517401:\"Chittoor\",517129:\"Chittoor\",517370:\"Chittoor\",517424:\"Chittoor\",517351:\"Chittoor\",517127:\"Chittoor\",517418:\"Chittoor\",517416:\"Chittoor\",517426:\"Chittoor\",517422:\"Chittoor\",517132:\"Chittoor\",517123:\"Chittoor\",517423:\"Chittoor\",517408:\"Chittoor\",517257:\"Chittoor\",517419:\"Chittoor\",517417:\"Chittoor\",517002:\"Chittoor\",517004:\"Chittoor\",517126:\"Chittoor\",517319:\"Chittoor\",517001:\"Chittoor\",517599:\"Chittoor\",517131:\"Chittoor\",517130:\"Chittoor\",517125:\"Chittoor\",517352:\"Chittoor\",517429:\"Chittoor\",517128:\"Chittoor\",517414:\"Chittoor\",517391:\"Chittoor\",517350:\"Chittoor\",517325:\"Chittoor\",516270:\"KADAPA\",516269:\"KADAPA\",516150:\"KADAPA\",516215:\"KADAPA\",516259:\"KADAPA\",516193:\"KADAPA\",516501:\"KADAPA\",516003:\"KADAPA\",516001:\"KADAPA\",516107:\"KADAPA\",516257:\"KADAPA\",516105:\"KADAPA\",516228:\"KADAPA\",516104:\"KADAPA\",516203:\"KADAPA\",516247:\"KADAPA\",516267:\"KADAPA\",516227:\"KADAPA\",516502:\"KADAPA\",516101:\"KADAPA\",516503:\"KADAPA\",516162:\"KADAPA\",516129:\"KADAPA\",516128:\"KADAPA\",516233:\"KADAPA\",516130:\"KADAPA\",516110:\"KADAPA\",516214:\"KADAPA\",516108:\"KADAPA\",516126:\"KADAPA\",516217:\"KADAPA\",516002:\"KADAPA\",516004:\"KADAPA\",516152:\"KADAPA\",516504:\"KADAPA\",516163:\"KADAPA\",516268:\"KADAPA\",516213:\"KADAPA\",516237:\"KADAPA\",516505:\"KADAPA\",516151:\"KADAPA\",516127:\"KADAPA\",516115:\"KADAPA\",516005:\"KADAPA\",515621:\"Ananthapur\",515124:\"Ananthapur\",515311:\"Ananthapur\",515281:\"Ananthapur\",515154:\"Ananthapur\",515556:\"Ananthapur\",515144:\"Ananthapur\",515301:\"Ananthapur\",515651:\"Ananthapur\",515661:\"Ananthapur\",515631:\"Ananthapur\",515672:\"Ananthapur\",515501:\"Ananthapur\",515134:\"Ananthapur\",515571:\"Ananthapur\",515110:\"Ananthapur\",515305:\"Ananthapur\",515261:\"Ananthapur\",515211:\"Ananthapur\",515641:\"Ananthapur\",515341:\"Ananthapur\",515212:\"Ananthapur\",515331:\"Ananthapur\",515202:\"Hindupur\",515271:\"Ananthapur\",515591:\"Ananthapur\",515531:\"Ananthapur\",515123:\"Ananthapur\",515511:\"Ananthapur\",515241:\"Ananthapur\",515303:\"Ananthapur\",515601:\"Ananthapur\",515122:\"Ananthapur\",515101:\"Ananthapur\",515541:\"Ananthapur\",515551:\"Ananthapur\",515291:\"Ananthapur\",515521:\"Ananthapur\",515671:\"Ananthapur\",515321:\"Ananthapur\",515164:\"Ananthapur\",515581:\"Ananthapur\",515159:\"Ananthapur\",515231:\"Ananthapur\",515561:\"Ananthapur\",515286:\"Ananthapur\",515201:\"Ananthapur\",515133:\"Ananthapur\",518467:\"Kurnool\",518533:\"Kurnool\",518302:\"Kurnool\",518301:\"Kurnool\",518225:\"Kurnool\",518405:\"Kurnool\",518465:\"Kurnool\",518463:\"Kurnool\",518220:\"Kurnool\",518432:\"Kurnool\",518395:\"Kurnool\",518216:\"Kurnool\",518390:\"Kurnool\",518313:\"Kurnool\",518005:\"Kurnool\",518347:\"Kurnool\",518422:\"Kurnool\",518350:\"Kurnool\",518222:\"Kurnool\",518007:\"Kurnool\",518344:\"Kurnool\",518006:\"Kurnool\",518598:\"Kurnool\",518323:\"Kurnool\",518401:\"Kurnool\",518396:\"Kurnool\",518348:\"Kurnool\",518218:\"Kurnool\",518462:\"Kurnool\",518599:\"Kurnool\",518004:\"Kurnool\",518411:\"Kurnool\",518508:\"Kurnool\",518412:\"Kurnool\",518468:\"Kurnool\",518206:\"Kurnool\",518002:\"Kurnool\",518380:\"Kurnool\",518221:\"Kurnool\",518464:\"Kurnool\",518345:\"Kurnool\",518442:\"Kurnool\",518308:\"Kurnool\",518346:\"Kurnool\",518333:\"Kurnool\",518360:\"Kurnool\",518452:\"Kurnool\",518010:\"Kurnool\",518466:\"Kurnool\",518385:\"Kurnool\",518003:\"Kurnool\",518349:\"Kurnool\",518217:\"Kurnool\",518343:\"Kurnool\",518001:\"Kurnool\",518102:\"Kurnool\",518101:\"Kurnool\",518523:\"KURNOOL\",518123:\"KURNOOL\",518543:\"KURNOOL\",523372:\"PRAKASAM\",518145:\"KURNOOL\",523328:\"PRAKASAM\",523356:\"PRAKASAM\",518196:\"KURNOOL\",518112:\"KURNOOL\",518165:\"KURNOOL\",523373:\"PRAKASAM\",518134:\"KURNOOL\",523357:\"PRAKASAM\",523330:\"PRAKASAM\",518135:\"KURNOOL\",523315:\"PRAKASAM\",523326:\"PRAKASAM\",523368:\"PRAKASAM\",518176:\"KURNOOL\",518124:\"KURNOOL\",523305:\"PRAKASAM\",523335:\"PRAKASAM\",523370:\"PRAKASAM\",518502:\"KURNOOL\",523331:\"PRAKASAM\",523336:\"PRAKASAM\",523320:\"PRAKASAM\",518573:\"KURNOOL\",523346:\"PRAKASAM\",523333:\"PRAKASAM\",518510:\"KURNOOL\",518583:\"KURNOOL\",518122:\"KURNOOL\",523334:\"PRAKASAM\",523332:\"PRAKASAM\",523327:\"PRAKASAM\",518155:\"KURNOOL\",518512:\"KURNOOL\",523367:\"PRAKASAM\",518553:\"KURNOOL\",518594:\"KURNOOL\",518511:\"KURNOOL\",523329:\"PRAKASAM\",518513:\"KURNOOL\",518166:\"KURNOOL\",518674:\"KURNOOL\",518593:\"KURNOOL\",523369:\"PRAKASAM\",518186:\"KURNOOL\",518563:\"KURNOOL\",523371:\"PRAKASAM\",523316:\"PRAKASAM\",518501:\"KURNOOL\",516339:\"KADAPA\",516421:\"KADAPA\",516454:\"KADAPA\",516396:\"KADAPA\",516350:\"KADAPA\",516356:\"KADAPA\",516391:\"KADAPA\",516434:\"KADAPA\",516293:\"KADAPA\",516172:\"KADAPA\",516355:\"KADAPA\",516321:\"KADAPA\",516484:\"KADAPA\",516390:\"KADAPA\",516362:\"KADAPA\",516289:\"KADAPA\",516359:\"KADAPA\",516411:\"KADAPA\",516175:\"KADAPA\",516474:\"KADAPA\",516432:\"KADAPA\",516401:\"KADAPA\",516433:\"KADAPA\",516349:\"KADAPA\",516431:\"KADAPA\",516380:\"KADAPA\",516218:\"KADAPA\",516361:\"KADAPA\",516464:\"KADAPA\",516310:\"KADAPA\",516312:\"KADAPA\",516444:\"KADAPA\",516360:\"KADAPA\",516216:\"KADAPA\",516173:\"KADAPA\",516330:\"KADAPA\",516309:\"KADAPA\",516311:\"KADAPA\",516439:\"KADAPA\",516329:\"KADAPA\",517507:\"CHITTOOR\",517643:\"CHITTOOR\",517592:\"CHITTOOR\",517589:\"CHITTOOR\",517587:\"CHITTOOR\",517591:\"CHITTOOR\",517640:\"CHITTOOR\",517214:\"CHITTOOR\",517536:\"CHITTOOR\",517645:\"CHITTOOR\",517571:\"CHITTOOR\",517582:\"CHITTOOR\",517588:\"CHITTOOR\",517291:\"CHITTOOR\",517641:\"CHITTOOR\",517619:\"CHITTOOR\",517551:\"CHITTOOR\",517236:\"CHITTOOR\",517581:\"CHITTOOR\",517642:\"CHITTOOR\",517520:\"CHITTOOR\",517102:\"CHITTOOR\",517277:\"CHITTOOR\",517561:\"CHITTOOR\",517213:\"CHITTOOR\",517194:\"CHITTOOR\",517501:\"CHITTOOR\",517569:\"CHITTOOR\",517237:\"CHITTOOR\",517590:\"CHITTOOR\",517505:\"CHITTOOR\",517192:\"CHITTOOR\",517101:\"CHITTOOR\",517526:\"CHITTOOR\",517583:\"CHITTOOR\",517305:\"CHITTOOR\",517113:\"CHITTOOR\",517193:\"CHITTOOR\",517541:\"CHITTOOR\",517234:\"CHITTOOR\",517112:\"CHITTOOR\",517152:\"CHITTOOR\",517503:\"CHITTOOR\",517172:\"CHITTOOR\",517620:\"CHITTOOR\",517235:\"CHITTOOR\",517644:\"CHITTOOR\",517297:\"CHITTOOR\",517586:\"CHITTOOR\",517299:\"CHITTOOR\",517584:\"CHITTOOR\",517502:\"CHITTOOR\",517506:\"CHITTOOR\",517646:\"CHITTOOR\",517504:\"CHITTOOR\",534267:\"West Godavari\",534266:\"West Godavari\",534268:\"WEST GODAVARI\",534250:\"WEST GODAVARI\",534235:\"West Godavari\",534320:\"West Godavari\",534280:\"West Godavari\",534126:\"West Godavari\",534238:\"West Godavari\",534208:\"West Godavari\",534202:\"West Godavari\",534330:\"West Godavari\",534230:\"West Godavari\",534217:\"West Godavari\",534199:\"West Godavari\",534123:\"West Godavari\",534134:\"West Godavari\",534225:\"West Godavari\",534243:\"West Godavari\",534207:\"West Godavari\",534201:\"West Godavari\",534206:\"West Godavari\",534124:\"West Godavari\",534216:\"West Godavari\",534204:\"West Godavari\",534281:\"West Godavari\",534269:\"West Godavari\",534275:\"West Godavari\",534227:\"West Godavari\",534239:\"West Godavari\",534237:\"West Godavari\",534328:\"West Godavari\",534244:\"West Godavari\",534211:\"West Godavari\",534326:\"West Godavari\",534122:\"West Godavari\",534265:\"West Godavari\",534240:\"West Godavari\",534236:\"West Godavari\",534222:\"West Godavari\",534338:\"West Godavari\",534210:\"West Godavari\",534209:\"West Godavari\",534260:\"West Godavari\",534218:\"West Godavari\",534327:\"West Godavari\",534324:\"West Godavari\",534247:\"West Godavari\",534245:\"West Godavari\",534215:\"West Godavari\",534416:\"WEST GODAVARI\",534456:\"WEST GODAVARI\",534449:\"WEST GODAVARI\",534427:\"WEST GODAVARI\",534455:\"WEST GODAVARI\",534448:\"WEST GODAVARI\",534444:\"WEST GODAVARI\",534401:\"WEST GODAVARI\",534003:\"WEST GODAVARI\",534426:\"WEST GODAVARI\",534002:\"WEST GODAVARI\",534312:\"WEST GODAVARI\",534460:\"WEST GODAVARI\",534475:\"WEST GODAVARI\",534001:\"WEST GODAVARI\",534425:\"WEST GODAVARI\",534007:\"WEST GODAVARI\",534462:\"WEST GODAVARI\",534451:\"WEST GODAVARI\",534004:\"WEST GODAVARI\",534406:\"WEST GODAVARI\",534432:\"WEST GODAVARI\",534442:\"WEST GODAVARI\",534461:\"WEST GODAVARI\",534006:\"WEST GODAVARI\",534005:\"WEST GODAVARI\",534467:\"WEST GODAVARI\",534450:\"WEST GODAVARI\",534437:\"WEST GODAVARI\",534447:\"WEST GODAVARI\",534452:\"WEST GODAVARI\",534311:\"WEST GODAVARI\",534435:\"WEST GODAVARI\",521333:\"KRISHNA\",521390:\"KRISHNA\",521213:\"KRISHNA\",521340:\"KRISHNA\",521343:\"KRISHNA\",521312:\"KRISHNA\",521324:\"KRISHNA\",521327:\"KRISHNA\",521330:\"KRISHNA\",521215:\"KRISHNA\",521202:\"KRISHNA\",521261:\"KRISHNA\",521106:\"KRISHNA\",521345:\"KRISHNA\",521207:\"KRISHNA\",521105:\"KRISHNA\",521263:\"KRISHNA\",521111:\"KRISHNA\",521260:\"KRISHNA\",521214:\"KRISHNA\",521329:\"KRISHNA\",521325:\"KRISHNA\",521148:\"KRISHNA\",521322:\"KRISHNA\",521323:\"KRISHNA\",521321:\"KRISHNA\",521201:\"KRISHNA\",521301:\"KRISHNA\",521326:\"KRISHNA\",521311:\"KRISHNA\",521344:\"KRISHNA\",524342:\"NELLORE\",524129:\"NELLORE\",524121:\"NELLORE\",524405:\"NELLORE\",524131:\"NELLORE\",524345:\"NELLORE\",524132:\"NELLORE\",524404:\"NELLORE\",524407:\"NELLORE\",524123:\"NELLORE\",524321:\"NELLORE\",524126:\"NELLORE\",524127:\"NELLORE\",524402:\"NELLORE\",524421:\"NELLORE\",524410:\"NELLORE\",524415:\"NELLORE\",524412:\"NELLORE\",524309:\"NELLORE\",524414:\"NELLORE\",524343:\"NELLORE\",524403:\"NELLORE\",524134:\"NELLORE\",524341:\"NELLORE\",524320:\"NELLORE\",524406:\"NELLORE\",524408:\"NELLORE\",524409:\"NELLORE\",524323:\"NELLORE\",524413:\"NELLORE\",524101:\"NELLORE\",524401:\"NELLORE\",524411:\"NELLORE\",524124:\"NELLORE\",522237:\"Guntur\",522238:\"GUNTUR\",522004:\"GUNTUR\",522015:\"GUNTUR\",522007:\"GUNTUR\",522020:\"GUNTUR\",522236:\"GUNTUR\",522017:\"GUNTUR\",522235:\"GUNTUR\",522005:\"GUNTUR\",522112:\"GUNTUR\",522503:\"GUNTUR\",522302:\"GUNTUR\",522018:\"GUNTUR\",522502:\"GUNTUR\",522002:\"GUNTUR\",522001:\"GUNTUR\",522034:\"GUNTUR\",522508:\"GUNTUR\",522305:\"GUNTUR\",522303:\"GUNTUR\",522003:\"GUNTUR\",522006:\"GUNTUR\",522019:\"GUNTUR\",522016:\"GUNTUR\",522509:\"GUNTUR\",522501:\"GUNTUR\",522510:\"GUNTUR\",522009:\"GUNTUR\",521366:\"Krishna\",521149:\"Krishna\",521369:\"Krishna\",521122:\"Krishna\",521121:\"Krishna\",521138:\"Krishna\",521001:\"Krishna\",521136:\"Krishna\",521120:\"Krishna\",521131:\"Krishna\",521126:\"Krishna\",521002:\"Krishna\",521132:\"Krishna\",521003:\"Machilipatnam\",521125:\"Krishna\",521150:\"Krishna\",521356:\"Krishna\",521157:\"Krishna\",521133:\"Krishna\",521328:\"Krishna\",521332:\"Krishna\",521156:\"Krishna\",521135:\"Krishna\",521331:\"Krishna\",521130:\"Krishna\",521162:\"Krishna\",521158:\"Krishna\",522402:\"GUNTUR\",522612:\"GUNTUR\",522647:\"GUNTUR\",522659:\"GUNTUR\",522617:\"GUNTUR\",522415:\"GUNTUR\",522529:\"GUNTUR\",522410:\"GUNTUR\",522658:\"GUNTUR\",522616:\"GUNTUR\",522603:\"GUNTUR\",522611:\"GUNTUR\",522601:\"GUNTUR\",522409:\"GUNTUR\",522436:\"GUNTUR\",522412:\"GUNTUR\",522663:\"GUNTUR\",522411:\"GUNTUR\",522549:\"GUNTUR\",522613:\"GUNTUR\",522408:\"GUNTUR\",522626:\"GUNTUR\",522437:\"GUNTUR\",522661:\"GUNTUR\",522615:\"GUNTUR\",522435:\"GUNTUR\",522649:\"GUNTUR\",522614:\"GUNTUR\",522234:\"GUNTUR\",522414:\"GUNTUR\",522233:\"GUNTUR\",522619:\"GUNTUR\",522403:\"GUNTUR\",522426:\"GUNTUR\",522421:\"GUNTUR\",522657:\"GUNTUR\",522413:\"GUNTUR\",522660:\"GUNTUR\",522646:\"GUNTUR\",522438:\"GUNTUR\",522401:\"GUNTUR\",522439:\"GUNTUR\",524002:\"NELLORE\",524142:\"NELLORE\",524318:\"NELLORE\",524312:\"NELLORE\",524203:\"NELLORE\",524152:\"NELLORE\",524315:\"NELLORE\",524303:\"NELLORE\",524302:\"NELLORE\",524225:\"NELLORE\",524347:\"NELLORE\",524004:\"NELLORE\",524306:\"NELLORE\",524223:\"NELLORE\",524304:\"NELLORE\",524322:\"NELLORE\",524222:\"NELLORE\",524307:\"NELLORE\",524236:\"NELLORE\",524310:\"NELLORE\",524226:\"NELLORE\",524228:\"NELLORE\",524003:\"NELLORE\",524230:\"NELLORE\",524240:\"NELLORE\",524319:\"NELLORE\",524346:\"NELLORE\",524305:\"NELLORE\",524221:\"NELLORE\",524137:\"NELLORE\",524224:\"NELLORE\",524227:\"NELLORE\",524239:\"NELLORE\",524308:\"NELLORE\",524316:\"NELLORE\",524344:\"NELLORE\",524311:\"NELLORE\",524317:\"NELLORE\",524313:\"NELLORE\",524234:\"NELLORE\",524314:\"NELLORE\",524201:\"NELLORE\",524301:\"NELLORE\",524366:\"NELLORE\",524001:\"NELLORE\",524005:\"NELLORE\",523171:\"PRAKASAM\",523001:\"PRAKASAM\",523201:\"PRAKASAM\",523169:\"PRAKASAM\",523245:\"PRAKASAM\",523274:\"PRAKASAM\",523212:\"PRAKASAM\",523304:\"PRAKASAM\",523286:\"PRAKASAM\",523182:\"PRAKASAM\",523112:\"PRAKASAM\",523180:\"PRAKASAM\",523116:\"PRAKASAM\",523281:\"PRAKASAM\",523270:\"PRAKASAM\",523101:\"PRAKASAM\",523301:\"PRAKASAM\",523253:\"PRAKASAM\",523115:\"PRAKASAM\",523211:\"PRAKASAM\",523214:\"PRAKASAM\",523292:\"PRAKASAM\",523170:\"PRAKASAM\",523271:\"PRAKASAM\",523110:\"PRAKASAM\",523225:\"PRAKASAM\",523113:\"PRAKASAM\",523261:\"PRAKASAM\",523223:\"PRAKASAM\",523230:\"PRAKASAM\",523226:\"PRAKASAM\",523246:\"PRAKASAM\",523252:\"PRAKASAM\",504346:\"PRAKASAM\",523167:\"PRAKASAM\",523104:\"PRAKASAM\",523114:\"PRAKASAM\",523254:\"PRAKASAM\",523265:\"PRAKASAM\",523155:\"PRAKASAM\",523183:\"PRAKASAM\",523108:\"PRAKASAM\",523157:\"PRAKASAM\",523247:\"PRAKASAM\",523263:\"PRAKASAM\",523109:\"PRAKASAM\",523262:\"PRAKASAM\",523303:\"PRAKASAM\",523291:\"PRAKASAM\",523260:\"PRAKASAM\",523135:\"PRAKASAM\",523181:\"PRAKASAM\",523279:\"PRAKASAM\",523227:\"PRAKASAM\",523111:\"PRAKASAM\",523117:\"PRAKASAM\",523190:\"PRAKASAM\",523187:\"PRAKASAM\",523186:\"PRAKASAM\",523264:\"PRAKASAM\",523280:\"PRAKASAM\",523165:\"PRAKASAM\",504214:\"PRAKASAM\",523224:\"PRAKASAM\",523166:\"PRAKASAM\",523228:\"PRAKASAM\",523241:\"PRAKASAM\",523185:\"PRAKASAM\",523302:\"PRAKASAM\",523105:\"PRAKASAM\",523272:\"PRAKASAM\",523168:\"PRAKASAM\",523213:\"PRAKASAM\",523002:\"PRAKASAM\",523156:\"PRAKASAM\",523184:\"PRAKASAM\",523273:\"PRAKASAM\",504215:\"PRAKASAM\",523240:\"PRAKASAM\",506003:\"PRAKASAM\",534197:\"West Godavari\",534198:\"Warangal\",534331:\"West Godavari\",534196:\"West Godavari\",534146:\"West Godavari\",534111:\"West Godavari\",534341:\"West Godavari\",534101:\"West Godavari\",534186:\"West Godavari\",534145:\"West Godavari\",534340:\"Kovvur\",534302:\"West Godavari\",534112:\"West Godavari\",534156:\"West Godavari\",534411:\"West Godavari\",534313:\"West Godavari\",534315:\"West Godavari\",534301:\"West Godavari\",534342:\"West Godavari\",534176:\"West Godavari\",534316:\"West Godavari\",534305:\"West Godavari\",534195:\"West Godavari\",534166:\"West Godavari\",534318:\"West Godavari\",534350:\"West Godavari\",534102:\"West Godavari\",534329:\"West Godavari\",534165:\"West Godavari\",522102:\"Bapatla\",522262:\"Guntur\",522312:\"Guntur\",522256:\"Guntur\",522259:\"Guntur\",522314:\"Guntur\",522124:\"Guntur\",522325:\"Guntur\",522257:\"Guntur\",522213:\"Guntur\",522301:\"Guntur\",522211:\"Guntur\",522310:\"Guntur\",522316:\"Guntur\",522309:\"Guntur\",522306:\"Guntur\",522261:\"Guntur\",522101:\"Guntur\",522268:\"Guntur\",522265:\"Guntur\",522311:\"Guntur\",522341:\"Guntur\",522324:\"Guntur\",522315:\"Guntur\",522212:\"Guntur\",522111:\"Guntur\",522113:\"Guntur\",522330:\"Guntur\",522201:\"Guntur\",522313:\"Guntur\",522304:\"Guntur\",522264:\"Guntur\",522258:\"Guntur\",522308:\"Guntur\",522307:\"Guntur\",522202:\"Guntur\",522317:\"Guntur\",522329:\"Guntur\",505325:\"Guntur\",522318:\"Guntur\",520003:\"KRISHNA\",521226:\"KRISHNA\",520012:\"KRISHNA\",521212:\"KRISHNA\",521250:\"KRISHNA\",521245:\"KRISHNA\",521101:\"KRISHNA\",521181:\"KRISHNA\",521165:\"KRISHNA\",521403:\"KRISHNA\",521109:\"KRISHNA\",521190:\"KRISHNA\",521175:\"KRISHNA\",520008:\"KRISHNA\",521286:\"KRISHNA\",521229:\"KRISHNA\",521211:\"KRISHNA\",520007:\"KRISHNA\",520015:\"KRISHNA\",521102:\"KRISHNA\",521178:\"KRISHNA\",521163:\"KRISHNA\",521182:\"KRISHNA\",521151:\"KRISHNA\",520002:\"KRISHNA\",521185:\"KRISHNA\",521230:\"KRISHNA\",520010:\"KRISHNA\",521227:\"KRISHNA\",521180:\"KRISHNA\",521456:\"KRISHNA\",521401:\"KRISHNA\",521183:\"KRISHNA\",521235:\"KRISHNA\",520001:\"KRISHNA\",521139:\"KRISHNA\",521170:\"KRISHNA\",521402:\"KRISHNA\",521108:\"KRISHNA\",521184:\"KRISHNA\",521225:\"KRISHNA\",521256:\"KRISHNA\",521104:\"KRISHNA\",520004:\"KRISHNA\",521241:\"KRISHNA\",521247:\"KRISHNA\",521246:\"KRISHNA\",521228:\"KRISHNA\",521457:\"KRISHNA\",521231:\"Krishna\",521164:\"KRISHNA\",521110:\"KRISHNA\",521153:\"KRISHNA\",520013:\"KRISHNA\",520011:\"KRISHNA\",509132:\"KRISHNA\",521107:\"KRISHNA\",521134:\"KRISHNA\",521137:\"KRISHNA\",533577:\"East Godavari\",533252:\"East Godavari\",533247:\"East Godavari\",533216:\"East Godavari\",533211:\"East Godavari\",533217:\"East Godavari\",533201:\"East Godavari\",533214:\"East Godavari\",533222:\"East Godavari\",533236:\"East Godavari\",533248:\"East Godavari\",533235:\"East Godavari\",533229:\"East Godavari\",533212:\"East Godavari\",533221:\"East Godavari\",533210:\"East Godavari\",533228:\"East Godavari\",533215:\"East Godavari\",533213:\"East Godavari\",533250:\"East Godavari\",533244:\"East Godavari\",533240:\"East Godavari\",533223:\"East Godavari\",533274:\"East Godavari\",533251:\"East Godavari\",533218:\"East Godavari\",533253:\"East Godavari\",533220:\"East Godavari\",533239:\"East Godavari\",533254:\"East Godavari\",533238:\"East Godavari\",533249:\"East Godavari\",533241:\"East Godavari\",533237:\"East Godavari\",533242:\"East Godavari\",531022:\"VISAKHAPATNAM\",531027:\"VISAKHAPATNAM\",531115:\"VISAKHAPATNAM\",531036:\"VISAKHAPATNAM\",531077:\"VISAKHAPATNAM\",531035:\"VISAKHAPATNAM\",531040:\"VISAKHAPATNAM\",531030:\"VISAKHAPATNAM\",531002:\"VISAKHAPATNAM\",531117:\"VISAKHAPATNAM\",531055:\"VISAKHAPATNAM\",531001:\"VISAKHAPATNAM\",531118:\"VISAKHAPATNAM\",531111:\"VISAKHAPATNAM\",531084:\"VISAKHAPATNAM\",531028:\"VISAKHAPATNAM\",531151:\"VISAKHAPATNAM\",531149:\"VISAKHAPATNAM\",531034:\"VISAKHAPATNAM\",531031:\"VISAKHAPATNAM\",531011:\"VISAKHAPATNAM\",531029:\"VISAKHAPATNAM\",531085:\"VISAKHAPATNAM\",531021:\"VISAKHAPATNAM\",531113:\"VISAKHAPATNAM\",531082:\"VISAKHAPATNAM\",531023:\"VISAKHAPATNAM\",531081:\"VISAKHAPATNAM\",531032:\"VISAKHAPATNAM\",531075:\"VISAKHAPATNAM\",531087:\"VISAKHAPATNAM\",531026:\"VISAKHAPATNAM\",531020:\"VISAKHAPATNAM\",531025:\"VISAKHAPATNAM\",531083:\"VISAKHAPATNAM\",531024:\"VISAKHAPATNAM\",531105:\"VISAKHAPATNAM\",531133:\"VISAKHAPATNAM\",531061:\"VISAKHAPATNAM\",531114:\"VISAKHAPATNAM\",531126:\"VISAKHAPATNAM\",531127:\"VISAKHAPATNAM\",531019:\"VISAKHAPATNAM\",531033:\"VISAKHAPATNAM\",531060:\"VISAKHAPATNAM\",531116:\"VISAKHAPATNAM\",533408:\"EAST GODAVARI\",533449:\"EAST GODAVARI\",533401:\"EAST GODAVARI\",533428:\"EAST GODAVARI\",533407:\"EAST GODAVARI\",533448:\"EAST GODAVARI\",533436:\"EAST GODAVARI\",533406:\"EAST GODAVARI\",533437:\"EAST GODAVARI\",533005:\"EAST GODAVARI\",533016:\"EAST GODAVARI\",533468:\"EAST GODAVARI\",533006:\"EAST GODAVARI\",533431:\"EAST GODAVARI\",533429:\"EAST GODAVARI\",533003:\"EAST GODAVARI\",533445:\"EAST GODAVARI\",533433:\"EAST GODAVARI\",533483:\"EAST GODAVARI\",533450:\"EAST GODAVARI\",533444:\"EAST GODAVARI\",533432:\"EAST GODAVARI\",533446:\"EAST GODAVARI\",533344:\"EAST GODAVARI\",533461:\"EAST GODAVARI\",533002:\"EAST GODAVARI\",533430:\"EAST GODAVARI\",533291:\"EAST GODAVARI\",533464:\"EAST GODAVARI\",533463:\"EAST GODAVARI\",533004:\"EAST GODAVARI\",533001:\"EAST GODAVARI\",533435:\"EAST GODAVARI\",533434:\"EAST GODAVARI\",533462:\"EAST GODAVARI\",533447:\"EAST GODAVARI\",533260:\"EAST GODAVARI\",533440:\"EAST GODAVARI\",535547:\"VIZIANAGARAM\",532440:\"SRIKAKULAM\",535502:\"VIZIANAGARAM\",535546:\"VIZIANAGARAM\",535124:\"VIZIANAGARAM\",535573:\"VIZIANAGARAM\",535523:\"VIZIANAGARAM\",535126:\"VIZIANAGARAM\",535557:\"VIZIANAGARAM\",535525:\"VIZIANAGARAM\",535521:\"VIZIANAGARAM\",535593:\"VIZIANAGARAM\",535579:\"VIZIANAGARAM\",535101:\"VIZIANAGARAM\",532462:\"SRIKAKULAM\",535578:\"VIZIANAGARAM\",535527:\"VIZIANAGARAM\",535591:\"VIZIANAGARAM\",535559:\"VIZIANAGARAM\",535125:\"VIZIANAGARAM\",535102:\"VIZIANAGARAM\",535128:\"VIZIANAGARAM\",535558:\"VIZIANAGARAM\",532148:\"SRIKAKULAM\",535594:\"VIZIANAGARAM\",535524:\"VIZIANAGARAM\",535463:\"VIZIANAGARAM\",532460:\"SRIKAKULAM\",503235:\"VIZIANAGARAM\",535526:\"VIZIANAGARAM\",535534:\"VIZIANAGARAM\",535592:\"VIZIANAGARAM\",532443:\"SRIKAKULAM\",535501:\"VIZIANAGARAM\",535568:\"VIZIANAGARAM\",535522:\"VIZIANAGARAM\",503145:\"VIZIANAGARAM\",532461:\"SRIKAKULAM\",503225:\"VIZIANAGARAM\",503188:\"VIZIANAGARAM\",503230:\"VIZIANAGARAM\",503321:\"VIZIANAGARAM\",505503:\"VIZIANAGARAM\",505187:\"VIZIANAGARAM\",505525:\"VIZIANAGARAM\",533350:\"EAST GODAVARI\",533262:\"EAST GODAVARI\",533296:\"EAST GODAVARI\",533288:\"EAST GODAVARI\",533233:\"EAST GODAVARI\",533101:\"EAST GODAVARI\",533305:\"EAST GODAVARI\",533284:\"EAST GODAVARI\",533342:\"EAST GODAVARI\",533307:\"EAST GODAVARI\",533106:\"EAST GODAVARI\",533256:\"EAST GODAVARI\",533340:\"EAST GODAVARI\",533104:\"EAST GODAVARI\",533289:\"EAST GODAVARI\",533126:\"EAST GODAVARI\",533343:\"EAST GODAVARI\",533263:\"EAST GODAVARI\",533285:\"EAST GODAVARI\",533290:\"EAST GODAVARI\",533124:\"EAST GODAVARI\",533292:\"EAST GODAVARI\",533352:\"EAST GODAVARI\",533295:\"EAST GODAVARI\",533261:\"EAST GODAVARI\",533286:\"EAST GODAVARI\",533287:\"EAST GODAVARI\",533339:\"EAST GODAVARI\",533232:\"EAST GODAVARI\",533349:\"EAST GODAVARI\",533347:\"EAST GODAVARI\",533234:\"EAST GODAVARI\",533103:\"EAST GODAVARI\",533348:\"EAST GODAVARI\",533125:\"EAST GODAVARI\",533341:\"EAST GODAVARI\",533294:\"EAST GODAVARI\",533102:\"EAST GODAVARI\",533297:\"EAST GODAVARI\",533351:\"EAST GODAVARI\",533105:\"EAST GODAVARI\",533107:\"EAST GODAVARI\",533309:\"EAST GODAVARI\",533293:\"EAST GODAVARI\",533346:\"EAST GODAVARI\",533345:\"EAST GODAVARI\",533306:\"EAST GODAVARI\",533264:\"EAST GODAVARI\",533308:\"EAST GODAVARI\",533255:\"EAST GODAVARI\",532403:\"SRIKAKULAM\",532127:\"SRIKAKULAM\",532203:\"SRIKAKULAM\",532186:\"SRIKAKULAM\",532219:\"SRIKAKULAM\",532459:\"SRIKAKULAM\",532190:\"SRIKAKULAM\",532425:\"SRIKAKULAM\",532445:\"SRIKAKULAM\",532426:\"SRIKAKULAM\",532185:\"SRIKAKULAM\",532218:\"SRIKAKULAM\",532429:\"SRIKAKULAM\",532122:\"SRIKAKULAM\",532123:\"SRIKAKULAM\",532404:\"SRIKAKULAM\",532168:\"SRIKAKULAM\",532222:\"SRIKAKULAM\",532401:\"SRIKAKULAM\",532409:\"SRIKAKULAM\",532264:\"SRIKAKULAM\",532457:\"SRIKAKULAM\",532455:\"SRIKAKULAM\",532406:\"SRIKAKULAM\",532263:\"SRIKAKULAM\",532456:\"SRIKAKULAM\",532322:\"SRIKAKULAM\",532290:\"SRIKAKULAM\",532484:\"SRIKAKULAM\",532430:\"SRIKAKULAM\",532220:\"SRIKAKULAM\",532427:\"SRIKAKULAM\",532405:\"SRIKAKULAM\",532312:\"SRIKAKULAM\",532408:\"SRIKAKULAM\",532292:\"SRIKAKULAM\",532195:\"SRIKAKULAM\",532214:\"SRIKAKULAM\",532284:\"SRIKAKULAM\",532212:\"SRIKAKULAM\",532432:\"SRIKAKULAM\",532216:\"SRIKAKULAM\",532242:\"SRIKAKULAM\",532458:\"SRIKAKULAM\",532402:\"SRIKAKULAM\",532421:\"SRIKAKULAM\",532211:\"SRIKAKULAM\",532291:\"SRIKAKULAM\",532410:\"SRIKAKULAM\",532243:\"SRIKAKULAM\",532407:\"SRIKAKULAM\",532221:\"SRIKAKULAM\",532005:\"SRIKAKULAM\",532428:\"SRIKAKULAM\",532213:\"SRIKAKULAM\",532215:\"SRIKAKULAM\",532474:\"SRIKAKULAM\",532001:\"SRIKAKULAM\",532201:\"SRIKAKULAM\",530003:\"VISAKHAPATNAM\",530053:\"VISAKHAPATNAM\",530016:\"VISAKHAPATNAM\",531162:\"VISAKHAPATNAM\",530052:\"VISAKHAPATNAM\",531219:\"VISAKHAPATNAM\",530040:\"VISAKHAPATNAM\",530012:\"VISAKHAPATNAM\",530044:\"VISAKHAPATNAM\",531163:\"VISAKHAPATNAM\",530051:\"VISAKHAPATNAM\",530047:\"VISAKHAPATNAM\",531173:\"VISAKHAPATNAM\",530002:\"VISAKHAPATNAM\",530020:\"VISAKHAPATNAM\",530043:\"VISAKHAPATNAM\",530031:\"VISAKHAPATNAM\",530029:\"VISAKHAPATNAM\",530049:\"VISAKHAPATNAM\",530001:\"VISAKHAPATNAM\",530026:\"VISAKHAPATNAM\",530005:\"VISAKHAPATNAM\",530048:\"VISAKHAPATNAM\",530045:\"VISAKHAPATNAM\",530004:\"VISAKHAPATNAM\",530027:\"VISAKHAPATNAM\",530022:\"VISAKHAPATNAM\",530007:\"VISAKHAPATNAM\",530008:\"VISAKHAPATNAM\",530017:\"VISAKHAPATNAM\",530011:\"VISAKHAPATNAM\",530018:\"VISAKHAPATNAM\",530009:\"VISAKHAPATNAM\",530014:\"VISAKHAPATNAM\",530013:\"VISAKHAPATNAM\",530041:\"VISAKHAPATNAM\",530024:\"VISAKHAPATNAM\",530028:\"VISAKHAPATNAM\",530032:\"VISAKHAPATNAM\",530046:\"VISAKHAPATNAM\",530035:\"VISAKHAPATNAM\",530015:\"VISAKHAPATNAM\",535281:\"VIZIANAGARAM\",535218:\"VIZIANAGARAM\",535005:\"VISAKHAPATNAM\",535216:\"VIZIANAGARAM\",535240:\"VIZIANAGARAM\",535204:\"VIZIANAGARAM\",535250:\"VIZIANAGARAM\",535003:\"VIZIANAGARAM\",535280:\"VIZIANAGARAM\",535145:\"VISAKHAPATNAM\",535273:\"VIZIANAGARAM\",535161:\"VIZIANAGARAM\",535214:\"VIZIANAGARAM\",535260:\"VIZIANAGARAM\",535183:\"VIZIANAGARAM\",535270:\"VIZIANAGARAM\",535160:\"VIZIANAGARAM\",535215:\"VIZIANAGARAM\",535581:\"VIZIANAGARAM\",535580:\"VIZIANAGARAM\",535217:\"VIZIANAGARAM\",535002:\"VIZIANAGARAM\",535006:\"VIZIANAGARAM\",535004:\"VIZIANAGARAM\",535148:\"VIZIANAGARAM\",535220:\"VIZIANAGARAM\",535221:\"VIZIANAGARAM\",535213:\"VIZIANAGARAM\",509324:\"VIZIANAGARAM\",535001:\"VIZIANAGARAM\",788701:\"KARIMGANJ\",788722:\"KARIMGANJ\",788161:\"HAILAKANDI\",788101:\"CACHAR\",788150:\"HAILAKANDI\",788164:\"HAILAKANDI\",788030:\"CACHAR\",788712:\"KARIMGANJ\",788119:\"CACHAR\",788806:\"KARIMGANJ\",788156:\"KARIMGANJ\",788734:\"KARIMGANJ\",788009:\"CACHAR\",788025:\"CACHAR\",788723:\"KARIMGANJ\",788931:\"DIMA HASSO - NORTH CACHAR HILL\",788011:\"CACHAR\",788115:\"CACHAR\",788803:\"CACHAR\",788113:\"CACHAR\",788720:\"KARIMGANJ\",788820:\"CACHAR\",788026:\"CACHAR\",788726:\"KARIMGANJ\",788801:\"HAILAKANDI\",788110:\"CACHAR\",788107:\"CACHAR\",788728:\"KARIMGANJ\",788155:\"KARIMGANJ\",788710:\"KARIMGANJ\",788818:\"CACHAR\",788152:\"HAILAKANDI\",788736:\"KARIMGANJ\",788117:\"CACHAR\",788713:\"KARIMGANJ\",788815:\"CACHAR\",788121:\"CACHAR\",788781:\"KARIMGANJ\",788102:\"CACHAR\",788725:\"KARIMGANJ\",788015:\"CACHAR\",788733:\"KARIMGANJ\",788727:\"KARIMGANJ\",788817:\"KARIMGANJ\",788123:\"CACHAR\",788005:\"CACHAR\",788120:\"CACHAR\",788010:\"CACHAR\",788099:\"CACHAR\",788114:\"CACHAR\",788724:\"KARIMGANJ\",788126:\"CACHAR\",788166:\"KARIMGANJ\",788163:\"HAILAKANDI\",788116:\"CACHAR\",788737:\"KARIMGANJ\",788002:\"CACHAR\",788007:\"CACHAR\",788003:\"CACHAR\",788819:\"CACHAR\",788112:\"CACHAR\",788735:\"KARIMGANJ\",788111:\"CACHAR\",788830:\"DIMA HASSO - NORTH CACHAR HILL\",788001:\"CACHAR\",788832:\"CACHAR\",788013:\"CACHAR\",788165:\"HAILAKANDI\",788106:\"CACHAR\",788031:\"CACHAR\",788802:\"CACHAR\",788004:\"CACHAR\",788804:\"KARIMGANJ\",788162:\"HAILAKANDI\",788711:\"KARIMGANJ\",788151:\"HAILAKANDI\",788831:\"DIMA HASSO - NORTH CACHAR HILL\",788805:\"KARIMGANJ\",788127:\"CACHAR\",788160:\"HAILAKANDI\",788709:\"KARIMGANJ\",788816:\"KARIMGANJ\",788104:\"CACHAR\",788098:\"CACHAR\",788006:\"CACHAR\",788168:\"HAILAKANDI\",788719:\"KARIMGANJ\",788108:\"CACHAR\",788109:\"CACHAR\",788103:\"CACHAR\",788014:\"CACHAR\",788118:\"CACHAR\",784524:\"UDALGURI\",784112:\"SONITPUR\",784178:\"SONITPUR\",784510:\"UDALGURI\",784101:\"SONITPUR\",784514:\"DARRANG\",784170:\"SONITPUR\",784148:\"DARRANG\",784167:\"SONITPUR\",784527:\"UDALGURI\",784103:\"SONITPUR\",784529:\"DARRANG\",784502:\"SONITPUR\",784522:\"UDALGURI\",784145:\"DARRANG\",784182:\"SONITPUR\",784172:\"SONITPUR\",784175:\"SONITPUR\",784146:\"DARRANG\",784174:\"SONITPUR\",784027:\"SONITPUR\",784171:\"SONITPUR\",784117:\"SONITPUR\",784154:\"SONITPUR\",784509:\"UDALGURI\",784153:\"SONITPUR\",784506:\"SONITPUR\",784144:\"DARRANG\",784525:\"UDALGURI\",784190:\"DARRANG\",784149:\"SONITPUR\",784147:\"DARRANG\",784521:\"UDALGURI\",784507:\"UDALGURI\",784111:\"SONITPUR\",784179:\"SONITPUR\",784166:\"SONITPUR\",784523:\"UDALGURI\",784150:\"SONITPUR\",784513:\"UDALGURI\",784508:\"UDALGURI\",784528:\"UDALGURI\",784177:\"SONITPUR\",784105:\"SONITPUR\",784113:\"UDALGURI\",784114:\"UDALGURI\",784184:\"SONITPUR\",784504:\"SONITPUR\",784176:\"SONITPUR\",784116:\"DARRANG\",784110:\"SONITPUR\",784501:\"SONITPUR\",784526:\"UDALGURI\",784169:\"SONITPUR\",784505:\"SONITPUR\",784115:\"DARRANG\",784180:\"SONITPUR\",784168:\"SONITPUR\",784104:\"SONITPUR\",784001:\"SONITPUR\",784189:\"SONITPUR\",784026:\"SONITPUR\",784102:\"SONITPUR\",784125:\"DARRANG\",784173:\"SONITPUR\",784028:\"SONITPUR\",784025:\"SONITPUR\",784010:\"SONITPUR\",783388:\"BONGAIGAON\",783384:\"BONGAIGAON\",783392:\"BONGAIGAON\",783346:\"KOKRAJHAR\",783120:\"GOALPARA\",783335:\"DHUBRI\",783330:\"DHUBRI\",783323:\"DHUBRI\",783339:\"DHUBRI\",783391:\"BONGAIGAON\",783123:\"GOALPARA\",783129:\"GOALPARA\",783393:\"BONGAIGAON\",783337:\"KOKRAJHAR\",783124:\"GOALPARA\",783390:\"BONGAIGAON\",783360:\"KOKRAJHAR\",783331:\"DHUBRI\",783130:\"GOALPARA\",783345:\"KOKRAJHAR\",783349:\"DHUBRI\",783125:\"GOALPARA\",783350:\"KOKRAJHAR\",783101:\"GOALPARA\",783334:\"DHUBRI\",783347:\"KOKRAJHAR\",783348:\"DHUBRI\",783332:\"DHUBRI\",783382:\"GOALPARA\",783131:\"DHUBRI\",783380:\"BONGAIGAON\",783372:\"KOKRAJHAR\",783127:\"DHUBRI\",783394:\"BONGAIGAON\",783301:\"BONGAIGAON\",783383:\"DHUBRI\",783336:\"KOKRAJHAR\",783324:\"DHUBRI\",783370:\"KOKRAJHAR\",783389:\"BONGAIGAON\",783373:\"KOKRAJHAR\",783371:\"DHUBRI\",783354:\"KOKRAJHAR\",783376:\"KOKRAJHAR\",783126:\"GOALPARA\",783122:\"GOALPARA\",783134:\"GOALPARA\",783375:\"KOKRAJHAR\",783385:\"BONGAIGAON\",783135:\"DHUBRI\",783132:\"GOALPARA\",783333:\"KOKRAJHAR\",783325:\"DHUBRI\",783361:\"KOKRAJHAR\",783128:\"DHUBRI\",783369:\"KOKRAJHAR\",783381:\"BONGAIGAON\",783133:\"GOALPARA\",781128:\"KAMRUP\",781137:\"KAMRUP\",781102:\"KAMRUP\",781127:\"KAMRUP\",781025:\"KAMRUP METROPOLITAN\",781023:\"KAMRUP METROPOLITAN\",781031:\"KAMRUP\",781125:\"KAMRUP METROPOLITAN\",781027:\"KAMRUP METROPOLITAN\",781134:\"KAMRUP\",781006:\"KAMRUP METROPOLITAN\",781003:\"KAMRUP METROPOLITAN\",781017:\"KAMRUP\",781366:\"KAMRUP\",781381:\"KAMRUP\",781380:\"KAMRUP\",781124:\"KAMRUP\",781103:\"KAMRUP\",781141:\"KAMRUP\",781021:\"KAMRUP METROPOLITAN\",781364:\"BAKSA\",781354:\"KAMRUP\",781101:\"KAMRUP\",781030:\"KAMRUP METROPOLITAN\",781382:\"KAMRUP\",781104:\"KAMRUP\",781135:\"KAMRUP\",781121:\"KAMRUP\",781136:\"KAMRUP\",781029:\"KAMRUP METROPOLITAN\",781122:\"KAMRUP\",781028:\"KAMRUP METROPOLITAN\",781132:\"KAMRUP METROPOLITAN\",781123:\"KAMRUP\",781009:\"KAMRUP METROPOLITAN\",781365:\"KAMRUP\",781018:\"KAMRUP METROPOLITAN\",781026:\"KAMRUP METROPOLITAN\",781015:\"KAMRUP METROPOLITAN\",781120:\"KAMRUP\",782402:\"KAMRUP METROPOLITAN\",781150:\"KAMRUP METROPOLITAN\",781133:\"KAMRUP\",781376:\"KAMRUP\",781011:\"KAMRUP\",781012:\"KAMRUP METROPOLITAN\",782403:\"KAMRUP METROPOLITAN\",782401:\"KAMRUP METROPOLITAN\",781005:\"KAMRUP METROPOLITAN\",781001:\"KAMRUP METROPOLITAN\",781035:\"KAMRUP METROPOLITAN\",781024:\"KAMRUP METROPOLITAN\",781016:\"KAMRUP METROPOLITAN\",781014:\"KAMRUP METROPOLITAN\",781129:\"KAMRUP\",781038:\"KAMRUP METROPOLITAN\",781036:\"KAMRUP METROPOLITAN\",781039:\"KAMRUP\",781002:\"KAMRUP METROPOLITAN\",781032:\"KAMRUP METROPOLITAN\",781013:\"KAMRUP METROPOLITAN\",781131:\"KAMRUP\",781019:\"KAMRUP METROPOLITAN\",781010:\"KAMRUP METROPOLITAN\",781022:\"KAMRUP METROPOLITAN\",781004:\"KAMRUP METROPOLITAN\",781007:\"KAMRUP METROPOLITAN\",781020:\"KAMRUP METROPOLITAN\",781034:\"KAMRUP\",781008:\"KAMRUP METROPOLITAN\",781037:\"KAMRUP METROPOLITAN\",781171:\"KAMRUP METROPOLITAN\",781040:\"KAMRUP METROPOLITAN\",781126:\"NALBARI\",781372:\"NALBARI\",781373:\"NALBARI\",781329:\"BARPETA\",781369:\"NALBARI\",781306:\"NALBARI\",781367:\"NALBARI\",781316:\"BARPETA\",781325:\"BARPETA\",781317:\"BARPETA\",781343:\"NALBARI\",781307:\"BARPETA\",781318:\"BARPETA\",781327:\"BAKSA\",781344:\"BAKSA\",781360:\"NALBARI\",781347:\"NALBARI\",781334:\"NALBARI\",781339:\"NALBARI\",781355:\"NALBARI\",781377:\"NALBARI\",781348:\"NALBARI\",781308:\"BARPETA\",781328:\"BARPETA\",781311:\"BARPETA\",781368:\"BAKSA\",781310:\"NALBARI\",781302:\"BARPETA\",781340:\"NALBARI\",781313:\"BAKSA\",781319:\"BARPETA\",781378:\"NALBARI\",781341:\"NALBARI\",781350:\"NALBARI\",781349:\"NALBARI\",781312:\"NALBARI\",781326:\"BARPETA\",781303:\"NALBARI\",781375:\"NALBARI\",781314:\"BARPETA\",781346:\"BAKSA\",781351:\"NALBARI\",781315:\"BAKSA\",781330:\"BAKSA\",781333:\"BAKSA\",781337:\"NALBARI\",781304:\"NALBARI\",781301:\"BARPETA\",781138:\"NALBARI\",781371:\"NALBARI\",781309:\"BARPETA\",781305:\"BARPETA\",781374:\"NALBARI\",781352:\"BARPETA\",781335:\"NALBARI\",781321:\"BARPETA\",781338:\"NALBARI\",781370:\"NALBARI\",781353:\"NALBARI\",787032:\"LAKHIMPUR\",785676:\"DIBRUGARH\",787054:\"LAKHIMPUR\",786613:\"DIBRUGARH\",787052:\"LAKHIMPUR\",787059:\"DHEMAJI\",787110:\"DHEMAJI\",786101:\"DIBRUGARH\",786692:\"DIBRUGARH\",787031:\"DHEMAJI\",787057:\"DHEMAJI\",784165:\"LAKHIMPUR\",786621:\"DIBRUGARH\",786002:\"DIBRUGARH\",784161:\"LAKHIMPUR\",787055:\"LAKHIMPUR\",786003:\"DIBRUGARH\",786007:\"DIBRUGARH\",786184:\"DIBRUGARH\",786610:\"DIBRUGARH\",784163:\"LAKHIMPUR\",786611:\"DIBRUGARH\",786004:\"DIBRUGARH\",787053:\"LAKHIMPUR\",787058:\"DHEMAJI\",786191:\"DIBRUGARH\",786103:\"DIBRUGARH\",787033:\"LAKHIMPUR\",786612:\"DIBRUGARH\",786010:\"DIBRUGARH\",787023:\"LAKHIMPUR\",784164:\"LAKHIMPUR\",787026:\"DHEMAJI\",785675:\"DIBRUGARH\",787051:\"LAKHIMPUR\",786102:\"DIBRUGARH\",787061:\"DHEMAJI\",784160:\"LAKHIMPUR\",786001:\"DIBRUGARH\",786602:\"DIBRUGARH\",787060:\"DHEMAJI\",787035:\"DHEMAJI\",787034:\"DHEMAJI\",786012:\"DIBRUGARH\",786005:\"DIBRUGARH\",786614:\"DIBRUGARH\",787056:\"LAKHIMPUR\",786008:\"DIBRUGARH\",786006:\"DIBRUGARH\",786622:\"DIBRUGARH\",787001:\"LAKHIMPUR\",786623:\"DIBRUGARH\",782412:\"MARIGAON\",782002:\"NAGAON\",782123:\"NAGAON\",782106:\"MARIGAON\",782124:\"NAGAON\",782120:\"NAGAON\",782445:\"NAGAON\",782413:\"MARIGAON\",782136:\"NAGAON\",782122:\"NAGAON\",782461:\"KARBI ANGLONG\",782003:\"NAGAON\",782138:\"NAGAON\",782481:\"NAGAON\",782448:\"KARBI ANGLONG\",782425:\"NAGAON\",782435:\"NAGAON\",782450:\"KARBI ANGLONG\",782139:\"NAGAON\",782446:\"NAGAON\",782105:\"MARIGAON\",782442:\"NAGAON\",782103:\"NAGAON\",782462:\"KARBI ANGLONG\",782441:\"KARBI ANGLONG\",782140:\"NAGAON\",782482:\"KARBI ANGLONG\",782144:\"NAGAON\",782470:\"KARBI ANGLONG\",782102:\"NAGAON\",782121:\"NAGAON\",782127:\"MARIGAON\",782141:\"NAGAON\",782428:\"NAGAON\",782142:\"NAGAON\",782125:\"NAGAON\",782439:\"NAGAON\",782411:\"MARIGAON\",782447:\"NAGAON\",782137:\"NAGAON\",782143:\"NAGAON\",782104:\"MARIGAON\",782101:\"NAGAON\",782490:\"KARBI ANGLONG\",782480:\"KARBI ANGLONG\",782485:\"KARBI ANGLONG\",782440:\"NAGAON\",782135:\"NAGAON\",782426:\"NAGAON\",782126:\"MARIGAON\",782410:\"MARIGAON\",782460:\"KARBI ANGLONG\",782128:\"NAGAON\",782486:\"KARBI ANGLONG\",782429:\"NAGAON\",782427:\"NAGAON\",782001:\"NAGAON\",785702:\"GOLAGHAT\",785663:\"SIBSAGAR\",785614:\"GOLAGHAT\",785690:\"SIBSAGAR\",785664:\"SIBSAGAR\",785697:\"SIBSAGAR\",785108:\"JORHAT\",785622:\"GOLAGHAT\",785681:\"SIBSAGAR\",785680:\"SIBSAGAR\",785682:\"SIBSAGAR\",785013:\"JORHAT\",785625:\"GOLAGHAT\",785696:\"SIBSAGAR\",785106:\"JORHAT\",785611:\"GOLAGHAT\",785101:\"JORHAT\",785633:\"JORHAT\",785107:\"JORHAT\",785009:\"JORHAT\",785674:\"SIBSAGAR\",785667:\"SIBSAGAR\",785104:\"JORHAT\",785612:\"GOLAGHAT\",785635:\"JORHAT\",785671:\"SIBSAGAR\",785685:\"SIBSAGAR\",785683:\"SIBSAGAR\",785692:\"SIBSAGAR\",785004:\"JORHAT\",785602:\"GOLAGHAT\",785693:\"SIBSAGAR\",785626:\"GOLAGHAT\",785684:\"SIBSAGAR\",785603:\"GOLAGHAT\",785618:\"GOLAGHAT\",785630:\"JORHAT\",785661:\"SIBSAGAR\",785670:\"SIBSAGAR\",785615:\"GOLAGHAT\",785112:\"JORHAT\",785640:\"SIBSAGAR\",785701:\"SIBSAGAR\",785110:\"JORHAT\",785691:\"SIBSAGAR\",785001:\"JORHAT\",785687:\"SIBSAGAR\",785632:\"JORHAT\",785613:\"GOLAGHAT\",785014:\"JORHAT\",785619:\"GOLAGHAT\",785689:\"SIBSAGAR\",785006:\"JORHAT\",785631:\"JORHAT\",785610:\"GOLAGHAT\",785703:\"GOLAGHAT\",785105:\"JORHAT\",785673:\"SIBSAGAR\",785705:\"GOLAGHAT\",785688:\"SIBSAGAR\",785672:\"SIBSAGAR\",785616:\"JORHAT\",785666:\"SIBSAGAR\",785010:\"JORHAT\",785601:\"GOLAGHAT\",785102:\"JORHAT\",785008:\"JORHAT\",785662:\"SIBSAGAR\",785669:\"SIBSAGAR\",785015:\"JORHAT\",785700:\"JORHAT\",785686:\"SIBSAGAR\",785634:\"JORHAT\",785111:\"JORHAT\",785636:\"JORHAT\",785621:\"GOLAGHAT\",785007:\"JORHAT\",785609:\"GOLAGHAT\",785665:\"SIBSAGAR\",785699:\"GOLAGHAT\",785698:\"SIBSAGAR\",785704:\"JORHAT\",786171:\"TINSUKIA\",786174:\"TINSUKIA\",786187:\"TINSUKIA\",786181:\"TINSUKIA\",786157:\"TINSUKIA\",786160:\"TINSUKIA\",786154:\"TINSUKIA\",786170:\"TINSUKIA\",786189:\"TINSUKIA\",786601:\"TINSUKIA\",786183:\"TINSUKIA\",786150:\"TINSUKIA\",786182:\"TINSUKIA\",786188:\"TINSUKIA\",786152:\"TINSUKIA\",786156:\"TINSUKIA\",786151:\"TINSUKIA\",786126:\"TINSUKIA\",786146:\"TINSUKIA\",786179:\"TINSUKIA\",786192:\"TINSUKIA\",786125:\"TINSUKIA\",786190:\"TINSUKIA\",786173:\"TINSUKIA\",786145:\"TINSUKIA\",786147:\"TINSUKIA\",786148:\"TINSUKIA\",786158:\"TINSUKIA\",786159:\"TINSUKIA\",786153:\"TINSUKIA\",786155:\"TINSUKIA\",824207:\"GAYA\",824221:\"AURANGABAD\",824143:\"AURANGABAD\",824203:\"AURANGABAD\",824113:\"AURANGABAD\",824103:\"AURANGABAD\",824211:\"AURANGABAD\",824220:\"AURANGABAD\",824219:\"GAYA\",824111:\"AURANGABAD\",824124:\"AURANGABAD\",824116:\"GAYA\",824115:\"AURANGABAD\",824217:\"GAYA\",824303:\"AURANGABAD\",824123:\"AURANGABAD\",824120:\"AURANGABAD\",824202:\"AURANGABAD\",824125:\"AURANGABAD\",824101:\"AURANGABAD\",824205:\"GAYA\",824301:\"AURANGABAD\",824210:\"GAYA\",824302:\"AURANGABAD\",824201:\"GAYA\",824122:\"AURANGABAD\",824114:\"AURANGABAD\",824112:\"AURANGABAD\",824129:\"AURANGABAD\",824127:\"AURANGABAD\",824208:\"AURANGABAD\",824121:\"AURANGABAD\",824102:\"AURANGABAD\",824206:\"GAYA\",802202:\"BHOJPUR\",802201:\"BHOJPUR\",802156:\"BHOJPUR\",802116:\"BUXAR\",802155:\"BHOJPUR\",802352:\"BHOJPUR\",802114:\"BUXAR\",802161:\"BHOJPUR\",802154:\"BHOJPUR\",802126:\"BUXAR\",802302:\"BHOJPUR\",802222:\"BHOJPUR\",802111:\"BHOJPUR\",802119:\"BUXAR\",802301:\"BHOJPUR\",802135:\"BUXAR\",802210:\"BHOJPUR\",802129:\"BUXAR\",802123:\"BUXAR\",802203:\"BHOJPUR\",802163:\"BHOJPUR\",802158:\"BHOJPUR\",802207:\"BHOJPUR\",802164:\"BHOJPUR\",802134:\"BUXAR\",802166:\"BHOJPUR\",802311:\"BHOJPUR\",802130:\"BUXAR\",802351:\"BHOJPUR\",802312:\"BHOJPUR\",802183:\"BHOJPUR\",802206:\"BHOJPUR\",802128:\"BUXAR\",802165:\"BHOJPUR\",802133:\"BHOJPUR\",802120:\"BUXAR\",802209:\"BHOJPUR\",802113:\"BUXAR\",802112:\"BUXAR\",802208:\"BHOJPUR\",802152:\"BHOJPUR\",802205:\"BHOJPUR\",802117:\"BUXAR\",802314:\"BHOJPUR\",802103:\"BHOJPUR\",802101:\"BUXAR\",802102:\"BUXAR\",802125:\"BUXAR\",802223:\"BHOJPUR\",802159:\"BHOJPUR\",802115:\"BHOJPUR\",802157:\"BHOJPUR\",802313:\"BHOJPUR\",802122:\"BUXAR\",802204:\"BHOJPUR\",802160:\"BHOJPUR\",802118:\"BHOJPUR\",802136:\"BHOJPUR\",802131:\"BUXAR\",802127:\"BUXAR\",802162:\"BHOJPUR\",802316:\"BHOJPUR\",804423:\"GAYA\",804403:\"GAYA\",804426:\"GAYA\",824233:\"GAYA\",804421:\"GAYA\",824232:\"GAYA\",804401:\"AURANGABAD\",804418:\"GAYA\",823003:\"GAYA\",804405:\"GAYA\",804425:\"GAYA\",824231:\"GAYA\",804419:\"ARWAL\",823001:\"GAYA\",824236:\"GAYA\",823005:\"GAYA\",804432:\"GAYA\",823311:\"GAYA\",804417:\"GAYA\",823004:\"GAYA\",804402:\"ARWAL\",824237:\"GAYA\",823002:\"GAYA\",804428:\"JEHANABAD\",804422:\"GAYA\",804404:\"GAYA\",824235:\"GAYA\",804407:\"JEHANABAD\",824118:\"GAYA\",804427:\"JEHANABAD\",804429:\"GAYA\",804424:\"GAYA\",804406:\"GAYA\",804420:\"GAYA\",804408:\"JEHANABAD\",824209:\"GAYA\",824234:\"GAYA\",804435:\"GAYA\",801110:\"PATNA\",801108:\"PATNA\",801507:\"PATNA\",801102:\"PATNA\",801109:\"PATNA\",804453:\"PATNA\",801104:\"PATNA\",800012:\"PATNA\",801505:\"JAMUI\",803203:\"PATNA\",803202:\"PATNA\",801103:\"PATNA\",801113:\"PATNA\",800002:\"Patna\",800025:\"PATNA\",800020:\"PATNA\",801503:\"Patna\",804451:\"PATNA\",800007:\"PATNA\",800001:\"PATNA\",800004:\"PATNA\",804454:\"PATNA\",801112:\"PATNA\",804452:\"PATNA\",803201:\"PATNA\",800018:\"PATNA\",800009:\"PATNA\",800026:\"PATNA\",801111:\"PATNA\",800017:\"PATNA\",800014:\"PATNA\",800019:\"PATNA\",800008:\"PATNA\",801506:\"PATNA\",800011:\"PATNA\",801106:\"PATNA\",800003:\"PATNA\",800024:\"Patna\",801105:\"PATNA\",800023:\"PATNA\",800030:\"PURNIA\",800006:\"PATNA\",800027:\"PATNA\",800013:\"PATNA\",800028:\"PATNA\",800015:\"PATNA\",800005:\"PATNA\",800022:\"PATNA\",800016:\"PATNA\",800010:\"PATNA\",800021:\"PATNA\",802226:\"ROHTAS\",821312:\"ROHTAS\",821102:\"ROHTAS\",802132:\"ROHTAS\",821101:\"ROHTAS\",821108:\"ROHTAS\",802213:\"ROHTAS\",821301:\"ROHTAS\",821109:\"KAIMUR BHABUA\",821113:\"ROHTAS\",821104:\"ROHTAS\",821106:\"ROHTAS\",821309:\"ROHTAS\",821310:\"ROHTAS\",821302:\"ROHTAS\",802214:\"ROHTAS\",821107:\"ROHTAS\",802218:\"ROHTAS\",802211:\"ROHTAS\",802215:\"ROHTAS\",802216:\"ROHTAS\",821311:\"ROHTAS\",821303:\"ROHTAS\",821111:\"ROHTAS\",821306:\"ROHTAS\",821103:\"ROHTAS\",821305:\"ROHTAS\",821110:\"KAIMUR BHABUA\",821304:\"ROHTAS\",802217:\"ROHTAS\",802220:\"ROHTAS\",821105:\"ROHTAS\",802212:\"ROHTAS\",802219:\"ROHTAS\",821112:\"ROHTAS\",821307:\"ROHTAS\",821115:\"PATNA\",802221:\"ROHTAS\",821308:\"ROHTAS\",843114:\"VAISHALI\",844123:\"VAISHALI\",844126:\"VAISHALI\",843110:\"VAISHALI\",844125:\"VAISHALI\",844506:\"VAISHALI\",844113:\"VAISHALI\",844111:\"VAISHALI\",844103:\"VAISHALI\",844505:\"VAISHALI\",844114:\"VAISHALI\",844504:\"VAISHALI\",844502:\"VAISHALI\",844124:\"VAISHALI\",844509:\"VAISHALI\",844503:\"VAISHALI\",844122:\"VAISHALI\",844501:\"VAISHALI\",844118:\"VAISHALI\",844102:\"VAISHALI\",844116:\"VAISHALI\",844508:\"VAISHALI\",844115:\"VAISHALI\",844128:\"VAISHALI\",844117:\"VAISHALI\",844119:\"VAISHALI\",844507:\"VAISHALI\",844101:\"VAISHALI\",844121:\"VAISHALI\",851128:\"BEGUSARAI\",851216:\"KHAGARIA\",851111:\"BEGUSARAI\",848204:\"BEGUSARAI\",851131:\"BEGUSARAI\",848202:\"BEGUSARAI\",848203:\"KHAGARIA\",851206:\"Khagaria\",851118:\"BEGUSARAI\",851112:\"BEGUSARAI\",851133:\"BEGUSARAI\",851214:\"KHAGARIA\",851205:\"KHAGARIA\",851203:\"KHAGARIA\",851132:\"BEGUSARAI\",851204:\"KHAGARIA\",851129:\"BEGUSARAI\",851213:\"KHAGARIA\",848201:\"BEGUSARAI\",851217:\"BEGUSARAI\",851211:\"BEGUSARAI\",851212:\"KHAGARIA\",851114:\"BEGUSARAI\",851115:\"BEGUSARAI\",851113:\"BEGUSARAI\",851101:\"BEGUSARAI\",852161:\"KHAGARIA\",851120:\"BEGUSARAI\",851201:\"KHAGARIA\",851135:\"BEGUSARAI\",851134:\"BEGUSARAI\",851127:\"BEGUSARAI\",851215:\"KHAGARIA\",851202:\"KHAGARIA\",851116:\"BEGUSARAI\",851130:\"BEGUSARAI\",851117:\"BEGUSARAI\",851126:\"BEGUSARAI\",851218:\"BEGUSARAI\",851210:\"BEGUSARAI\",853204:\"BHAGALPUR\",813101:\"BANKA\",812001:\"BHAGALPUR\",813213:\"BHAGALPUR\",813210:\"BHAGALPUR\",813110:\"BANKA\",813222:\"BHAGALPUR\",812006:\"BHAGALPUR\",853202:\"BHAGALPUR\",812005:\"BHAGALPUR\",813209:\"BHAGALPUR\",853201:\"BHAGALPUR\",813108:\"BHAGALPUR\",813204:\"BHAGALPUR\",812004:\"BHAGALPUR\",813103:\"BANKA\",813105:\"BHAGALPUR\",813104:\"BHAGALPUR\",813207:\"BANKA\",813221:\"BHAGALPUR\",813106:\"BANKA\",853203:\"BHAGALPUR\",813205:\"BHAGALPUR\",813107:\"BANKA\",814131:\"BANKA\",813102:\"BANKA\",813202:\"BANKA\",812003:\"BHAGALPUR\",813201:\"BHAGALPUR\",813211:\"BANKA\",812002:\"BHAGALPUR\",813109:\"BANKA\",813203:\"BHAGALPUR\",853205:\"BHAGALPUR\",813212:\"BHAGALPUR\",813206:\"BHAGALPUR\",813214:\"BHAGALPUR\",812007:\"BHAGALPUR\",854317:\"KATIHAR\",855107:\"KISHANGANJ\",854112:\"KATIHAR\",855115:\"KISHANGANJ\",855114:\"KATIHAR\",855102:\"KATIHAR\",854101:\"KATIHAR\",855113:\"KATIHAR\",854106:\"KATIHAR\",855105:\"KATIHAR\",855101:\"KISHANGANJ\",854116:\"KATIHAR\",854104:\"KATIHAR\",854115:\"KATIHAR\",854114:\"KATIHAR\",855108:\"KISHANGANJ\",854107:\"KATIHAR\",854108:\"KATIHAR\",855116:\"KISHANGANJ\",854113:\"KATIHAR\",855117:\"KISHANGANJ\",854103:\"KATIHAR\",854117:\"KATIHAR\",855106:\"KISHANGANJ\",854105:\"KATIHAR\",854109:\"KATIHAR\",811301:\"JAMUI\",811112:\"LAKHISARAI\",811313:\"JAMUI\",811314:\"JAMUI\",811211:\"MUNGER\",811106:\"BEGUSARAI\",811317:\"JAMUI\",811212:\"MUNGER\",811312:\"JAMUI\",811309:\"LAKHISARAI\",811311:\"LAKHISARAI\",811315:\"JAMUI\",811302:\"LAKHISARAI\",811202:\"MUNGER\",811308:\"JAMUI\",811303:\"JAMUI\",811213:\"MUNGER\",811310:\"LAKHISARAI\",811305:\"JAMUI\",811201:\"MUNGER\",811316:\"JAMUI\",811214:\"MUNGER\",811307:\"JAMUI\",801303:\"NALANDA\",803107:\"NALANDA\",803213:\"PATNA\",803214:\"PATNA\",803114:\"NALANDA\",803120:\"NALANDA\",801305:\"NALANDA\",801302:\"NALANDA\",803101:\"NALANDA\",803119:\"NALANDA\",801307:\"NALANDA\",803113:\"NALANDA\",801304:\"NALANDA\",803118:\"NALANDA\",803211:\"PATNA\",801301:\"NALANDA\",803303:\"NALANDA\",803110:\"NALANDA\",803108:\"NALANDA\",803306:\"NALANDA\",803212:\"PATNA\",803117:\"NALANDA\",803111:\"NALANDA\",803116:\"NALANDA\",803307:\"NALANDA\",803216:\"NALANDA\",811104:\"Nalanda\",803302:\"NALANDA\",803115:\"NALANDA\",803301:\"PATNA\",803221:\"PATNA\",801306:\"NALANDA\",803215:\"NALANDA\",803121:\"NALANDA\",811105:\"SHEIKHPURA\",803109:\"NAWADA\",811304:\"SHEIKHPURA\",805123:\"NAWADA\",811101:\"NALANDA\",811103:\"SHEIKHPURA\",805131:\"GAYA\",805125:\"NAWADA\",805122:\"NAWADA\",805108:\"NAWADA\",805109:\"NAWADA\",805124:\"NAWADA\",805129:\"NAWADA\",805132:\"NAWADA\",805111:\"NAWADA\",805126:\"NAWADA\",805128:\"NAWADA\",805105:\"NAWADA\",805103:\"NAWADA\",805121:\"NAWADA\",805101:\"NAWADA\",805113:\"NAWADA\",811107:\"LAKHISARAI\",805104:\"NAWADA\",805107:\"NAWADA\",805130:\"NAWADA\",805102:\"NAWADA\",805127:\"NAWADA\",805106:\"NAWADA\",805112:\"NAWADA\",811102:\"SHEIKHPURA\",805110:\"NAWADA\",852213:\"MADHEPURA\",852138:\"SUPAUL\",852109:\"SUPAUL\",852216:\"SAHARSA\",852221:\"SAHARSA\",852116:\"MADHEPURA\",852126:\"SAHARSA\",852202:\"SAHARSA\",852122:\"MADHEPURA\",852108:\"SUPAUL\",852218:\"SUPAUL\",852217:\"SAHARSA\",852115:\"MADHEPURA\",852105:\"SUPAUL\",852124:\"SAHARSA\",852121:\"MADHEPURA\",852139:\"SUPAUL\",852131:\"SUPAUL\",852101:\"MADHEPURA\",852123:\"SAHARSA\",852215:\"SUPAUL\",852219:\"MADHEPURA\",852130:\"SUPAUL\",854339:\"SUPAUL\",852127:\"SAHARSA\",852106:\"SAHARSA\",854340:\"SUPAUL\",852212:\"SAHARSA\",852128:\"MADHEPURA\",852110:\"SUPAUL\",847452:\"SUPAUL\",852132:\"MADHEPURA\",852133:\"SUPAUL\",852114:\"MADHEPURA\",852112:\"MADHEPURA\",852214:\"SUPAUL\",852113:\"MADHEPURA\",852125:\"SUPAUL\",854338:\"SUPAUL\",852107:\"SAHARSA\",852137:\"SUPAUL\",847451:\"SUPAUL\",852129:\"SAHARSA\",852111:\"SUPAUL\",852220:\"MADHEPURA\",852201:\"SAHARSA\",848130:\"SAMASTIPUR\",848205:\"SAMASTIPUR\",848505:\"SAMASTIPUR\",848209:\"SAMASTIPUR\",848132:\"SAMASTIPUR\",848127:\"SAMASTIPUR\",848114:\"SAMASTIPUR\",848502:\"SAMASTIPUR\",848236:\"SAMASTIPUR\",848210:\"SAMASTIPUR\",848506:\"SAMASTIPUR\",848504:\"SAMASTIPUR\",848101:\"SAMASTIPUR\",848160:\"SAMASTIPUR\",848501:\"SAMASTIPUR\",848117:\"SAMASTIPUR\",848125:\"SAMASTIPUR\",848207:\"SAMASTIPUR\",848213:\"SAMASTIPUR\",848206:\"SAMASTIPUR\",848102:\"SAMASTIPUR\",848503:\"SAMASTIPUR\",848302:\"SAMASTIPUR\",848134:\"SAMASTIPUR\",848208:\"SAMASTIPUR\",848211:\"SAMASTIPUR\",848216:\"SAMASTIPUR\",848129:\"SAMASTIPUR\",848113:\"SAMASTIPUR\",848115:\"SAMASTIPUR\",848122:\"SAMASTIPUR\",848301:\"SAMASTIPUR\",848121:\"SAMASTIPUR\",848133:\"SAMASTIPUR\",848131:\"SAMASTIPUR\",847121:\"DARBHANGA\",847115:\"DARBHANGA\",847427:\"DARBHANGA\",847201:\"DARBHANGA\",847203:\"DARBHANGA\",847303:\"DARBHANGA\",847304:\"DARBHANGA\",847405:\"DARBHANGA\",847233:\"DARBHANGA\",847101:\"DARBHANGA\",847103:\"DARBHANGA\",847106:\"DARBHANGA\",847105:\"DARBHANGA\",847104:\"DARBHANGA\",846007:\"DARBHANGA\",847422:\"DARBHANGA\",846002:\"DARBHANGA\",847107:\"MUZAFFARPUR\",847428:\"DARBHANGA\",846005:\"DARBHANGA\",847301:\"SAMASTIPUR\",847202:\"DARBHANGA\",847423:\"DARBHANGA\",847237:\"DARBHANGA\",846003:\"DARBHANGA\",847306:\"DARBHANGA\",847122:\"DARBHANGA\",847123:\"DARBHANGA\",847204:\"DARBHANGA\",847337:\"DARBHANGA\",847307:\"DARBHANGA\",846004:\"DARBHANGA\",846009:\"DARBHANGA\",847302:\"DARBHANGA\",847407:\"DARBHANGA\",846001:\"DARBHANGA\",846008:\"DARBHANGA\",847429:\"DARBHANGA\",846006:\"DARBHANGA\",845301:\"EAST CHAMPARAN\",845433:\"EAST CHAMPARAN\",845413:\"EAST CHAMPARAN\",845415:\"EAST CHAMPARAN\",845417:\"EAST CHAMPARAN\",845401:\"EAST CHAMPARAN\",845428:\"EAST CHAMPARAN\",845303:\"EAST CHAMPARAN\",845411:\"EAST CHAMPARAN\",845429:\"EAST CHAMPARAN\",845315:\"EAST CHAMPARAN\",845437:\"EAST CHAMPARAN\",845418:\"EAST CHAMPARAN\",845456:\"EAST CHAMPARAN\",845436:\"EAST CHAMPARAN\",845435:\"EAST CHAMPARAN\",845424:\"EAST CHAMPARAN\",845457:\"EAST CHAMPARAN\",845412:\"EAST CHAMPARAN\",845422:\"EAST CHAMPARAN\",845304:\"EAST CHAMPARAN\",845426:\"DARBHANGA\",845302:\"EAST CHAMPARAN\",845434:\"EAST CHAMPARAN\",845420:\"EAST CHAMPARAN\",845416:\"EAST CHAMPARAN\",845305:\"EAST CHAMPARAN\",845423:\"EAST CHAMPARAN\",845427:\"EAST CHAMPARAN\",845425:\"EAST CHAMPARAN\",845432:\"EAST CHAMPARAN\",845406:\"EAST CHAMPARAN\",845430:\"EAST CHAMPARAN\",845414:\"EAST CHAMPARAN\",845419:\"EAST CHAMPARAN\",845458:\"EAST CHAMPARAN\",845440:\"EAST CHAMPARAN\",845431:\"EAST CHAMPARAN\",847230:\"MADHUBANI\",847402:\"MADHUBANI\",847234:\"MADHUBANI\",847401:\"MADHUBANI\",847109:\"MADHUBANI\",847222:\"MADHUBANI\",847108:\"MADHUBANI\",847308:\"MADHUBANI\",847224:\"MADHUBANI\",847409:\"MADHUBANI\",847226:\"MADHUBANI\",847239:\"MADHUBANI\",847223:\"MADHUBANI\",847408:\"MADHUBANI\",847227:\"MADHUBANI\",847102:\"MADHUBANI\",847411:\"MADHUBANI\",847228:\"MADHUBANI\",847421:\"MADHUBANI\",847225:\"MADHUBANI\",847212:\"MADHUBANI\",847305:\"MADHUBANI\",847236:\"MADHUBANI\",847215:\"MADHUBANI\",847403:\"MADHUBANI\",847404:\"MADHUBANI\",847410:\"MADHUBANI\",847235:\"MADHUBANI\",847231:\"MADHUBANI\",847240:\"MADHUBANI\",847229:\"MADHUBANI\",847232:\"MADHUBANI\",847238:\"MADHUBANI\",847213:\"MADHUBANI\",847424:\"MADHUBANI\",847214:\"MADHUBANI\",847211:\"MADHUBANI\",844112:\"MUZAFFARPUR\",843113:\"MUZAFFARPUR\",843118:\"MUZAFFARPUR\",842002:\"MUZAFFARPUR\",843125:\"MUZAFFARPUR\",843111:\"MUZAFFARPUR\",843104:\"MUZAFFARPUR\",843123:\"MUZAFFARPUR\",843119:\"MUZAFFARPUR\",842001:\"MUZAFFARPUR\",843103:\"MUZAFFARPUR\",843129:\"MUZAFFARPUR\",844120:\"MUZAFFARPUR\",843360:\"MUZAFFARPUR\",843131:\"MUZAFFARPUR\",843312:\"MUZAFFARPUR\",843127:\"MUZAFFARPUR\",843112:\"MUZAFFARPUR\",843101:\"MUZAFFARPUR\",843321:\"MUZAFFARPUR\",843115:\"MUZAFFARPUR\",843128:\"MUZAFFARPUR\",843102:\"MUZAFFARPUR\",844127:\"MUZAFFARPUR\",843105:\"MUZAFFARPUR\",843121:\"MUZAFFARPUR\",843117:\"MUZAFFARPUR\",843116:\"MUZAFFARPUR\",843122:\"MUZAFFARPUR\",843120:\"MUZAFFARPUR\",843109:\"MUZAFFARPUR\",843126:\"MUZAFFARPUR\",843108:\"MUZAFFARPUR\",843107:\"MUZAFFARPUR\",842004:\"MUZAFFARPUR\",843106:\"MUZAFFARPUR\",843124:\"MUZAFFARPUR\",842006:\"MUZAFFARPUR\",843130:\"MUZAFFARPUR\",842003:\"MUZAFFARPUR\",842005:\"MUZAFFARPUR\",854336:\"ARARIA\",854330:\"PURNIA\",854327:\"PURNIA\",854204:\"PURNIA\",854102:\"PURNIA\",854205:\"PURNIA\",854332:\"ARARIA\",854318:\"ARARIA\",854316:\"ARARIA\",854315:\"PURNIA\",854311:\"ARARIA\",854312:\"ARARIA\",854202:\"PURNIA\",854325:\"PURNIA\",854334:\"ARARIA\",854329:\"ARARIA\",854306:\"PURNIA\",854201:\"PURNIA\",854333:\"ARARIA\",854335:\"ARARIA\",854203:\"PURNIA\",854326:\"PURNIA\",854304:\"PURNIA\",854337:\"PURNIA\",854301:\"PURNIA\",854303:\"PURNIA\",854331:\"ARARIA\",854328:\"ARARIA\",854305:\"PURNIA\",854302:\"PURNIA\",841207:\"SARAN\",841414:\"SARAN\",841411:\"SARAN\",841421:\"SARAN\",841208:\"SARAN\",841401:\"SARAN\",841219:\"SARAN\",841213:\"SARAN\",841402:\"SARAN\",841221:\"SARAN\",841424:\"SARAN\",841417:\"SARAN\",841224:\"SARAN\",841442:\"SARAN\",841204:\"SARAN\",841412:\"SARAN\",841419:\"SARAN\",841215:\"SARAN\",841223:\"SARAN\",841101:\"SARAN\",841205:\"SARAN\",841403:\"SARAN\",841422:\"SARAN\",841206:\"SARAN\",841212:\"SARAN\",841201:\"SARAN\",841202:\"SARAN\",841410:\"SARAN\",841301:\"SARAN\",841311:\"SARAN\",841460:\"SARAN\",841214:\"SARAN\",841415:\"SARAN\",841225:\"SAMASTIPUR\",841305:\"SARAN\",841209:\"SARAN\",841211:\"SARAN\",841216:\"SARAN\",841217:\"SARAN\",841313:\"SARAN\",841316:\"SARAN\",841222:\"SARAN\",841312:\"SARAN\",841443:\"SARAN\",841302:\"SARAN\",841220:\"SARAN\",841218:\"SARAN\",841418:\"SARAN\",843334:\"SITAMARHI\",843313:\"SITAMARHI\",843302:\"SITAMARHI\",843324:\"SITAMARHI\",843330:\"SITAMARHI\",843311:\"SITAMARHI\",843314:\"SITAMARHI\",843323:\"SITAMARHI\",843320:\"SITAMARHI\",843335:\"SHEOHAR\",843333:\"SITAMARHI\",843317:\"SITAMARHI\",843327:\"SITAMARHI\",843332:\"SITAMARHI\",843331:\"SITAMARHI\",843325:\"SITAMARHI\",843326:\"SITAMARHI\",843328:\"SITAMARHI\",843315:\"SITAMARHI\",843319:\"SITAMARHI\",843316:\"SITAMARHI\",843329:\"SHEOHAR\",843318:\"SITAMARHI\",843322:\"SITAMARHI\",843301:\"SITAMARHI\",841405:\"GOPALGANJ\",841504:\"SIWAN\",841436:\"GOPALGANJ\",841439:\"SIWAN\",841426:\"GOPALGANJ\",841239:\"SIWAN\",841286:\"SIWAN\",841234:\"SIWAN\",841423:\"SIWAN\",841226:\"SIWAN\",841428:\"GOPALGANJ\",841231:\"SIWAN\",841203:\"SIWAN\",841236:\"SIWAN\",841287:\"SIWAN\",841438:\"GOPALGANJ\",841506:\"SIWAN\",841241:\"SIWAN\",841404:\"SIWAN\",841406:\"SIWAN\",841441:\"GOPALGANJ\",841232:\"SIWAN\",841409:\"GOPALGANJ\",841508:\"GOPALGANJ\",841244:\"SIWAN\",841501:\"GOPALGANJ\",841237:\"SIWAN\",841238:\"SIWAN\",841503:\"GOPALGANJ\",841435:\"SIWAN\",841245:\"KHAGARIA\",841227:\"SIWAN\",841408:\"SIWAN\",841243:\"SIWAN\",841425:\"GOPALGANJ\",841235:\"SIWAN\",841437:\"GOPALGANJ\",841413:\"GOPALGANJ\",841210:\"SIWAN\",841427:\"GOPALGANJ\",841507:\"SIWAN\",841434:\"SIWAN\",841407:\"GOPALGANJ\",841240:\"SIWAN\",841416:\"SIWAN\",841242:\"SIWAN\",841420:\"GOPALGANJ\",841233:\"SIWAN\",841440:\"GOPALGANJ\",841509:\"SIWAN\",841446:\"SIWAN\",841505:\"GOPALGANJ\",841502:\"SIWAN\",845459:\"WEST CHAMPARAN\",845438:\"WEST CHAMPARAN\",845455:\"WEST CHAMPARAN\",845450:\"WEST CHAMPARAN\",845101:\"WEST CHAMPARAN\",845452:\"WEST CHAMPARAN\",845103:\"WEST CHAMPARAN\",845307:\"WEST CHAMPARAN\",845106:\"WEST CHAMPARAN\",845454:\"WEST CHAMPARAN\",845449:\"WEST CHAMPARAN\",845105:\"WEST CHAMPARAN\",845404:\"WEST CHAMPARAN\",845451:\"WEST CHAMPARAN\",845453:\"WEST CHAMPARAN\",845306:\"WEST CHAMPARAN\",845104:\"WEST CHAMPARAN\",845107:\"WEST CHAMPARAN\",495113:\"BILASPURCGH\",495695:\"JANJGIRCHAMPA\",495660:\"JANJGIRCHAMPA\",495684:\"KORBA\",495690:\"JANJGIRCHAMPA\",495552:\"JANJGIRCHAMPA\",495668:\"JANJGIRCHAMPA\",495115:\"MUNGELI\",495692:\"JANJGIRCHAMPA\",495119:\"BILASPURCGH\",495689:\"JANJGIRCHAMPA\",495691:\"JANJGIRCHAMPA\",495330:\"BILASPURCGH\",495663:\"JANJGIRCHAMPA\",495224:\"BILASPURCGH\",495117:\"BILASPURCGH\",495550:\"BILASPURCGH\",495559:\"JANJGIRCHAMPA\",495335:\"MUNGELI\",495118:\"BILASPURCGH\",495003:\"BILASPURCGH\",495006:\"BILASPURCGH\",495449:\"KORBA\",495455:\"KORBA\",495448:\"KORBA\",495445:\"KORBA\",495334:\"MUNGELI\",495447:\"KORBA\",495687:\"JANJGIRCHAMPA\",495554:\"JANJGIRCHAMPA\",495674:\"KORBA\",495671:\"JANJGIRCHAMPA\",495116:\"BILASPURCGH\",495454:\"KORBA\",495112:\"BILASPURCGH\",495551:\"BILASPURCGH\",495557:\"JANJGIRCHAMPA\",495556:\"JANJGIRCHAMPA\",495001:\"BILASPURCGH\",495004:\"BILASPURCGH\",495446:\"KORBA\",495009:\"BILASPURCGH\",495661:\"JANJGIRCHAMPA\",495683:\"KORBA\",495220:\"BILASPURCGH\",495442:\"BILASPURCGH\",495688:\"JANJGIRCHAMPA\",495450:\"KORBA\",495686:\"JANJGIRCHAMPA\",495682:\"KORBA\",495452:\"KORBA\",495444:\"KORBA\",495677:\"KORBA\",495222:\"BILASPURCGH\",495553:\"JANJGIRCHAMPA\",495555:\"BILASPURCGH\",495669:\"Janjgir-Champa\",490001:\"DURG\",491445:\"RAJNANDGAON\",491558:\"RAJNANDGAON\",491881:\"RAJNANDGAON\",491441:\"RAJNANDGAON\",491888:\"RAJNANDGAON\",491223:\"BALOD\",491771:\"BALOD\",491226:\"BALOD\",490036:\"DURG\",491221:\"DURG\",491666:\"RAJNANDGAON\",491230:\"BALOD\",491668:\"RAJNANDGAON\",491665:\"RAJNANDGAON\",490042:\"DURG\",491661:\"RAJNANDGAON\",491332:\"BEMETARA\",491337:\"BEMETARA\",491001:\"DURG\",491225:\"BALOD\",491222:\"BALOD\",490021:\"DURG\",491229:\"RAJNANDGAON\",491335:\"BEMETARA\",491340:\"BEMETARA\",491559:\"KAWARDHA\",491444:\"RAJNANDGAON\",491557:\"RAJNANDGAON\",491995:\"KAWARDHA\",491227:\"BALOD\",491336:\"KAWARDHA\",491993:\"BEMETARA\",491331:\"DURG\",491111:\"DURG\",491228:\"BALOD\",490025:\"DURG\",490009:\"DURG\",491885:\"RAJNANDGAON\",490006:\"DURG\",490024:\"DURG\",491107:\"DURG\",491338:\"BEMETARA\",490026:\"DURG\",490011:\"RAIGARH\",490023:\"DURG\",490020:\"DURG\",490022:\"DURG\",491996:\"KAWARDHA\",497001:\"SURGUJA\",496107:\"RAIGARH\",496551:\"RAIGARH\",496445:\"RAIGARH\",496661:\"RAIGARH\",496245:\"JASPUR\",497220:\"BALRAMPUR\",497116:\"SURGUJA\",496331:\"JASPUR\",496330:\"JASPUR\",496100:\"RAIGARH\",497101:\"SURGUJA\",496224:\"JASPUR\",496338:\"JASPUR\",496554:\"RAIGARH\",496450:\"RAIGARH\",496440:\"RAIGARH\",497331:\"KORIYA\",496220:\"JASPUR\",496115:\"RAIGARH\",497778:\"KORIYA\",496111:\"RAIGARH\",496336:\"JASPUR\",497231:\"SURAJPUR\",497335:\"KORIYA\",496118:\"JASPUR\",496116:\"RAIGARH\",497333:\"KORIYA\",497225:\"BALRAMPUR\",497119:\"BALRAMPUR\",496223:\"JASPUR\",497114:\"SURGUJA\",496334:\"JASPUR\",496001:\"RAIGARH\",496665:\"RAIGARH\",497339:\"KORIYA\",496225:\"JASPUR\",497449:\"KORIYA\",497223:\"BALRAMPUR\",497111:\"SURGUJA\",497226:\"SURAJPUR\",496113:\"RAIGARH\",496242:\"JASPUR\",497235:\"SURAJPUR\",497224:\"BALRAMPUR\",497447:\"KORIYA\",497117:\"SURGUJA\",497118:\"BALRAMPUR\",497229:\"SURAJPUR\",497559:\"KORIYA\",497442:\"KORIYA\",497555:\"KORIYA\",496005:\"RAIGARH\",497451:\"KORIYA\",496227:\"JASPUR\",497446:\"KORIYA\",497450:\"KORIYA\",497553:\"KORIYA\",496109:\"RAIGARH\",497557:\"KORIYA\",497448:\"KORIYA\",496108:\"RAIGARH\",497773:\"KORIYA\",493661:\"GARIABAND\",493445:\"MAHASAMUND\",493773:\"DHAMTARI\",493663:\"DHAMTARI\",493225:\"RAIPUR\",493526:\"BALOD BAZER\",493992:\"GARIABAND\",493111:\"RAIPUR\",493335:\"BALOD BAZER\",493778:\"DHAMTARI\",493558:\"MAHASAMUND\",493228:\"BALOD BAZER\",493891:\"GARIABAND\",493559:\"BALOD BAZER\",493554:\"MAHASAMUND\",493770:\"DHAMTARI\",493441:\"RAIPUR\",493555:\"MAHASAMUND\",493331:\"BALOD BAZER\",492109:\"GARIABAND\",493449:\"MAHASAMUND\",493116:\"RAIPUR\",493332:\"BALOD BAZER\",493101:\"BALOD BAZER\",493551:\"MAHASAMUND\",493344:\"BALOD BAZER\",493885:\"GARIABAND\",493889:\"GARIABAND\",493662:\"DHAMTARI\",492112:\"MAHASAMUND\",493113:\"BALOD BAZER\",493118:\"BALOD BAZER\",493195:\"BALOD BAZER\",493776:\"DHAMTARI\",493222:\"BALOD BAZER\",493229:\"BALOD BAZER\",493448:\"MAHASAMUND\",493338:\"BALOD BAZER\",493221:\"RAIPUR\",492001:\"RAIPUR\",493114:\"RAIPUR\",492101:\"RAIPUR\",493996:\"GARIABAND\",493890:\"GARIABAND\",492015:\"RAIPUR\",493888:\"GARIABAND\",493196:\"BALOD BAZER\",492009:\"RAIPUR\",492017:\"RAIPUR\",492008:\"RAIPUR\",493887:\"GARIABAND\",492012:\"RAIPUR\",492016:\"RAIPUR\",492002:\"RAIPUR\",492013:\"RAIPUR\",493881:\"RAIPUR\",492004:\"RAIPUR\",492010:\"RAIPUR\",492014:\"RAIPUR\",492018:\"RAIPUR\",492099:\"RAIPUR\",492003:\"RAIPUR\",492005:\"RAIPUR\",494335:\"Kanker\",494001:\"Jagdalpur\",494331:\"Bastar\",494228:\"Bastar\",494230:\"Bastar\",494333:\"Kanker\",494665:\"Kanker\",494337:\"Kanker\",494556:\"Dantewada\",494122:\"Dantewada\",494635:\"Kanker\",494221:\"Bastar\",494669:\"Kanker\",494446:\"Bijapur(CGH)\",494334:\"Kanker\",494447:\"Bijapur(CGH)\",494237:\"Kanker\",494226:\"Bastar\",494553:\"Dantewada\",494010:\"Bastar\",494347:\"Bastar\",494441:\"DANTEWADA\",494224:\"Bastar\",494552:\"Dantewada\",494442:\"Bastar\",494223:\"Bastar\",494222:\"Bastar\",494115:\"Dantewada\",494771:\"Kanker\",494450:\"Bilaspur\",494444:\"Bijapur(CGH)\",494111:\"Dantewada\",494670:\"Kanker\",494661:\"Narayanpur\",494449:\"Dantewada\",494114:\"Dantewada\",494777:\"Kanker\",494776:\"Kanker\",494229:\"Bastar\",494448:\"Bijapur(CGH)\",494336:\"Kanker\",494551:\"Dantewada\",110092:\"EAST DELHI\",110051:\"SHAHDARA\",110032:\"SHAHDARA\",110090:\"NORTH EAST DELHI\",110053:\"SHAHDARA\",110091:\"EAST DELHI\",110094:\"NORTH EAST DELHI\",110095:\"SHAHDARA\",110031:\"EAST DELHI\",110096:\"EAST DELHI\",110093:\"NORTH EAST DELHI\",110006:\"NORTH DELHI\",110033:\"NORTH WEST DELHI\",110036:\"NORTH WEST DELHI\",110034:\"NORTH WEST DELHI\",110054:\"NORTH DELHI\",110052:\"NORTH WEST DELHI\",110039:\"NORTH DELHI\",110085:\"NORTH WEST DELHI\",110042:\"NORTH WEST DELHI\",110040:\"NORTH DELHI\",110086:\"NORTH DELHI\",110084:\"NORTH EAST DELHI\",110035:\"NORTH WEST DELHI\",110081:\"NORTH DELHI\",110007:\"NORTH DELHI\",110009:\"NORTH DELHI\",110088:\"NORTH WEST DELHI\",110082:\"NORTH DELHI\",110083:\"NORTH WEST DELHI\",110089:\"NORTH WEST DELHI\",110099:\"NORTH WEST DELHI\",110056:\"NORTH WEST DELHI\",110002:\"CENTRAL DELHI\",110055:\"CENTRAL DELHI\",110005:\"CENTRAL DELHI\",110001:\"CENTRAL DELHI\",110008:\"CENTRAL DELHI\",110003:\"CENTRAL DELHI\",110012:\"CENTRAL DELHI\",110011:\"CENTRAL DELHI\",110060:\"CENTRAL DELHI\",110004:\"CENTRAL DELHI\",110069:\"CENTRAL DELHI\",110025:\"SOUTH DELHI\",110080:\"SOUTH DELHI\",110019:\"SOUTH DELHI\",110076:\"SOUTH DELHI\",110024:\"SOUTH DELHI\",110049:\"SOUTH DELHI\",110044:\"SOUTH DELHI\",110020:\"SOUTH DELHI\",110062:\"SOUTH DELHI\",110013:\"SOUTH DELHI\",110017:\"SOUTH DELHI\",110065:\"SOUTH DELHI\",110048:\"SOUTH DELHI\",110014:\"SOUTH DELHI\",110010:\"SOUTH WEST DELHI\",110038:\"NEW DELHI\",110021:\"SOUTH WEST DELHI\",110029:\"SOUTH WEST DELHI\",110047:\"SOUTH DELHI\",110074:\"SOUTH DELHI\",110061:\"SOUTH WEST DELHI\",110030:\"SOUTH DELHI\",110016:\"SOUTH DELHI\",110037:\"NEW DELHI\",110068:\"SOUTH DELHI\",110067:\"SOUTH WEST DELHI\",110097:\"SOUTH WEST DELHI\",110023:\"NEW DELHI\",110070:\"SOUTH DELHI\",110066:\"NEW DELHI\",110022:\"NEW DELHI\",110057:\"NEW DELHI\",110075:\"SOUTH WEST DELHI\",110043:\"WEST DELHI\",110018:\"WEST DELHI\",110026:\"WEST DELHI\",110071:\"SOUTH WEST DELHI\",110077:\"SOUTH WEST DELHI\",110041:\"WEST DELHI\",110072:\"SOUTH WEST DELHI\",110059:\"WEST DELHI\",110058:\"WEST DELHI\",110045:\"SOUTH WEST DELHI\",110073:\"SOUTH WEST DELHI\",110015:\"WEST DELHI\",110078:\"SOUTH WEST DELHI\",110064:\"WEST DELHI\",110027:\"WEST DELHI\",110063:\"WEST DELHI\",110087:\"WEST DELHI\",110046:\"SOUTH WEST DELHI\",110028:\"SOUTH WEST DELHI\",380058:\"AHMEDABAD\",380026:\"AHMEDABAD\",380007:\"AHMEDABAD\",380016:\"AHMEDABAD\",380024:\"AHMEDABAD\",382427:\"AHMEDABAD\",380015:\"AHMEDABAD\",380009:\"AHMEDABAD\",382210:\"AHMEDABAD\",382430:\"AHMEDABAD\",382425:\"AHMEDABAD\",380022:\"AHMEDABAD\",380028:\"AHMEDABAD\",382433:\"AHMEDABAD\",382330:\"AHMEDABAD\",380054:\"AHMEDABAD\",380004:\"AHMEDABAD\",382424:\"AHMEDABAD\",380019:\"AHMEDABAD\",380001:\"AHMEDABAD\",380008:\"AHMEDABAD\",380003:\"Ahmedabad City\",382435:\"AHMEDABAD\",380006:\"AHMEDABAD\",380027:\"AHMEDABAD\",380061:\"AHMEDABAD\",380050:\"AHMEDABAD\",380021:\"AHMEDABAD\",382405:\"AHMEDABAD\",382445:\"AHMEDABAD\",382443:\"AHMEDABAD\",380051:\"AHMEDABAD\",380055:\"AHMEDABAD\",380005:\"AHMEDABAD\",382350:\"AHMEDABAD\",382345:\"AHMEDABAD\",382340:\"AHMEDABAD\",380052:\"AHMEDABAD\",380002:\"AHMEDABAD\",380013:\"AHMEDABAD\",380014:\"AHMEDABAD\",380049:\"AHMEDABAD\",382415:\"AHMEDABAD\",380023:\"AHMEDABAD\",382480:\"AHMEDABAD\",380018:\"AHMEDABAD\",382475:\"AHMEDABAD\",380063:\"AHMEDABAD\",382418:\"AHMEDABAD\",385555:\"BANASKANTHA\",385535:\"BANASKANTHA\",385566:\"BANASKANTHA\",385545:\"BANASKANTHA\",385110:\"BANASKANTHA\",385010:\"BANASKANTHA\",385575:\"BANASKANTHA\",385565:\"BANASKANTHA\",385410:\"BANASKANTHA\",385520:\"BANASKANTHA\",385320:\"BANASKANTHA\",385530:\"BANASKANTHA\",385135:\"BANASKANTHA\",385210:\"BANASKANTHA\",385570:\"BANASKANTHA\",385505:\"BANASKANTHA\",385560:\"BANASKANTHA\",385001:\"BANASKANTHA\",385510:\"BANASKANTHA\",385120:\"BANASKANTHA\",385421:\"BANASKANTHA\",385310:\"BANASKANTHA\",385330:\"BANASKANTHA\",385550:\"BANASKANTHA\",385130:\"BANASKANTHA\",385515:\"BANASKANTHA\",385540:\"BHARUCH\",385506:\"BANASKANTHA\",382120:\"AHMEDABAD\",382421:\"GANDHI NAGAR\",382640:\"GANDHI NAGAR\",382220:\"AHMEDABAD\",382460:\"AHMEDABAD\",382810:\"GANDHI NAGAR\",382250:\"AHMEDABAD\",382245:\"BOTAB\",382042:\"GANDHI NAGAR\",382255:\"BOTAB\",382650:\"GANDHI NAGAR\",382225:\"AHMEDABAD\",382463:\"AHMEDABAD\",382845:\"GANDHI NAGAR\",382735:\"GANDHI NAGAR\",382305:\"GANDHI NAGAR\",382115:\"AHMEDABAD\",382855:\"GANDHI NAGAR\",382230:\"AHMEDABAD\",382150:\"AHMEDABAD\",382140:\"AHMEDABAD\",382260:\"AHMEDABAD\",382308:\"GANDHI NAGAR\",382170:\"GANDHI NAGAR\",382240:\"AHMEDABAD\",382145:\"AHMEDABAD\",382721:\"GANDHI NAGAR\",382450:\"BOTAB\",382355:\"GANDHI NAGAR\",382455:\"AHMEDABAD\",380060:\"AHMEDABAD\",382428:\"GANDHI NAGAR\",382422:\"GANDHI NAGAR\",382045:\"GANDHI NAGAR\",382465:\"AHMEDABAD\",382481:\"AHMEDABAD\",382321:\"GANDHI NAGAR\",382213:\"AHMEDABAD\",382110:\"AHMEDABAD\",382729:\"GANDHI NAGAR\",382130:\"AHMEDABAD\",382740:\"GANDHI NAGAR\",382315:\"AHMEDABAD\",382470:\"AHMEDABAD\",382320:\"GANDHI NAGAR\",382010:\"GANDHI NAGAR\",382016:\"GANDHI NAGAR\",382021:\"GANDHI NAGAR\",382024:\"GANDHI NAGAR\",382028:\"GANDHI NAGAR\",382030:\"GANDHI NAGAR\",382006:\"GANDHI NAGAR\",382007:\"GANDHI NAGAR\",382265:\"AHMEDABAD\",382449:\"AHMEDABAD\",382423:\"GANDHI NAGAR\",382725:\"GANDHI NAGAR\",382426:\"GANDHI NAGAR\",382835:\"AHMEDABAD\",382610:\"GANDHI NAGAR\",382620:\"GANDHI NAGAR\",382630:\"GANDHI NAGAR\",382722:\"Gandhinagar\",380059:\"AHMEDABAD\",382041:\"GANDHI NAGAR\",382728:\"MAHESANA\",384440:\"MAHESANA\",384570:\"MAHESANA\",384445:\"MAHESANA\",384170:\"MAHESANA\",384460:\"MAHESANA\",384205:\"MAHESANA\",384415:\"MAHESANA\",384455:\"MAHESANA\",384435:\"MAHESANA\",384335:\"MAHESANA\",384330:\"MAHESANA\",384410:\"MAHESANA\",384355:\"MAHESANA\",384325:\"MAHESANA\",384120:\"MAHESANA\",384001:\"MAHESANA\",384315:\"MAHESANA\",384450:\"MAHESANA\",384421:\"MAHESANA\",384130:\"MAHESANA\",384135:\"MAHESANA\",384465:\"MAHESANA\",384565:\"MAHESANA\",384305:\"MAHESANA\",384530:\"MAHESANA\",384360:\"MAHESANA\",384560:\"MAHESANA\",384412:\"MAHESANA\",384012:\"MAHESANA\",384515:\"MAHESANA\",384520:\"MAHESANA\",384470:\"MAHESANA\",384140:\"MAHESANA\",384430:\"MAHESANA\",384310:\"MAHESANA\",384550:\"MAHESANA\",384540:\"MAHESANA\",384002:\"MAHESANA\",384003:\"MAHESANA\",382815:\"MAHESANA\",384340:\"MAHESANA\",384345:\"MAHESANA\",384441:\"MAHESANA\",384320:\"MAHESANA\",384160:\"MAHESANA\",385360:\"PATAN\",384285:\"PATAN\",384245:\"PATAN\",384255:\"PATAN\",384266:\"PATAN\",385340:\"PATAN\",384240:\"PATAN\",384110:\"PATAN\",384272:\"PATAN\",384151:\"PATAN\",384246:\"PATAN\",384275:\"PATAN\",384220:\"PATAN\",384241:\"PATAN\",385350:\"PATAN\",384225:\"PATAN\",384221:\"PATAN\",384230:\"PATAN\",384290:\"PATAN\",384260:\"PATAN\",384229:\"PATAN\",384265:\"PATAN\",383460:\"SABARKANTHA\",383240:\"ARAVALLI\",383250:\"ARAVALLI\",383276:\"SABARKANTHA\",383001:\"SABARKANTHA\",383270:\"SABARKANTHA\",383422:\"SABARKANTHA\",383260:\"SABARKANTHA\",383325:\"ARAVALLI\",383246:\"ARAVALLI\",383345:\"ARAVALLI\",383307:\"ARAVALLI\",383210:\"SABARKANTHA\",383315:\"ARAVALLI\",383330:\"ARAVALLI\",383310:\"ARAVALLI\",383215:\"SABARKANTHA\",383305:\"SABARKANTHA\",383410:\"SABARKANTHA\",383251:\"ARAVALLI\",383110:\"SABARKANTHA\",383225:\"SABARKANTHA\",383235:\"SABARKANTHA\",383335:\"ARAVALLI\",383434:\"SABARKANTHA\",383255:\"SABARKANTHA\",383462:\"SABARKANTHA\",383205:\"SABARKANTHA\",383350:\"ARAVALLI\",383430:\"SABARKANTHA\",383316:\"ARAVALLI\",383245:\"ARAVALLI\",383440:\"SABARKANTHA\",383230:\"SABARKANTHA\",383421:\"SABARKANTHA\",383340:\"ARAVALLI\",383006:\"SABARKANTHA\",383317:\"ARAVALLI\",383120:\"SABARKANTHA\",383275:\"SABARKANTHA\",383320:\"ARAVALLI\",383220:\"SABARKANTHA\",383355:\"ARAVALLI\",383030:\"SABARKANTHA\",383010:\"SABARKANTHA\",383450:\"ARAVALLI\",364522:\"AMRELI\",365430:\"AMRELI\",365450:\"AMRELI\",365535:\"AMRELI\",365630:\"AMRELI\",365220:\"AMRELI\",365601:\"AMRELI\",364521:\"AMRELI\",365635:\"AMRELI\",365620:\"AMRELI\",365480:\"AMRELI\",365610:\"AMRELI\",365540:\"AMRELI\",365421:\"AMRELI\",365560:\"AMRELI\",365440:\"AMRELI\",365456:\"AMRELI\",365460:\"AMRELI\",365730:\"AMRELI\",365435:\"AMRELI\",365650:\"AMRELI\",365645:\"AMRELI\",364530:\"AMRELI\",364525:\"AMRELI\",365640:\"AMRELI\",365410:\"AMRELI\",365555:\"AMRELI\",364515:\"AMRELI\",365550:\"AMRELI\",365455:\"AMRELI\",365541:\"AMRELI\",364002:\"BHAVNAGAR\",364765:\"BHAVNAGAR\",364260:\"BHAVNAGAR\",364320:\"BHAVNAGAR\",364081:\"BHAVNAGAR\",364210:\"BHAVNAGAR\",364310:\"BHAVNAGAR\",364270:\"BHAVNAGAR\",364740:\"BHAVNAGAR\",364510:\"BHAVNAGAR\",364145:\"BHAVNAGAR\",364710:\"BHAVNAGAR\",364280:\"BHAVNAGAR\",364150:\"BHAVNAGAR\",364290:\"BHAVNAGAR\",364313:\"BHAVNAGAR\",364720:\"BHAVNAGAR\",364240:\"BHAVNAGAR\",364295:\"BHAVNAGAR\",364505:\"BHAVNAGAR\",364050:\"BHAVNAGAR\",364120:\"BHAVNAGAR\",364005:\"BHAVNAGAR\",364004:\"BHAVNAGAR\",364001:\"BHAVNAGAR\",364006:\"BHAVNAGAR\",364003:\"BHAVNAGAR\",364060:\"BHAVNAGAR\",364110:\"BHAVNAGAR\",364230:\"BHAVNAGAR\",364750:\"BHAVNAGAR\",364130:\"BHAVNAGAR\",364330:\"BHAVNAGAR\",364140:\"BHAVNAGAR\",364265:\"BHAVNAGAR\",364760:\"BHAVNAGAR\",364730:\"BHAVNAGAR\",364275:\"BHAVNAGAR\",364070:\"BHAVNAGAR\",364135:\"BHAVNAGAR\",364250:\"BHAVNAGAR\",360055:\"RAJKOT\",360360:\"RAJKOT\",360485:\"RAJKOT\",360050:\"RAJKOT\",360311:\"RAJKOT\",360490:\"RAJKOT\",360070:\"RAJKOT\",360030:\"RAJKOT\",360450:\"RAJKOT\",360040:\"RAJKOT\",360480:\"RAJKOT\",360330:\"RAJKOT\",360452:\"RAJKOT\",360421:\"RAJKOT\",360410:\"RAJKOT\",360405:\"RAJKOT\",360045:\"RAJKOT\",360370:\"RAJKOT\",360035:\"RAJKOT\",360430:\"RAJKOT\",364465:\"RAJKOT\",360460:\"RAJKOT\",360325:\"RAJKOT\",360440:\"RAJKOT\",360320:\"RAJKOT\",360380:\"RAJKOT\",360470:\"RAJKOT\",360465:\"RAJKOT\",360375:\"RAJKOT\",361003:\"JAMNAGAR\",361110:\"JAMNAGAR\",363655:\"JAMNAGAR\",360515:\"DEVBHOOMI DWERKA\",361305:\"DEVBHOOMI DWERKA\",361006:\"JAMNAGAR\",361162:\"JAMNAGAR\",361280:\"JAMNAGAR\",361345:\"DEVBHOOMI DWERKA\",361170:\"JAMNAGAR\",361160:\"JAMNAGAR\",361325:\"DEVBHOOMI DWERKA\",361250:\"JAMNAGAR\",361230:\"JAMNAGAR\",361240:\"JAMNAGAR\",360530:\"JAMNAGAR\",360540:\"JAMNAGAR\",361013:\"JAMNAGAR\",361315:\"DEVBHOOMI DWERKA\",361120:\"JAMNAGAR\",361335:\"JAMNAGAR\",361002:\"JAMNAGAR\",361009:\"JAMNAGAR\",361310:\"DEVBHOOMI DWERKA\",361011:\"JAMNAGAR\",361330:\"JAMNAGAR\",361306:\"DEVBHOOMI DWERKA\",360510:\"DEVBHOOMI DWERKA\",361010:\"DEVBHOOMI DWERKA\",361220:\"JAMNAGAR\",360520:\"JAMNAGAR\",361320:\"JAMNAGAR\",361012:\"JAMNAGAR\",361130:\"JAMNAGAR\",361210:\"JAMNAGAR\",361140:\"JAMNAGAR\",361005:\"JAMNAGAR\",361004:\"JAMNAGAR\",361007:\"JAMNAGAR\",361001:\"JAMNAGAR\",360531:\"JAMNAGAR\",361008:\"JAMNAGAR\",361350:\"DEVBHOOMI DWERKA\",361142:\"JAMNAGAR\",361141:\"JAMNAGAR\",361347:\"DEVBHOOMI DWERKA\",361150:\"JAMNAGAR\",362720:\"GIR SOMNATH\",362255:\"JUNAGADH\",362222:\"JUNAGADH\",362220:\"JUNAGADH\",362268:\"GIR SOMNATH\",362150:\"GIR SOMNATH\",362245:\"JUNAGADH\",362140:\"GIR SOMNATH\",362260:\"JUNAGADH\",362565:\"GIR SOMNATH\",362560:\"GIR SOMNATH\",362715:\"GIR SOMNATH\",362263:\"JUNAGADH\",362215:\"JUNAGADH\",362510:\"GIR SOMNATH\",362250:\"JUNAGADH\",362610:\"JUNAGADH\",362030:\"JUNAGADH\",362110:\"JUNAGADH\",362120:\"JUNAGADH\",362020:\"JUNAGADH\",362002:\"Junagadh\",362310:\"JUNAGADH\",362570:\"DIU\",362130:\"JUNAGADH\",362710:\"GIR SOMNATH\",362135:\"GIR SOMNATH\",362315:\"JUNAGADH\",362265:\"GIR SOMNATH\",362275:\"GIR SOMNATH\",362205:\"JUNAGADH\",362520:\"DIU\",362037:\"JUNAGADH\",362530:\"GIR SOMNATH\",362227:\"JUNAGADH\",362550:\"GIR SOMNATH\",362540:\"DIU\",362011:\"JUNAGADH\",362269:\"GIR SOMNATH\",362015:\"GIR SOMNATH\",362001:\"JUNAGADH\",370421:\"KACHCHH\",370155:\"KACHCHH\",370135:\"KACHCHH\",370205:\"KACHCHH\",370655:\"KACHCHH\",370605:\"KACHCHH\",370150:\"KACHCHH\",370140:\"KACHCHH\",370610:\"KACHCHH\",370165:\"KACHCHH\",370675:\"KACHCHH\",370110:\"KACHCHH\",370665:\"KACHCHH\",370645:\"KACHCHH\",370485:\"KACHCHH\",370105:\"KACHCHH\",370601:\"KACHCHH\",370475:\"KACHCHH\",370145:\"KACHCHH\",370650:\"KACHCHH\",370427:\"KACHCHH\",370620:\"KACHCHH\",370115:\"KACHCHH\",370660:\"KACHCHH\",370415:\"KACHCHH\",370455:\"KACHCHH\",370405:\"KACHCHH\",370465:\"KACHCHH\",370625:\"KACHCHH\",370410:\"KACHCHH\",370001:\"KACHCHH\",370130:\"KACHCHH\",370030:\"KACHCHH\",370240:\"KACHCHH\",370160:\"KACHCHH\",370510:\"KACHCHH\",370450:\"KACHCHH\",370020:\"KACHCHH\",370435:\"KACHCHH\",370430:\"KACHCHH\",370445:\"KACHCHH\",370630:\"KACHCHH\",370040:\"KACHCHH\",370627:\"KACHCHH\",370490:\"KACHCHH\",370201:\"KACHCHH\",370015:\"KACHCHH\",370641:\"KACHCHH\",370670:\"KACHCHH\",370230:\"RAJKOT\",370210:\"KACHCHH\",370425:\"KACHCHH\",370460:\"KACHCHH\",370640:\"KACHCHH\",370615:\"KACHCHH\",370203:\"KACHCHH\",360545:\"PORBANDAR\",360590:\"PORBANDAR\",362240:\"JUNAGADH\",360570:\"PORBANDAR\",360560:\"PORBANDAR\",362625:\"JUNAGADH\",362620:\"PORBANDAR\",360579:\"PORBANDAR\",362230:\"PORBANDAR\",360576:\"PORBANDAR\",362640:\"JUNAGADH\",360550:\"PORBANDAR\",362630:\"JUNAGADH\",362225:\"JUNAGADH\",362650:\"PORBANDAR\",360578:\"PORBANDAR\",362226:\"JUNAGADH\",360575:\"PORBANDAR\",360577:\"PORBANDAR\",360110:\"RAJKOT\",360003:\"RAJKOT\",363621:\"MORBI\",363641:\"MORBI\",360060:\"RAJKOT\",363650:\"MORBI\",360025:\"RAJKOT\",363642:\"MORBI\",363660:\"MORBI\",360021:\"RAJKOT\",360022:\"RAJKOT\",363623:\"Morbi\",360020:\"RAJKOT\",363630:\"MORBI\",363670:\"MORBI\",360005:\"RAJKOT\",363635:\"MORBI\",360002:\"RAJKOT\",360023:\"RAJKOT\",360004:\"RAJKOT\",360006:\"RAJKOT\",360024:\"RAJKOT\",360001:\"RAJKOT\",360007:\"RAJKOT\",363643:\"MORBI\",360026:\"RAJKOT\",363775:\"SURENDRA NAGAR\",363780:\"SURENDRA NAGAR\",363330:\"SURENDRA NAGAR\",363745:\"SURENDRA NAGAR\",363520:\"SURENDRA NAGAR\",363425:\"SURENDRA NAGAR\",363110:\"SURENDRA NAGAR\",363421:\"SURENDRA NAGAR\",363040:\"SURENDRA NAGAR\",363030:\"SURENDRA NAGAR\",363765:\"SURENDRA NAGAR\",363310:\"SURENDRA NAGAR\",363510:\"SURENDRA NAGAR\",363320:\"SURENDRA NAGAR\",363410:\"SURENDRA NAGAR\",363423:\"SURENDRA NAGAR\",363750:\"SURENDRA NAGAR\",363415:\"SURENDRA NAGAR\",363115:\"SURENDRA NAGAR\",363530:\"SURENDRA NAGAR\",363440:\"SURENDRA NAGAR\",363755:\"SURENDRA NAGAR\",363351:\"SURENDRA NAGAR\",363430:\"SURENDRA NAGAR\",363435:\"SURENDRA NAGAR\",363427:\"SURENDRA NAGAR\",363020:\"SURENDRA NAGAR\",363760:\"SURENDRA NAGAR\",363001:\"SURENDRA NAGAR\",363002:\"SURENDRA NAGAR\",363035:\"SURENDRA NAGAR\",388305:\"ANAND\",388230:\"KHEDA\",388130:\"ANAND\",388210:\"ANAND\",388310:\"ANAND\",388225:\"KHEDA\",388360:\"ANAND\",388543:\"ANAND\",388265:\"MAHISAGAR\",388307:\"ANAND\",388250:\"MAHISAGAR\",388001:\"ANAND\",388110:\"ANAND\",388510:\"ANAND\",388205:\"ANAND\",388315:\"ANAND\",388520:\"ANAND\",388220:\"ANAND\",388320:\"ANAND\",388530:\"ANAND\",388255:\"MAHISAGAR\",388260:\"MAHISAGAR\",388540:\"ANAND\",387310:\"ANAND\",388560:\"ANAND\",388365:\"ANAND\",388345:\"ANAND\",388370:\"ANAND\",388325:\"ANAND\",388545:\"ANAND\",388350:\"ANAND\",388330:\"ANAND\",388215:\"ANAND\",388235:\"MAHISAGAR\",388335:\"ANAND\",388245:\"MAHISAGAR\",388340:\"ANAND\",388355:\"ANAND\",388306:\"ANAND\",388120:\"ANAND\",388121:\"ANAND\",388239:\"MAHISAGAR\",394150:\"SURAT\",394620:\"SURAT\",394651:\"TAPI\",394710:\"DANGS\",394355:\"SURAT\",394246:\"TAPI\",394365:\"TAPI\",394350:\"SURAT\",394163:\"SURAT\",394641:\"TAPI\",394352:\"SURAT\",394633:\"TAPI\",394250:\"SURAT\",394380:\"TAPI\",396510:\"SURAT\",394630:\"TAPI\",394635:\"TAPI\",394325:\"SURAT\",394170:\"SURAT\",394320:\"SURAT\",394375:\"TAPI\",394305:\"SURAT\",394690:\"TAPI\",394340:\"SURAT\",394317:\"SURAT\",394655:\"TAPI\",394335:\"SURAT\",394310:\"SURAT\",394715:\"DANGS\",394601:\"SURAT\",394730:\"DANGS\",394240:\"SURAT\",394360:\"TAPI\",394650:\"TAPI\",394680:\"TAPI\",394370:\"TAPI\",394640:\"TAPI\",394248:\"SURAT\",394140:\"SURAT\",394670:\"TAPI\",394660:\"TAPI\",394652:\"TAPI\",394160:\"SURAT\",394330:\"SURAT\",394180:\"SURAT\",394245:\"SURAT\",394155:\"SURAT\",394720:\"DANGS\",394315:\"SURAT\",394326:\"SURAT\",394716:\"DANGS\",394327:\"SURAT\",394185:\"SURAT\",394190:\"SURAT\",394345:\"SURAT\",392110:\"BHARUCH\",392240:\"BHARUCH\",392130:\"BHARUCH\",393151:\"NARMADA\",393130:\"BHARUCH\",394115:\"BHARUCH\",392150:\"BHARUCH\",393025:\"NARMADA\",393041:\"NARMADA\",393030:\"BHARUCH\",393110:\"BHARUCH\",393050:\"NARMADA\",392012:\"BHARUCH\",393140:\"NARMADA\",393010:\"BHARUCH\",392030:\"BHARUCH\",393002:\"BHARUCH\",393001:\"BHARUCH\",392025:\"BHARUCH\",394810:\"BHARUCH\",393120:\"BHARUCH\",393017:\"BHARUCH\",393040:\"NARMADA\",393145:\"NARMADA\",392155:\"BHARUCH\",393105:\"BHARUCH\",393125:\"BHARUCH\",393135:\"BHARUCH\",392210:\"BHARUCH\",392001:\"BHARUCH\",393155:\"NARMADA\",392035:\"BHARUCH\",392140:\"BHARUCH\",392230:\"BHARUCH\",392020:\"BHARUCH\",392170:\"BHARUCH\",392040:\"BHARUCH\",393020:\"BHARUCH\",391810:\"BHARUCH\",392165:\"BHARUCH\",393115:\"BHARUCH\",392011:\"BHARUCH\",392220:\"BHARUCH\",393150:\"NARMADA\",392135:\"BHARUCH\",392015:\"BHARUCH\",392160:\"BHARUCH\",392180:\"BHARUCH\",394116:\"BHARUCH\",392215:\"BHARUCH\",387335:\"KHEDA\",387650:\"KHEDA\",387610:\"KHEDA\",387355:\"KHEDA\",387430:\"KHEDA\",387305:\"KHEDA\",387510:\"KHEDA\",387115:\"KHEDA\",387620:\"KHEDA\",388570:\"KHEDA\",388160:\"KHEDA\",387130:\"KHEDA\",387630:\"KHEDA\",387570:\"KHEDA\",387365:\"KHEDA\",388450:\"KHEDA\",387320:\"KHEDA\",387530:\"KHEDA\",387001:\"KHEDA\",388550:\"KHEDA\",387635:\"KHEDA\",387240:\"KHEDA\",388180:\"KHEDA\",388580:\"KHEDA\",387345:\"KHEDA\",387350:\"KHEDA\",388410:\"KHEDA\",387380:\"KHEDA\",387370:\"KHEDA\",388430:\"KHEDA\",388640:\"KHEDA\",387120:\"KHEDA\",387002:\"KHEDA\",388140:\"KHEDA\",388620:\"KHEDA\",387315:\"KHEDA\",387560:\"KHEDA\",388421:\"KHEDA\",387640:\"KHEDA\",387330:\"KHEDA\",387210:\"KHEDA\",387710:\"KHEDA\",387540:\"KHEDA\",387550:\"KHEDA\",388610:\"KHEDA\",388625:\"KHEDA\",387110:\"KHEDA\",388440:\"KHEDA\",388480:\"KHEDA\",387360:\"KHEDA\",388460:\"KHEDA\",388150:\"ANAND\",388590:\"KHEDA\",388170:\"KHEDA\",387325:\"KHEDA\",388630:\"KHEDA\",387520:\"KHEDA\",387411:\"KHEDA\",387340:\"KHEDA\",387220:\"KHEDA\",388465:\"KHEDA\",387003:\"KHEDA\",387230:\"KHEDA\",387375:\"KHEDA\",388470:\"KHEDA\",396403:\"NAVSARI\",396406:\"NAVSARI\",396040:\"NAVSARI\",396463:\"NAVSARI\",396060:\"NAVSARI\",396360:\"NAVSARI\",396409:\"NAVSARI\",396521:\"NAVSARI\",396427:\"NAVSARI\",396310:\"NAVSARI\",396580:\"NAVSARI\",396540:\"NAVSARI\",396469:\"NAVSARI\",396325:\"NAVSARI\",396475:\"NAVSARI\",396433:\"NAVSARI\",396415:\"NAVSARI\",396439:\"NAVSARI\",396590:\"NAVSARI\",396436:\"NAVSARI\",396110:\"NAVSARI\",396321:\"NAVSARI\",396440:\"NAVSARI\",396560:\"NAVSARI\",396412:\"NAVSARI\",396472:\"NAVSARI\",396570:\"NAVSARI\",396530:\"NAVSARI\",396450:\"NAVSARI\",396460:\"NAVSARI\",396466:\"NAVSARI\",396380:\"NAVSARI\",396430:\"NAVSARI\",396350:\"NAVSARI\",396418:\"NAVSARI\",396421:\"NAVSARI\",396445:\"NAVSARI\",396424:\"NAVSARI\",396370:\"NAVSARI\",389130:\"DAHOD\",389152:\"DAHOD\",389341:\"PANCH MAHALS\",389190:\"DAHOD\",389140:\"DAHOD\",389175:\"DAHOD\",388270:\"MAHISAGAR\",389115:\"PANCH MAHALS\",389382:\"DAHOD\",389154:\"DAHOD\",389310:\"PANCH MAHALS\",389180:\"DAHOD\",389380:\"DAHOD\",389002:\"PANCH MAHALS\",389240:\"DAHOD\",389210:\"PANCH MAHALS\",389110:\"PANCH MAHALS\",389350:\"PANCH MAHALS\",389232:\"MAHISAGAR\",389260:\"MAHISAGAR\",389170:\"DAHOD\",389120:\"PANCH MAHALS\",389365:\"PANCH MAHALS\",389230:\"MAHISAGAR\",389370:\"PANCH MAHALS\",389172:\"DAHOD\",389320:\"PANCH MAHALS\",389340:\"PANCH MAHALS\",389360:\"PANCH MAHALS\",389160:\"DAHOD\",389155:\"DAHOD\",389330:\"PANCH MAHALS\",389250:\"MAHISAGAR\",389151:\"DAHOD\",388713:\"PANCH MAHALS\",389220:\"MAHISAGAR\",389146:\"DAHOD\",389390:\"PANCH MAHALS\",389001:\"PANCH MAHALS\",388710:\"PANCH MAHALS\",389265:\"MAHISAGAR\",389235:\"MAHISAGAR\",395008:\"SURAT\",395007:\"SURAT\",395009:\"SURAT\",394516:\"SURAT\",395017:\"SURAT\",394430:\"SURAT\",395005:\"SURAT\",394107:\"SURAT\",394110:\"SURAT\",394410:\"SURAT\",394405:\"SURAT\",394540:\"SURAT\",395001:\"SURAT\",394130:\"SURAT\",394440:\"SURAT\",394210:\"SURAT\",395003:\"SURAT\",394530:\"SURAT\",394125:\"SURAT\",394510:\"SURAT\",394517:\"SURAT\",395023:\"SURAT\",394421:\"SURAT\",394550:\"SURAT\",394445:\"SURAT\",395010:\"SURAT\",394230:\"SURAT\",394112:\"SURAT\",395004:\"SURAT\",395012:\"SURAT\",394270:\"SURAT\",394235:\"SURAT\",394120:\"SURAT\",395002:\"SURAT\",394111:\"SURAT\",394520:\"SURAT\",395013:\"SURAT\",394515:\"SURAT\",394101:\"SURAT\",394518:\"SURAT\",394221:\"SURAT\",395011:\"SURAT\",394541:\"SURAT\",394105:\"SURAT\",395006:\"SURAT\",391250:\"VADODARA\",391121:\"VADODARA\",390019:\"VADODARA\",391145:\"VADODARA\",391150:\"VADODARA\",391135:\"VADODARA\",390022:\"VADODARA\",391170:\"Chhotaudepur\",391175:\"VADODARA\",391165:\"VADODARA\",391115:\"VADODARA\",391120:\"VADODARA\",391110:\"VADODARA\",391107:\"VADODARA\",391160:\"VADODARA\",391168:\"VADODARA\",391140:\"VADODARA\",391125:\"VADODARA\",390001:\"VADODARA\",391105:\"VADODARA\",391152:\"VADODARA\",391130:\"VADODARA\",391156:\"VADODARA\",390009:\"VADODARA\",390004:\"VADODARA\",390014:\"VADODARA\",390006:\"VADODARA\",391155:\"VADODARA\",390018:\"VADODARA\",390013:\"VADODARA\",390011:\"VADODARA\",390010:\"VADODARA\",390025:\"VADODARA\",390017:\"VADODARA\",391421:\"VADODARA\",391510:\"VADODARA\",391740:\"VADODARA\",390020:\"VADODARA\",390007:\"VADODARA\",391760:\"VADODARA\",391445:\"VADODARA\",391101:\"VADODARA\",391761:\"VADODARA\",391240:\"VADODARA\",391330:\"VADODARA\",391775:\"VADODARA\",391745:\"VADODARA\",391244:\"VADODARA\",390012:\"VADODARA\",391310:\"VADODARA\",391243:\"VADODARA\",391780:\"VADODARA\",391410:\"VADODARA\",391440:\"VADODARA\",390003:\"VADODARA\",391530:\"VADODARA\",390024:\"VADODARA\",391210:\"VADODARA\",391430:\"VADODARA\",391450:\"VADODARA\",391774:\"VADODARA\",391346:\"VADODARA\",391340:\"VADODARA\",390008:\"VADODARA\",391750:\"VADODARA\",390002:\"VADODARA\",391520:\"VADODARA\",391770:\"VADODARA\",390016:\"VADODARA\",391320:\"VADODARA\",391220:\"VADODARA\",392310:\"VADODARA\",391776:\"VADODARA\",391350:\"VADODARA\",391345:\"VADODARA\",390023:\"VADODARA\",390021:\"VADODARA\",396105:\"VALSAD\",396067:\"VALSAD\",396051:\"VALSAD\",396145:\"VALSAD\",396191:\"VALSAD\",396230:\"DADRA  NAGAR HAVELI\",396126:\"VALSAD\",396125:\"VALSAD\",396155:\"VALSAD\",396055:\"VALSAD\",396235:\"DADRA  NAGAR HAVELI\",396065:\"VALSAD\",396050:\"VALSAD\",396007:\"VALSAD\",396045:\"VALSAD\",396020:\"VALSAD\",396185:\"VALSAD\",396030:\"VALSAD\",396385:\"VALSAD\",396165:\"VALSAD\",396210:\"DAMAN\",396195:\"VALSAD\",396240:\"DADRA  NAGAR HAVELI\",396215:\"DAMAN\",396193:\"DADRA  NAGAR HAVELI\",396170:\"VALSAD\",396035:\"VALSAD\",396375:\"VALSAD\",396130:\"VALSAD\",396220:\"DAMAN\",396140:\"VALSAD\",396120:\"VALSAD\",396115:\"VALSAD\",396135:\"VALSAD\",396150:\"VALSAD\",396180:\"VALSAD\",396171:\"VALSAD\",396002:\"VALSAD\",396001:\"VALSAD\",133205:\"AMBALA\",134203:\"AMBALA\",135133:\"YAMUNANAGAR\",133202:\"AMBALA\",135101:\"YAMUNANAGAR\",134003:\"AMBALA\",133001:\"AMBALA\",134105:\"PANCHKULA\",135002:\"YAMUNANAGAR\",133206:\"YAMUNANAGAR\",133301:\"PANCHKULA\",133005:\"AMBALA\",135021:\"YAMUNANAGAR\",134007:\"Ambala\",135103:\"YAMUNANAGAR\",135003:\"YAMUNANAGAR\",134008:\"AMBALA\",133004:\"AMBALA\",133201:\"AMBALA\",134118:\"PANCHKULA\",135102:\"YAMUNANAGAR\",134102:\"PANCHKULA\",134202:\"AMBALA\",133103:\"YAMUNANAGAR\",134201:\"AMBALA\",135001:\"YAMUNANAGAR\",134205:\"PANCHKULA\",135106:\"YAMUNANAGAR\",133101:\"AMBALA\",134104:\"PANCHKULA\",134107:\"PANCHKULA\",133102:\"AMBALA\",133010:\"AMBALA\",134109:\"PANCHKULA\",133203:\"AMBALA\",134108:\"PANCHKULA\",134204:\"AMBALA\",134101:\"PANCHKULA\",133204:\"YAMUNANAGAR\",134103:\"PANCHKULA\",133006:\"AMBALA\",134113:\"PANCHKULA\",134005:\"AMBALA\",135004:\"YAMUNANAGAR\",133302:\"PANCHKULA\",133104:\"AMBALA\",133207:\"AMBALA\",133008:\"Ambala\",134114:\"PANCHKULA\",134112:\"PANCHKULA\",134117:\"PANCHKULA\",134116:\"PANCHKULA\",127307:\"BHIWANI\",127309:\"BHIWANI\",127308:\"BHIWANI\",127030:\"BHIWANI\",127026:\"BHIWANI\",127025:\"BHIWANI\",127310:\"BHIWANI\",127031:\"BHIWANI\",127312:\"BHIWANI\",127111:\"BHIWANI\",127032:\"BHIWANI\",127114:\"BHIWANI\",127201:\"BHIWANI\",127045:\"BHIWANI\",127028:\"BHIWANI\",127041:\"BHIWANI\",127043:\"BHIWANI\",127021:\"BHIWANI\",127035:\"BHIWANI\",127046:\"BHIWANI\",127029:\"BHIWANI\",127022:\"BHIWANI\",127027:\"BHIWANI\",127040:\"BHIWANI\",127306:\"BHIWANI\",127311:\"BHIWANI\",127042:\"BHIWANI\",121102:\"FARIDABAD\",121106:\"FARIDABAD\",121101:\"FARIDABAD\",121003:\"FARIDABAD\",121004:\"FARIDABAD\",121105:\"FARIDABAD\",121107:\"FARIDABAD\",121002:\"FARIDABAD\",121103:\"FARIDABAD\",121007:\"FARIDABAD\",121001:\"FARIDABAD\",121005:\"FARIDABAD\",121008:\"FARIDABAD\",121006:\"FARIDABAD\",121014:\"FARIDABAD\",121010:\"FARIDABAD\",121013:\"FARIDABAD\",121012:\"FARIDABAD\",121015:\"FARIDABAD\",121009:\"FARIDABAD\",122104:\"MEWAT\",123102:\"REWARI\",122005:\"GURGAON\",123023:\"MAHENDRAGARH\",123106:\"REWARI\",122107:\"MEWAT\",123029:\"MAHENDRAGARH\",122001:\"GURGAON\",123501:\"REWARI\",123035:\"REWARI\",123001:\"MAHENDRAGARH\",123401:\"REWARI\",123021:\"MAHENDRAGARH\",122508:\"MEWAT\",123412:\"REWARI\",122101:\"GURGAON\",122105:\"MEWAT\",123027:\"MAHENDRAGARH\",123028:\"MAHENDRAGARH\",123411:\"REWARI\",123103:\"REWARI\",123024:\"MAHENDRAGARH\",122006:\"GURGAON\",123101:\"REWARI\",122503:\"GURGAON\",123034:\"MAHENDRAGARH\",123303:\"REWARI\",122108:\"MEWAT\",123302:\"REWARI\",122505:\"GURGAON\",122103:\"GURGAON\",122102:\"GURGAON\",122413:\"GURGAON\",122017:\"GURGAON\",123031:\"MAHENDRAGARH\",122502:\"GURGAON\",122098:\"GURGAON\",122008:\"GURGAON\",122010:\"GURGAON\",122002:\"GURGAON\",122506:\"GURGAON\",122009:\"GURGAON\",122504:\"GURGAON\",122003:\"GURGAON\",122011:\"GURGAON\",122018:\"GURGAON\",123301:\"REWARI\",122052:\"GURGAON\",122414:\"FATEHABAD\",123110:\"REWARI\",122016:\"GURGAON\",122007:\"GURGAON\",122051:\"GURGAON\",122004:\"GURGAON\",122015:\"GURGAON\",122012:\"GURGAON\",125104:\"SIRSA\",125047:\"HISAR\",125051:\"FATEHABAD\",125050:\"FATEHABAD\",125055:\"SIRSA\",125106:\"FATEHABAD\",125078:\"SIRSA\",125120:\"FATEHABAD\",125102:\"SIRSA\",125033:\"HISAR\",125004:\"HISAR\",125101:\"SIRSA\",125052:\"HISAR\",125007:\"HISAR\",125042:\"HISAR\",125121:\"HISAR\",125048:\"FATEHABAD\",125005:\"HISAR\",125054:\"SIRSA\",125075:\"SIRSA\",125060:\"SIRSA\",125111:\"FATEHABAD\",125112:\"HISAR\",125053:\"HISAR\",125103:\"SIRSA\",125044:\"HISAR\",125039:\"HISAR\",125038:\"HISAR\",125113:\"HISAR\",125011:\"HISAR\",125077:\"SIRSA\",125110:\"SIRSA\",125201:\"SIRSA\",125006:\"HISAR\",125049:\"HISAR\",125058:\"SIRSA\",125076:\"SIRSA\",125001:\"HISAR\",125133:\"FATEHABAD\",125056:\"SIRSA\",125037:\"HISAR\",132046:\"KARNAL\",132024:\"KARNAL\",132113:\"PANIPAT\",132107:\"PANIPAT\",126102:\"JIND\",132157:\"KARNAL\",126111:\"JIND\",126116:\"JIND\",126112:\"JIND\",132114:\"KARNAL\",132039:\"KARNAL\",132117:\"KARNAL\",126113:\"JIND\",132105:\"PANIPAT\",132122:\"PANIPAT\",132104:\"PANIPAT\",132140:\"PANIPAT\",126152:\"JIND\",126125:\"JIND\",132037:\"KARNAL\",132040:\"KARNAL\",126110:\"JIND\",132036:\"KARNAL\",132023:\"KARNAL\",126115:\"JIND\",126114:\"KARNAL\",132101:\"PANIPAT\",132116:\"KARNAL\",132102:\"PANIPAT\",132054:\"KARNAL\",132041:\"KARNAL\",132106:\"PANIPAT\",126101:\"JIND\",132001:\"KARNAL\",132108:\"PANIPAT\",132145:\"PANIPAT\",132115:\"PANIPAT\",132022:\"KARNAL\",132103:\"PANIPAT\",136035:\"KURUKSHETRA\",136021:\"KAITHAL\",136130:\"KURUKSHETRA\",136136:\"KURUKSHETRA\",136038:\"KURUKSHETRA\",136034:\"KURUKSHETRA\",136156:\"KURUKSHETRA\",136117:\"KAITHAL\",136119:\"KURUKSHETRA\",136043:\"KAITHAL\",136132:\"KURUKSHETRA\",136128:\"KURUKSHETRA\",136027:\"KURUKSHETRA\",136026:\"KURUKSHETRA\",136030:\"KURUKSHETRA\",136044:\"KAITHAL\",136131:\"KURUKSHETRA\",136118:\"KURUKSHETRA\",136135:\"KURUKSHETRA\",136129:\"KURUKSHETRA\",136020:\"KURUKSHETRA\",136042:\"KAITHAL\",136033:\"KAITHAL\",136134:\"Kurukshetra\",124106:\"JHAJJAR\",124108:\"ROHTAK\",124111:\"ROHTAK\",124146:\"JHAJJAR\",124411:\"ROHTAK\",124406:\"ROHTAK\",124505:\"JHAJJAR\",124021:\"ROHTAK\",124501:\"ROHTAK\",124105:\"JHAJJAR\",124201:\"JHAJJAR\",124507:\"JHAJJAR\",124508:\"JHAJJAR\",124022:\"ROHTAK\",124142:\"JHAJJAR\",124514:\"ROHTAK\",124104:\"JHAJJAR\",124010:\"ROHTAK\",124401:\"ROHTAK\",124107:\"JHAJJAR\",124303:\"ROHTAK\",124112:\"ROHTAK\",124109:\"JHAJJAR\",124102:\"JHAJJAR\",124001:\"ROHTAK\",124504:\"JHAJJAR\",124412:\"ROHTAK\",124103:\"JHAJJAR\",124202:\"JHAJJAR\",124404:\"JHAJJAR\",124113:\"ROHTAK\",124506:\"JHAJJAR\",124513:\"ROHTAK\",124141:\"JHAJJAR\",131101:\"SONIPAT\",131301:\"SONIPAT\",131103:\"SONIPAT\",131409:\"SONIPAT\",131027:\"SONIPAT\",131023:\"SONIPAT\",131001:\"SONIPAT\",131403:\"SONIPAT\",131021:\"SONIPAT\",131102:\"SONIPAT\",131304:\"SONIPAT\",131402:\"SONIPAT\",131039:\"SONIPAT\",131022:\"SONIPAT\",131302:\"SONIPAT\",131024:\"SONIPAT\",131306:\"SONIPAT\",131408:\"SONIPAT\",131305:\"SONIPAT\",131028:\"SONIPAT\",131029:\"SONIPAT\",131030:\"SONIPAT\",176316:\"CHAMBA\",176312:\"CHAMBA\",176313:\"CHAMBA\",176314:\"CHAMBA\",176324:\"CHAMBA\",176303:\"CHAMBA\",176325:\"CHAMBA\",176326:\"CHAMBA\",176311:\"CHAMBA\",176301:\"CHAMBA\",176321:\"CHAMBA\",176302:\"CHAMBA\",176306:\"CHAMBA\",176318:\"CHAMBA\",176308:\"CHAMBA\",176320:\"CHAMBA\",176315:\"CHAMBA\",176207:\"CHAMBA\",176323:\"CHAMBA\",176310:\"CHAMBA\",176309:\"CHAMBA\",176319:\"CHAMBA\",176305:\"CHAMBA\",176304:\"CHAMBA\",176317:\"CHAMBA\",176036:\"KANGRA\",176054:\"KANGRA\",177034:\"KANGRA\",176031:\"KANGRA\",176027:\"KANGRA\",176501:\"KANGRA\",176209:\"KANGRA\",177103:\"KANGRA\",176208:\"KANGRA\",176047:\"KANGRA\",176037:\"KANGRA\",176029:\"KANGRA\",176028:\"KANGRA\",177114:\"KANGRA\",177104:\"KANGRA\",176051:\"KANGRA\",176502:\"KANGRA\",176055:\"KANGRA\",176025:\"KANGRA\",176022:\"KANGRA\",177117:\"KANGRA\",176214:\"KANGRA\",177112:\"KANGRA\",177105:\"KANGRA\",177111:\"KANGRA\",176023:\"KANGRA\",176021:\"KANGRA\",177043:\"KANGRA\",176026:\"KANGRA\",176033:\"KANGRA\",176001:\"KANGRA\",177113:\"KANGRA\",176056:\"KANGRA\",177106:\"KANGRA\",176038:\"KANGRA\",177101:\"KANGRA\",176030:\"KANGRA\",176053:\"KANGRA\",177108:\"KANGRA\",176066:\"KANGRA\",177107:\"KANGRA\",176032:\"KANGRA\",176002:\"KANGRA\",176058:\"KANGRA\",176082:\"KANGRA\",176103:\"KANGRA\",176217:\"KANGRA\",176102:\"KANGRA\",176059:\"KANGRA\",176094:\"KANGRA\",176083:\"KANGRA\",176204:\"KANGRA\",176062:\"KANGRA\",176202:\"KANGRA\",176107:\"KANGRA\",176081:\"KANGRA\",176201:\"KANGRA\",176225:\"KANGRA\",176125:\"KANGRA\",176205:\"KANGRA\",176086:\"KANGRA\",176073:\"KANGRA\",176098:\"KANGRA\",176403:\"KANGRA\",176064:\"KANGRA\",176084:\"KANGRA\",176061:\"KANGRA\",176097:\"KANGRA\",176101:\"KANGRA\",176200:\"KANGRA\",176219:\"KANGRA\",176206:\"KANGRA\",176401:\"KANGRA\",176210:\"KANGRA\",176076:\"KANGRA\",176088:\"KANGRA\",176402:\"KANGRA\",176087:\"KANGRA\",176071:\"KANGRA\",176077:\"KANGRA\",176092:\"KANGRA\",176128:\"KANGRA\",176203:\"KANGRA\",176052:\"KANGRA\",176216:\"KANGRA\",176060:\"KANGRA\",176057:\"KANGRA\",176067:\"KANGRA\",176215:\"KANGRA\",176096:\"KANGRA\",176075:\"KANGRA\",176065:\"KANGRA\",176085:\"KANGRA\",176211:\"KANGRA\",176115:\"KANGRA\",176091:\"KANGRA\",176095:\"KANGRA\",176213:\"KANGRA\",176218:\"KANGRA\",176093:\"KANGRA\",176089:\"KANGRA\",176063:\"KANGRA\",176041:\"HAMIRPURHP\",177501:\"HAMIRPURHP\",174021:\"BILASPUR HP\",177024:\"HAMIRPURHP\",177020:\"HAMIRPURHP\",174024:\"BILASPUR HP\",177601:\"HAMIRPURHP\",174029:\"BILASPUR HP\",176048:\"HAMIRPURHP\",177040:\"HAMIRPURHP\",177029:\"HAMIRPURHP\",177021:\"HAMIRPURHP\",177026:\"HAMIRPURHP\",177118:\"HAMIRPURHP\",174309:\"HAMIRPURHP\",177028:\"HAMIRPURHP\",177048:\"HAMIRPURHP\",174031:\"BILASPUR HP\",176040:\"HAMIRPURHP\",174003:\"BILASPUR HP\",174305:\"HAMIRPURHP\",174001:\"BILASPUR HP\",177022:\"HAMIRPURHP\",174304:\"HAMIRPURHP\",177044:\"HAMIRPURHP\",176049:\"HAMIRPURHP\",177023:\"HAMIRPURHP\",177001:\"HAMIRPURHP\",174013:\"BILASPUR HP\",174027:\"BILASPUR HP\",176042:\"HAMIRPURHP\",177301:\"HAMIRPURHP\",174002:\"BILASPUR HP\",174312:\"HAMIRPURHP\",177042:\"HAMIRPURHP\",174012:\"BILASPUR HP\",177041:\"HAMIRPURHP\",174015:\"BILASPUR HP\",177033:\"HAMIRPURHP\",174201:\"BILASPUR HP\",176108:\"HAMIRPURHP\",174035:\"BILASPUR HP\",174004:\"BILASPUR HP\",174028:\"BILASPUR HP\",177038:\"HAMIRPURHP\",176045:\"HAMIRPURHP\",174026:\"BILASPUR HP\",177119:\"HAMIRPURHP\",176110:\"HAMIRPURHP\",177007:\"HAMIRPURHP\",176039:\"HAMIRPURHP\",176111:\"HAMIRPURHP\",174505:\"HAMIRPURHP\",174023:\"BILASPUR HP\",174032:\"BILASPUR HP\",174034:\"BILASPUR HP\",174030:\"BILASPUR HP\",174017:\"BILASPUR HP\",177401:\"HAMIRPURHP\",177025:\"HAMIRPURHP\",174405:\"HAMIRPURHP\",177005:\"HAMIRPURHP\",174036:\"BILASPUR HP\",174011:\"BILASPUR HP\",174310:\"BILASPUR HP\",176109:\"HAMIRPURHP\",176043:\"HAMIRPURHP\",174033:\"BILASPUR HP\",177027:\"HAMIRPURHP\",174311:\"HAMIRPURHP\",176044:\"HAMIRPURHP\",177006:\"HAMIRPURHP\",177045:\"HAMIRPURHP\",174005:\"BILASPUR HP\",175032:\"MANDI\",175101:\"KULLU\",175001:\"MANDI\",175009:\"MANDI\",175123:\"KULLU\",175104:\"KULLU\",175121:\"MANDI\",175138:\"KULLU\",175034:\"MANDI\",175045:\"MANDI\",175035:\"MANDI\",175027:\"MANDI\",175103:\"KULLU\",175033:\"MANDI\",175134:\"KULLU\",175125:\"KULLU\",175011:\"MANDI\",175038:\"MANDI\",175012:\"MANDI\",175015:\"MANDI\",175016:\"MANDI\",175106:\"KULLU\",175010:\"MANDI\",175052:\"MANDI\",175008:\"MANDI\",175124:\"MANDI\",175128:\"MANDI\",175029:\"MANDI\",175129:\"KULLU\",175013:\"MANDI\",175024:\"MANDI\",175030:\"MANDI\",175040:\"MANDI\",175105:\"KULLU\",175021:\"MANDI\",175036:\"MANDI\",175042:\"MANDI\",175005:\"MANDI\",175017:\"MANDI\",175006:\"MANDI\",175049:\"MANDI\",175102:\"KULLU\",175004:\"MANDI\",175003:\"MANDI\",175002:\"MANDI\",175047:\"MANDI\",175050:\"MANDI\",175131:\"KULLU\",175031:\"MANDI\",175028:\"MANDI\",175018:\"MANDI\",175048:\"MANDI\",175142:\"LAHUL  SPITI\",176090:\"MANDI\",175037:\"MANDI\",175025:\"MANDI\",175014:\"MANDI\",175141:\"KULLU\",175132:\"MANDI\",175023:\"MANDI\",175026:\"MANDI\",175140:\"LAHUL  SPITI\",175007:\"MANDI\",175136:\"KULLU\",175039:\"MANDI\",175143:\"KULLU\",175139:\"LAHUL  SPITI\",175133:\"LAHUL  SPITI\",175075:\"MANDI\",175019:\"MANDI\",175046:\"MANDI\",175126:\"KULLU\",175130:\"KULLU\",175051:\"MANDI\",172116:\"KINNAUR\",172026:\"KULLU\",172002:\"KULLU\",172109:\"KINNAUR\",172022:\"SHIMLA\",172001:\"SHIMLA\",172027:\"SHIMLA\",172107:\"KINNAUR\",172115:\"KINNAUR\",172031:\"SHIMLA\",172106:\"KINNAUR\",172118:\"KINNAUR\",172024:\"SHIMLA\",172030:\"SHIMLA\",172034:\"SHIMLA\",172105:\"KINNAUR\",172104:\"KINNAUR\",172111:\"KINNAUR\",172101:\"KINNAUR\",172032:\"SHIMLA\",172025:\"KULLU\",172021:\"SHIMLA\",172028:\"SHIMLA\",172114:\"LAHUL  SPITI\",172113:\"LAHUL  SPITI\",172102:\"SHIMLA\",172108:\"KINNAUR\",172033:\"KULLU\",172201:\"SHIMLA\",172023:\"KULLU\",172110:\"KINNAUR\",172117:\"LAHUL  SPITI\",172112:\"KINNAUR\",172029:\"SHIMLA\",172103:\"KINNAUR\",171003:\"SHIMLA\",171004:\"SHIMLA\",171219:\"SHIMLA\",171206:\"SHIMLA\",171223:\"SHIMLA\",171207:\"SHIMLA\",171011:\"SHIMLA\",171220:\"SHIMLA\",171202:\"SHIMLA\",171225:\"SHIMLA\",171226:\"SHIMLA\",171007:\"SHIMLA\",171015:\"SHIMLA\",171211:\"SHIMLA\",171201:\"SHIMLA\",171018:\"SHIMLA\",171013:\"SHIMLA\",171213:\"SHIMLA\",171217:\"SHIMLA\",171212:\"SHIMLA\",171210:\"SHIMLA\",171216:\"SHIMLA\",171001:\"SHIMLA\",171301:\"SHIMLA\",171005:\"SHIMLA\",171103:\"SHIMLA\",171209:\"SHIMLA\",171012:\"SHIMLA\",171222:\"SHIMLA\",171208:\"SHIMLA\",171205:\"SHIMLA\",171204:\"SHIMLA\",171214:\"SHIMLA\",171014:\"SHIMLA\",171203:\"SHIMLA\",171019:\"SHIMLA\",171221:\"SHIMLA\",171002:\"SHIMLA\",171218:\"SHIMLA\",171008:\"SHIMLA\",171006:\"SHIMLA\",171009:\"SHIMLA\",171215:\"SHIMLA\",171224:\"SHIMLA\",171010:\"SHIMLA\",173023:\"SIRMAUR\",173234:\"SOLAN\",173208:\"SOLAN\",173206:\"SOLAN\",173205:\"SOLAN\",173218:\"SOLAN\",173233:\"SOLAN\",173032:\"SIRMAUR\",173024:\"SIRMAUR\",173001:\"SIRMAUR\",174102:\"SOLAN\",173029:\"SIRMAUR\",173221:\"SOLAN\",173027:\"SIRMAUR\",173025:\"SIRMAUR\",173211:\"SOLAN\",174103:\"SOLAN\",173101:\"SIRMAUR\",174101:\"SOLAN\",173213:\"SOLAN\",171102:\"SOLAN\",173207:\"SOLAN\",173235:\"SOLAN\",173022:\"SIRMAUR\",173229:\"SOLAN\",173104:\"SIRMAUR\",173030:\"SIRMAUR\",173217:\"SOLAN\",173210:\"SOLAN\",173212:\"SOLAN\",173209:\"SOLAN\",173031:\"SIRMAUR\",173223:\"SOLAN\",173201:\"SOLAN\",173225:\"SOLAN\",173215:\"SOLAN\",173204:\"SOLAN\",173021:\"SIRMAUR\",173236:\"SOLAN\",173026:\"SIRMAUR\",173222:\"SOLAN\",173220:\"SOLAN\",173230:\"SOLAN\",173214:\"SOLAN\",173202:\"SOLAN\",174301:\"UNA\",177203:\"UNA\",174314:\"UNA\",177204:\"UNA\",177205:\"UNA\",174307:\"UNA\",177109:\"UNA\",174306:\"UNA\",177209:\"UNA\",177201:\"UNA\",174302:\"UNA\",174303:\"UNA\",174321:\"UNA\",177220:\"UNA\",174507:\"UNA\",176601:\"UNA\",174317:\"UNA\",177213:\"UNA\",177110:\"UNA\",174315:\"UNA\",174316:\"UNA\",177039:\"UNA\",174308:\"UNA\",177210:\"UNA\",177031:\"UNA\",177211:\"UNA\",177212:\"UNA\",174319:\"UNA\",177208:\"UNA\",177207:\"UNA\",177219:\"UNA\",174503:\"UNA\",177206:\"UNA\",177202:\"UNA\",174320:\"UNA\",193503:\"Bandipur\",193502:\"BANDIPUR\",193224:\"Kupwara\",193505:\"BARAMULLA\",193501:\"BANDIPUR\",193121:\"Baramulla\",193504:\"BANDIPUR\",193303:\"BARAMULLA\",193108:\"Baramulla\",193301:\"Baramulla\",193123:\"Baramulla\",193101:\"Baramulla\",193302:\"KUPWARA\",193222:\"Kupwara\",193122:\"Baramulla\",193201:\"Baramulla\",193225:\"Kupwara\",193223:\"BARAMULLA\",193109:\"BARAMULLA\",193103:\"Baramulla\",193221:\"Kupwara\",181141:\"SAMBA\",181131:\"JAMMU\",181121:\"JAMMU\",181102:\"JAMMU\",184151:\"JAMMU\",180017:\"JAMMU\",180002:\"JAMMU\",181201:\"JAMMU\",184144:\"KATHUA\",184205:\"KATHUA\",184148:\"KATHUA\",184204:\"KATHUA\",181224:\"JAMMU\",181202:\"JAMMU\",180001:\"JAMMU\",181132:\"JAMMU\",184206:\"KATHUA\",184202:\"KATHUA\",184201:\"KATHUA\",181123:\"JAMMU\",181122:\"JAMMU\",181204:\"JAMMU\",181133:\"JAMMU\",184121:\"SAMBA\",184143:\"KATHUA\",184203:\"KATHUA\",184152:\"KATHUA\",181206:\"JAMMU\",181152:\"JAMMU\",181101:\"JAMMU\",181124:\"JAMMU\",181203:\"JAMMU\",184120:\"SAMBA\",184104:\"KATHUA\",180015:\"JAMMU\",184145:\"KATHUA\",180011:\"JAMMU\",185154:\"JAMMU\",181111:\"JAMMU\",184102:\"KATHUA\",180004:\"JAMMU\",180010:\"JAMMU\",184210:\"KATHUA\",184142:\"KATHUA\",184141:\"KATHUA\",181207:\"JAMMU\",181143:\"JAMMU\",180003:\"JAMMU\",181221:\"JAMMU\",180007:\"JAMMU\",180005:\"JAMMU\",184101:\"KATHUA\",181145:\"JAMMU\",180016:\"JAMMU\",180012:\"JAMMU\",181205:\"JAMMU\",180006:\"JAMMU\",180013:\"JAMMU\",180019:\"JAMMU\",180009:\"JAMMU\",180020:\"JAMMU\",180018:\"JAMMU\",185151:\"RAJAURI\",185101:\"RAJAURI\",185202:\"RAJAURI\",185102:\"POONCH\",185211:\"POONCH\",185212:\"RAJAURI\",185234:\"RAJAURI\",185132:\"RAJAURI\",185121:\"POONCH\",185233:\"RAJAURI\",185152:\"RAJAURI\",185153:\"RAJAURI\",185131:\"RAJAURI\",185156:\"RAJAURI\",185155:\"RAJAURI\",185201:\"RAJAURI\",185135:\"RAJAURI\",185133:\"RAJAURI\",191112:\"BUDGAM\",190003:\"SRINAGAR\",192201:\"ANANTHNAG\",192305:\"PULWAMA\",192302:\"SRINAGAR\",192202:\"ANANTHNAG\",192233:\"ANANTHNAG\",192231:\"KULGAM\",191202:\"GANDERBAL\",192125:\"ANANTHNAG\",192122:\"ANANTHNAG\",192101:\"ANANTHNAG\",190011:\"SRINAGAR\",191111:\"BUDGAM\",192123:\"PULWAMA\",193401:\"BUDGAM\",192124:\"ANANTHNAG\",192129:\"ANANTHNAG\",193411:\"SRINAGAR\",192232:\"ANANTHNAG\",193402:\"BARAMULLA\",190020:\"SRINAGAR\",190001:\"SRINAGAR\",190019:\"SRINAGAR\",191101:\"SRINAGAR\",192301:\"PULWAMA\",190017:\"SRINAGAR\",190006:\"SRINAGAR\",192212:\"ANANTHNAG\",190010:\"SRINAGAR\",190004:\"SRINAGAR\",192401:\"ANANTHNAG\",193404:\"BARAMULLA\",190018:\"SRINAGAR\",191201:\"GANDERBAL\",191113:\"BUDGAM\",191121:\"SRINAGAR\",192221:\"KULGAM\",192306:\"PULWAMA\",190009:\"SRINAGAR\",192210:\"ANANTHNAG\",192211:\"ANANTHNAG\",190002:\"SRINAGAR\",193403:\"BARAMULLA\",190021:\"BUDGAM\",191131:\"GANDERBAL\",192303:\"SHOPIAN\",192121:\"SRINAGAR\",190014:\"SRINAGAR\",190008:\"SRINAGAR\",192304:\"PULWAMA\",190015:\"SRINAGAR\",191103:\"PULWAMA\",190023:\"SRINAGAR\",192126:\"ANANTHNAG\",193306:\"ANANTHNAG\",191132:\"SRINAGAR\",190005:\"SRINAGAR\",190007:\"BUDGAM\",190025:\"SRINAGAR\",191102:\"PULWAMA\",190012:\"SRINAGAR\",190024:\"SRINAGAR\",182301:\"REASI\",182205:\"DODA\",182145:\"RAMBAN\",185203:\"REASI\",182122:\"UDHAMPUR\",182315:\"REASI\",182313:\"REASI\",182143:\"RAMBAN\",182204:\"DODA\",182311:\"REASI\",182141:\"UDHAMPUR\",182126:\"UDHAMPUR\",182202:\"DODA\",182101:\"UDHAMPUR\",182161:\"UDHAMPUR\",182146:\"RAMBAN\",182203:\"DODA\",182124:\"UDHAMPUR\",182121:\"UDHAMPUR\",182128:\"UDHAMPUR\",182127:\"UDHAMPUR\",182222:\"DODA\",182201:\"DODA\",182221:\"DODA\",182148:\"RAMBAN\",182144:\"RAMBAN\",182125:\"REASI\",182147:\"DODA\",182206:\"DODA\",182312:\"REASI\",182320:\"REASI\",182142:\"UDHAMPUR\",182104:\"UDHAMPUR\",194103:\"Kargil\",194107:\"Leh\",194105:\"Kargil\",194301:\"Kargil\",194102:\"Kargil\",194106:\"Leh\",194109:\"Kargil\",194401:\"Leh\",194302:\"Kargil\",194201:\"Leh\",194104:\"Leh\",194101:\"Leh\",194202:\"Leh\",194303:\"Kargil\",194404:\"Leh\",194402:\"Leh\",828124:\"DHANBAD\",827013:\"BOKARO\",828201:\"DHANBAD\",828134:\"BOKARO\",828302:\"BOKARO\",828111:\"DHANBAD\",828113:\"DHANBAD\",829301:\"BOKARO\",827302:\"BOKARO\",826006:\"DHANBAD\",828110:\"DHANBAD\",828306:\"DHANBAD\",828109:\"DHANBAD\",827009:\"BOKARO\",827014:\"BOKARO\",828116:\"DHANBAD\",828101:\"DHANBAD\",828205:\"DHANBAD\",826010:\"Dhanbad\",828106:\"DHANBAD\",826005:\"DHANBAD\",828204:\"DHANBAD\",828121:\"DHANBAD\",828301:\"DHANBAD\",828103:\"DHANBAD\",828401:\"DHANBAD\",828303:\"BOKARO\",828133:\"DHANBAD\",828104:\"DHANBAD\",827001:\"BOKARO\",828130:\"DHANBAD\",828402:\"DHANBAD\",827010:\"BOKARO\",828117:\"DHANBAD\",826007:\"DHANBAD\",828202:\"DHANBAD\",828142:\"DHANBAD\",828135:\"DHANBAD\",827015:\"BOKARO\",826001:\"DHANBAD\",826004:\"DHANBAD\",828107:\"DHANBAD\",828108:\"DHANBAD\",829115:\"BOKARO\",826003:\"DHANBAD\",828112:\"DHANBAD\",828125:\"BOKARO\",818142:\"DHANBAD\",828309:\"DHANBAD\",828129:\"DHANBAD\",828307:\"BOKARO\",828114:\"DHANBAD\",826008:\"DHANBAD\",828115:\"DHANBAD\",826009:\"DHANBAD\",828131:\"DHANBAD\",828203:\"DHANBAD\",828207:\"DHANBAD\",828304:\"DHANBAD\",827012:\"BOKARO\",828305:\"DHANBAD\",828120:\"DHANBAD\",828206:\"DHANBAD\",828132:\"DHANBAD\",828119:\"DHANBAD\",828122:\"DHANBAD\",828127:\"DHANBAD\",827003:\"BOKARO\",827004:\"BOKARO\",827006:\"BOKARO\",828105:\"DHANBAD\",828123:\"DHANBAD\",828126:\"DHANBAD\",828128:\"DHANBAD\",825322:\"GIRIDH\",815312:\"GIRIDH\",815311:\"GIRIDH\",825412:\"GIRIDH\",829104:\"BOKARO\",825102:\"BOKARO\",829144:\"BOKARO\",829121:\"BOKARO\",825108:\"GIRIDH\",815302:\"GIRIDH\",825320:\"GIRIDH\",815314:\"GIRIDH\",815316:\"GIRIDH\",815318:\"GIRIDH\",825324:\"GIRIDH\",815301:\"GIRIDH\",829112:\"BOKARO\",825167:\"GIRIDH\",829127:\"BOKARO\",825106:\"GIRIDH\",815313:\"GIRIDH\",815317:\"GIRIDH\",829132:\"BOKARO\",829107:\"BOKARO\",829114:\"BOKARO\",829123:\"BOKARO\",828403:\"BOKARO\",815315:\"GIRIDH\",828404:\"BOKARO\",829111:\"BOKARO\",829128:\"BOKARO\",829113:\"BOKARO\",829116:\"BOKARO\",825329:\"GIRIDH\",829129:\"BOKARO\",829149:\"BOKARO\",825311:\"HAZARIBAG\",825408:\"CHATRA\",825401:\"Chatra\",829134:\"Ramgarh\",829101:\"RAMGARH\",825418:\"KODERMA\",825414:\"CHATRA\",825302:\"HAZARIBAG\",825103:\"CHATRA\",825321:\"CHATRA\",825407:\"KODERMA\",825319:\"HAZARIBAG\",829143:\"RAMGARH\",825313:\"HAZARIBAG\",825312:\"HAZARIBAG\",829110:\"RAMGARH\",825314:\"HAZARIBAG\",825132:\"KODERMA\",825301:\"HAZARIBAG\",825405:\"HAZARIBAG\",825402:\"HAZARIBAG\",829102:\"Ramgarh\",829103:\"RAMGARH\",825323:\"HAZARIBAG\",825101:\"RAMGARH\",825406:\"HAZARIBAG\",825409:\"KODERMA\",825330:\"RAMGARH\",829105:\"RAMGARH\",829117:\"RAMGARH\",829150:\"Ramgarh\",829106:\"RAMGARH\",829135:\"RAMGARH\",825404:\"CHATRA\",825411:\"Hazaribagh\",825403:\"KODERMA\",825317:\"HAZARIBAG\",825109:\"KODERMA\",825303:\"HAZARIBAG\",825336:\"HAZARIBAG\",825315:\"BOKARO\",825318:\"KODERMA\",829109:\"RAMGARH\",825410:\"KODERMA\",829108:\"RAMGARH\",825413:\"KODERMA\",829119:\"RAMGARH\",825316:\"RAMGARH\",829118:\"RAMGARH\",825325:\"HAZARIBAG\",825421:\"KODERMA\",829130:\"RAMGARH\",829122:\"RAMGARH\",829125:\"RAMGARH\",829133:\"RAMGARH\",829126:\"RAMGARH\",829131:\"RAMGARH\",825326:\"HAZARIBAG\",829203:\"LATEHAR\",822114:\"GARHWA\",822121:\"GARHWA\",822116:\"PAKUR\",822122:\"PALAMAU\",822112:\"GARHWA\",822119:\"LATEHAR\",822118:\"PALAMAU\",822134:\"GARHWA\",822113:\"PALAMAU\",829201:\"CHATRA\",822123:\"PALAMAU\",822125:\"GARHWA\",822126:\"PALAMAU\",822133:\"GARHWA\",829206:\"LATEHAR\",829202:\"LATEHAR\",829204:\"LATEHAR\",822111:\"LATEHAR\",822124:\"GARHWA\",822120:\"PALAMAU\",822101:\"PALAMAU\",822128:\"GARHWA\",822129:\"GARHWA\",822115:\"PALAMAU\",822132:\"PALAMAU\",829205:\"RANCHI\",822110:\"PALAMAU\",822102:\"PALAMAU\",829210:\"RANCHI\",829207:\"LATEHAR\",822131:\"PALAMAU\",829209:\"RANCHI\",822117:\"PALAMAU\",829208:\"LATEHAR\",835204:\"RANCHI\",834008:\"RANCHI\",835231:\"GUMLA\",834002:\"RANCHI\",835211:\"SIMDEGA\",835102:\"RANCHI\",835325:\"RANCHI\",835302:\"Lohardaga\",835203:\"GUMLA\",835227:\"RANCHI\",835232:\"GUMLA\",835225:\"RANCHI\",835219:\"RANCHI\",835103:\"RANCHI\",835210:\"KHUNTI\",835233:\"GUMLA\",835208:\"GUMLA\",834001:\"RANCHI\",835224:\"GUMLA\",835220:\"GUMLA\",834006:\"RANCHI\",835212:\"SIMDEGA\",835205:\"RANCHI\",835223:\"SIMDEGA\",835222:\"RANCHI\",834004:\"RANCHI\",835226:\"SIMDEGA\",835301:\"RANCHI\",835209:\"Khunti\",835216:\"KHUNTI\",835229:\"GUMLA\",835201:\"SIMDEGA\",834010:\"RANCHI\",834009:\"RANCHI\",835213:\"Lohardaga\",835303:\"RANCHI\",835206:\"GUMLA\",835202:\"RANCHI\",835230:\"GUMLA\",835228:\"SIMDEGA\",835234:\"KHUNTI\",835214:\"RANCHI\",834012:\"RANCHI\",835217:\"RANCHI\",835101:\"RANCHI\",835221:\"RANCHI\",835235:\"SIMDEGA\",835218:\"LATEHAR\",835207:\"GUMLA\",834003:\"RANCHI\",834005:\"RANCHI\",834011:\"RANCHI\",835215:\"RANCHI\",834013:\"RANCHI\",814160:\"GODDA\",815355:\"JAMTARA\",814153:\"GODDA\",816101:\"SAHIBGANJ\",814146:\"DEOGHAR\",814143:\"DEOGHAR\",814102:\"DUMKA\",814145:\"GODDA\",815359:\"JAMTARA\",814141:\"DUMKA\",815352:\"JAMTARA\",814103:\"DUMKA\",814148:\"DUMKA\",814110:\"DUMKA\",814133:\"GODDA\",814158:\"DUMKA\",814111:\"PAKUR\",814154:\"GODDA\",816120:\"SAHIBGANJ\",816104:\"PAKUR\",816118:\"DUMKA\",815351:\"JAMTARA\",814119:\"DUMKA\",816106:\"PAKUR\",814155:\"GODDA\",814112:\"DEOGHAR\",814166:\"JAMTARA\",814152:\"DEOGHAR\",814118:\"DUMKA\",815353:\"DEOGHAR\",814144:\"DUMKA\",813208:\"SAHIBGANJ\",814120:\"DEOGHAR\",816109:\"SAHIBGANJ\",816117:\"PAKUR\",814149:\"DEOGHAR\",814147:\"GODDA\",814101:\"DUMKA\",814142:\"DEOGHAR\",814156:\"GODDA\",816110:\"SAHIBGANJ\",816103:\"DUMKA\",814165:\"GODDA\",816116:\"SAHIBGANJ\",816102:\"SAHIBGANJ\",815357:\"DEOGHAR\",814151:\"DUMKA\",816107:\"PAKUR\",814113:\"DEOGHAR\",816105:\"SAHIBGANJ\",815354:\"JAMTARA\",816108:\"SAHIBGANJ\",814157:\"DEOGHAR\",814114:\"DEOGHAR\",814115:\"DEOGHAR\",816129:\"DUMKA\",814150:\"DEOGHAR\",814167:\"DUMKA\",816115:\"SAHIBGANJ\",814116:\"DEOGHAR\",832401:\"SERAIKELAKHARSAWAN\",832109:\"SERAIKELAKHARSAWAN\",831013:\"SERAIKELAKHARSAWAN\",831009:\"EAST SINGHBHUM\",833101:\"SERAIKELAKHARSAWAN\",832301:\"EAST SINGHBHUM\",832102:\"EAST SINGHBHUM\",833214:\"WEST SINGHBHUM\",832101:\"EAST SINGHBHUM\",832302:\"EAST SINGHBHUM\",833216:\"SERAIKELAKHARSAWAN\",833105:\"WEST SINGHBHUM\",832303:\"EAST SINGHBHUM\",833202:\"WEST SINGHBHUM\",831012:\"EAST SINGHBHUM\",832104:\"EAST SINGHBHUM\",833204:\"WEST SINGHBHUM\",831002:\"EAST SINGHBHUM\",833104:\"WEST SINGHBHUM\",833102:\"WEST SINGHBHUM\",832404:\"SERAIKELAKHARSAWAN\",832105:\"EAST SINGHBHUM\",832112:\"EAST SINGHBHUM\",833221:\"WEST SINGHBHUM\",833215:\"WEST SINGHBHUM\",832304:\"EAST SINGHBHUM\",832108:\"SERAIKELAKHARSAWAN\",833201:\"WEST SINGHBHUM\",833103:\"WEST SINGHBHUM\",831017:\"EAST SINGHBHUM\",831019:\"EAST SINGHBHUM\",831001:\"EAST SINGHBHUM\",831007:\"EAST SINGHBHUM\",833220:\"SERAIKELAKHARSAWAN\",831004:\"EAST SINGHBHUM\",833106:\"WEST SINGHBHUM\",832403:\"EAST SINGHBHUM\",833212:\"WEST SINGHBHUM\",832107:\"EAST SINGHBHUM\",831015:\"EAST SINGHBHUM\",831003:\"EAST SINGHBHUM\",833213:\"WEST SINGHBHUM\",832113:\"EAST SINGHBHUM\",832402:\"SERAIKELAKHARSAWAN\",833203:\"WEST SINGHBHUM\",833217:\"WEST SINGHBHUM\",833218:\"WEST SINGHBHUM\",831006:\"EAST SINGHBHUM\",831005:\"EAST SINGHBHUM\",833222:\"WEST SINGHBHUM\",832106:\"EAST SINGHBHUM\",833223:\"WEST SINGHBHUM\",832103:\"EAST SINGHBHUM\",832111:\"EAST SINGHBHUM\",831014:\"SERAIKELAKHARSAWAN\",831021:\"EAST SINGHBHUM\",831020:\"EAST SINGHBHUM\",833219:\"SERAIKELAKHARSAWAN\",831016:\"EAST SINGHBHUM\",831011:\"EAST SINGHBHUM\",560001:\"BENGALURU\",560063:\"BENGALURU\",560007:\"Bangalore\",560092:\"BENGALURU\",560024:\"BENGALURU\",560045:\"BENGALURU\",560064:\"BENGALURU\",560047:\"BENGALURU\",560043:\"BENGALURU\",560103:\"BENGALURU\",560300:\"BENGALURU\",560046:\"BENGALURU\",560049:\"BENGALURU\",560093:\"BENGALURU\",560025:\"BENGALURU\",560117:\"BENGALURU\",560036:\"BENGALURU\",560077:\"BENGALURU\",560037:\"BENGALURU\",560071:\"BENGALURU\",560016:\"BENGALURU\",560066:\"BENGALURU\",560005:\"BENGALURU\",560065:\"BENGALURU\",560087:\"BENGALURU\",560008:\"BENGALURU\",560051:\"BENGALURU\",560048:\"BENGALURU\",560113:\"BENGALURU\",560038:\"BENGALURU\",560094:\"BENGALURU\",560006:\"BENGALURU\",560075:\"BENGALURU\",560067:\"BENGALURU\",560115:\"BENGALURU RURAL\",560084:\"BENGALURU\",560033:\"BENGALURU\",560017:\"BENGALURU\",560032:\"BENGALURU\",560080:\"BENGALURU\",560042:\"BENGALURU\",560030:\"BENGALURU\",560034:\"BENGALURU\",560108:\"BENGALURU\",560050:\"BENGALURU\",560070:\"BENGALURU\",560085:\"BENGALURU\",560076:\"BENGALURU\",560083:\"BENGALURU\",560004:\"BENGALURU\",560114:\"BENGALURU\",560002:\"BENGALURU\",560056:\"BENGALURU\",560116:\"BENGALURU\",560068:\"BENGALURU\",560099:\"BENGALURU\",560035:\"BENGALURU\",560018:\"BENGALURU\",560081:\"BENGALURU\",560098:\"Bengaluru\",560053:\"BENGALURU\",560061:\"BENGALURU\",560060:\"BENGALURU\",560500:\"BENGALURU\",560026:\"BENGALURU\",560029:\"BENGALURU\",560062:\"BENGALURU\",560100:\"BENGALURU\",560105:\"BENGALURU RURAL\",560102:\"BENGALURU\",560078:\"BENGALURU\",560041:\"BENGALURU\",560011:\"BENGALURU\",560095:\"BENGALURU\",560111:\"BENGALURU\",560074:\"BENGALURU\",560059:\"BENGALURU\",560027:\"BENGALURU\",560109:\"BENGALURU\",560082:\"BENGALURU RURAL\",560110:\"BENGALURU\",560107:\"BENGALURU RURAL\",560073:\"BENGALURU RURAL\",560091:\"BENGALURU RURAL\",560079:\"BENGALURU\",560009:\"BENGALURU\",560089:\"BENGALURU RURAL\",560040:\"BENGALURU\",560090:\"BENGALURU RURAL\",560021:\"BENGALURU\",560104:\"BENGALURU\",560088:\"BENGALURU RURAL\",560010:\"BENGALURU\",560013:\"BENGALURU\",560015:\"BENGALURU\",560112:\"BENGALURU RURAL\",560058:\"BENGALURU\",560023:\"BENGALURU\",560086:\"BENGALURU\",560003:\"BENGALURU\",560055:\"BENGALURU\",560054:\"BENGALURU\",560072:\"Bangalore\",560096:\"BENGALURU\",560057:\"BENGALURU\",560012:\"BENGALURU\",560020:\"BENGALURU\",560097:\"BENGALURU\",560022:\"BENGALURU\",562108:\"RAMANAGAR\",562117:\"RAMANAGAR\",561101:\"RAMANAGAR\",562120:\"RAMANAGAR\",561201:\"RAMANAGAR\",562138:\"RAMANAGAR\",562159:\"RAMANAGAR\",562119:\"RAMANAGAR\",562110:\"BENGALURU RURAL\",562162:\"BENGALURU RURAL\",562106:\"BENGALURU\",561203:\"BENGALURU RURAL\",562163:\"BENGALURU RURAL\",562123:\"BENGALURU RURAL\",562111:\"BENGALURU RURAL\",561204:\"BENGALURU RURAL\",562107:\"BENGALURU\",562126:\"RAMANAGAR\",562112:\"RAMANAGAR\",562164:\"BENGALURU RURAL\",562149:\"BENGALURU\",562131:\"RAMANAGAR\",562127:\"RAMANAGAR\",562121:\"RAMANAGAR\",562122:\"BENGALURU RURAL\",562129:\"BENGALURU RURAL\",562157:\"BENGALURU\",562109:\"RAMANAGAR\",562160:\"RAMANAGAR\",562135:\"BENGALURU RURAL\",562130:\"BENGALURU\",562132:\"BENGALURU RURAL\",562114:\"BENGALURU RURAL\",562125:\"BENGALURU\",561205:\"BENGALURU RURAL\",562161:\"RAMANAGAR\",562128:\"RAMANAGAR\",587111:\"BAGALKOT\",587201:\"BAGALKOT\",587330:\"BAGALKOT\",587206:\"BAGALKOT\",587124:\"BAGALKOT\",587119:\"BAGALKOT\",587204:\"BAGALKOT\",587301:\"BAGALKOT\",587155:\"BAGALKOT\",587121:\"BAGALKOT\",587118:\"BAGALKOT\",587125:\"BAGALKOT\",587112:\"BAGALKOT\",587116:\"BAGALKOT\",587311:\"BAGALKOT\",587117:\"BAGALKOT\",587101:\"BAGALKOT\",587103:\"BAGALKOT\",587104:\"BAGALKOT\",587122:\"BAGALKOT\",587313:\"BAGALKOT\",587113:\"BAGALKOT\",587114:\"BAGALKOT\",587115:\"BAGALKOT\",587202:\"BAGALKOT\",587207:\"BAGALKOT\",587120:\"BAGALKOT\",587312:\"BAGALKOT\",587102:\"BAGALKOT\",587315:\"BAGALKOT\",587154:\"BAGALKOT\",587203:\"BAGALKOT\",587205:\"BAGALKOT\",587331:\"BAGALKOT\",587314:\"BAGALKOT\",587316:\"BAGALKOT\",587156:\"BAGALKOT\",583131:\"BELLARY\",583114:\"BELLARY\",583128:\"BELLARY\",583121:\"BELLARY\",583220:\"BELLARY\",583127:\"DAVANGERE\",583137:\"DAVANGERE\",583104:\"BELLARY\",583218:\"BELLARY\",583135:\"BELLARY\",583211:\"BELLARY\",583134:\"BELLARY\",583125:\"DAVANGERE\",583201:\"BELLARY\",583212:\"BELLARY\",583152:\"BELLARY\",583130:\"BELLARY\",583213:\"DAVANGERE\",583103:\"BELLARY\",583115:\"BELLARY\",583116:\"BELLARY\",583122:\"BELLARY\",583101:\"BELLARY\",583102:\"BELLARY\",583105:\"BELLARY\",583124:\"BELLARY\",583224:\"BELLARY\",583214:\"BELLARY\",583126:\"BELLARY\",583117:\"BELLARY\",583216:\"BELLARY\",583132:\"BELLARY\",583154:\"BELLARY\",583119:\"BELLARY\",583217:\"BELLARY\",583120:\"BELLARY\",583223:\"BELLARY\",583111:\"BELLARY\",583155:\"BELLARY\",583113:\"BELLARY\",583129:\"BELLARY\",583222:\"BELLARY\",583118:\"BELLARY\",583219:\"BELLARY\",583112:\"BELLARY\",583215:\"BELLARY\",583239:\"BELLARY\",583136:\"BELLARY\",583203:\"BELLARY\",583276:\"BELLARY\",583221:\"BELLARY\",583123:\"BELLARY\",583153:\"BELLARY\",583225:\"BELLARY\",583275:\"BELLARY\",591110:\"BELAGAVI\",591143:\"BELAGAVI\",591129:\"BELAGAVI\",590020:\"BELAGAVI\",590010:\"BELAGAVI\",591112:\"BELAGAVI\",591108:\"BELAGAVI\",591345:\"BELAGAVI\",591102:\"BELAGAVI\",590006:\"BELAGAVI\",591109:\"BELAGAVI\",591126:\"BELAGAVI\",591117:\"BELAGAVI\",590015:\"BELAGAVI\",591115:\"BELAGAVI\",591127:\"BELAGAVI\",591131:\"BELAGAVI\",591111:\"BELAGAVI\",590018:\"BELAGAVI\",591103:\"BELAGAVI\",591130:\"BELAGAVI\",591302:\"BELAGAVI\",591124:\"BELAGAVI\",591123:\"BELAGAVI\",591128:\"BELAGAVI\",591120:\"BELAGAVI\",590016:\"BELAGAVI\",590001:\"BELAGAVI\",590019:\"BELAGAVI\",590003:\"BELAGAVI\",590005:\"BELAGAVI\",590017:\"BELAGAVI\",590009:\"BELAGAVI\",591104:\"BELAGAVI\",591125:\"BELAGAVI\",591156:\"BELAGAVI\",591106:\"BELAGAVI\",591114:\"BELAGAVI\",591119:\"BELAGAVI\",591153:\"BELAGAVI\",591147:\"BELAGAVI\",590014:\"BELAGAVI\",591301:\"BELAGAVI\",591346:\"BELAGAVI\",591121:\"BELAGAVI\",590011:\"BELAGAVI\",591118:\"BELAGAVI\",591113:\"BELAGAVI\",591116:\"BELAGAVI\",590008:\"BELAGAVI\",591173:\"BELAGAVI\",585444:\"Bidar\",585328:\"Bidar\",585445:\"Bidar\",585402:\"Bidar\",585414:\"Bidar\",585416:\"Bidar\",585403:\"Bidar\",585326:\"Bidar\",585226:\"Bidar\",585436:\"Bidar\",585412:\"Bidar\",585327:\"Bidar\",585443:\"Bidar\",585227:\"Bidar\",585411:\"Bidar\",585401:\"Bidar\",585415:\"Bidar\",585419:\"Bidar\",585418:\"Bidar\",585417:\"Bidar\",585421:\"Bidar\",585437:\"Bidar\",585413:\"Bidar\",585330:\"Bidar\",585353:\"Bidar\",585329:\"Bidar\",585331:\"Bidar\",591304:\"BELAGAVI\",591248:\"BELAGAVI\",591215:\"BELAGAVI\",591303:\"BELAGAVI\",591212:\"BELAGAVI\",591211:\"BELAGAVI\",591317:\"BELAGAVI\",591220:\"BELAGAVI\",591213:\"BELAGAVI\",591241:\"BELAGAVI\",591232:\"BELAGAVI\",591237:\"BELAGAVI\",591230:\"BELAGAVI\",591226:\"BELAGAVI\",591265:\"BELAGAVI\",591263:\"BELAGAVI\",591214:\"BELAGAVI\",591222:\"BELAGAVI\",591217:\"BELAGAVI\",591216:\"BELAGAVI\",591201:\"BELAGAVI\",591247:\"BELAGAVI\",591287:\"BELAGAVI\",591238:\"BELAGAVI\",591316:\"BELAGAVI\",591219:\"BELAGAVI\",591311:\"BELAGAVI\",591229:\"BELAGAVI\",591235:\"BELAGAVI\",591242:\"BELAGAVI\",591240:\"BELAGAVI\",591223:\"BELAGAVI\",591244:\"BELAGAVI\",591234:\"BELAGAVI\",591228:\"BELAGAVI\",591239:\"BELAGAVI\",591315:\"BELAGAVI\",580028:\"Hubballi\",581207:\"Dharwad\",582208:\"Dharwad\",581103:\"Dharwad\",581201:\"Dharwad\",580025:\"Dharwad\",580024:\"Dharwad\",582201:\"Dharwad\",580007:\"Dharwad\",581113:\"Dharwad\",581196:\"Dharwad\",581209:\"Dharwad\",581204:\"Dharwad\",580114:\"Dharwad\",581195:\"Madikeri\",580023:\"Dharwad\",580118:\"Dharwad\",580001:\"Dharwad\",580011:\"Dharwad\",580003:\"Dharwad\",580008:\"Dharwad\",580006:\"Dharwad\",580002:\"Dharwad\",580009:\"Dharwad\",580005:\"Dharwad\",580004:\"Dharwad\",581105:\"Dharwad\",580027:\"Dharwad\",581107:\"Dharwad\",580112:\"Dharwad\",581117:\"Dharwad\",580030:\"Dharwad\",580029:\"Dharwad\",580031:\"Dharwad\",580020:\"Dharwad\",580021:\"Dharwad\",580026:\"Dharwad\",580032:\"Dharwad\",581206:\"Dharwad\",582111:\"GADAG\",582116:\"GADAG\",583277:\"KOPPAL\",582103:\"GADAG\",583234:\"KOPPAL\",583235:\"KOPPAL\",583226:\"KOPPAL\",583227:\"KOPPAL\",582205:\"GADAG\",582209:\"GADAG\",583230:\"KOPPAL\",582203:\"GADAG\",582118:\"GADAG\",583238:\"KOPPAL\",582102:\"GADAG\",583232:\"GADAG\",583278:\"KOPPAL\",583284:\"KOPPAL\",583281:\"KOPPAL\",582207:\"GADAG\",582112:\"GADAG\",582113:\"GADAG\",583282:\"KOPPAL\",582204:\"GADAG\",582202:\"GADAG\",583285:\"KOPPAL\",583229:\"KOPPAL\",583237:\"KOPPAL\",583280:\"KOPPAL\",583228:\"KOPPAL\",582120:\"GADAG\",583283:\"KOPPAL\",583236:\"KOPPAL\",583287:\"KOPPAL\",582114:\"GADAG\",582117:\"GADAG\",583268:\"KOPPAL\",582101:\"GADAG\",582119:\"GADAG\",582115:\"GADAG\",583279:\"KOPPAL\",582211:\"GADAG\",582206:\"GADAG\",583231:\"KOPPAL\",583233:\"KOPPAL\",582210:\"GADAG\",591101:\"BELAGAVI\",591225:\"BELAGAVI\",591236:\"BELAGAVI\",591313:\"BELAGAVI\",591218:\"BELAGAVI\",591309:\"BELAGAVI\",591310:\"BELAGAVI\",591221:\"BELAGAVI\",591306:\"BELAGAVI\",591122:\"BELAGAVI\",591305:\"BELAGAVI\",591344:\"BELAGAVI\",591243:\"BELAGAVI\",591233:\"BELAGAVI\",591254:\"BELAGAVI\",591312:\"BELAGAVI\",591224:\"BELAGAVI\",591107:\"BELAGAVI\",591307:\"BELAGAVI\",591308:\"BELAGAVI\",591227:\"BELAGAVI\",591340:\"BELAGAVI\",591231:\"BELAGAVI\",591314:\"BELAGAVI\",591136:\"BELAGAVI\",591246:\"BELAGAVI\",581101:\"HAVERI\",581128:\"HAVERI\",581115:\"HAVERI\",581102:\"HAVERI\",581110:\"HAVERI\",581109:\"HAVERI\",581198:\"HAVERI\",581210:\"HAVERI\",581203:\"HAVERI\",581208:\"HAVERI\",581104:\"HAVERI\",581126:\"HAVERI\",581120:\"HAVERI\",581202:\"HAVERI\",581205:\"HAVERI\",581108:\"HAVERI\",581199:\"HAVERI\",581211:\"HAVERI\",581106:\"HAVERI\",581111:\"HAVERI\",581145:\"HAVERI\",581118:\"HAVERI\",581193:\"HAVERI\",581119:\"HAVERI\",581116:\"HAVERI\",581148:\"HAVERI\",581213:\"HAVERI\",581237:\"HAVERI\",581112:\"HAVERI\",581123:\"HAVERI\",581212:\"HAVERI\",585223:\"KALABURAGI\",585222:\"KALABURAGI\",585301:\"KALABURAGI\",585216:\"KALABURAGI\",585306:\"KALABURAGI\",585315:\"KALABURAGI\",585314:\"KALABURAGI\",585290:\"KALABURAGI\",585321:\"KALABURAGI\",585211:\"KALABURAGI\",585202:\"KALABURAGI\",585325:\"KALABURAGI\",585302:\"KALABURAGI\",585316:\"KALABURAGI\",585303:\"KALABURAGI\",585212:\"KALABURAGI\",585305:\"KALABURAGI\",585322:\"KALABURAGI\",585236:\"KALABURAGI\",585104:\"KALABURAGI\",585221:\"KALABURAGI\",585224:\"KALABURAGI\",585309:\"KALABURAGI\",585319:\"KALABURAGI\",585310:\"KALABURAGI\",585265:\"KALABURAGI\",585237:\"KALABURAGI\",585308:\"KALABURAGI\",585317:\"KALABURAGI\",585225:\"KALABURAGI\",585355:\"KALABURAGI\",585228:\"KALABURAGI\",585287:\"KALABURAGI\",585311:\"KALABURAGI\",585102:\"KALABURAGI\",585304:\"KALABURAGI\",585312:\"KALABURAGI\",585213:\"KALABURAGI\",585214:\"KALABURAGI\",585367:\"KALABURAGI\",585313:\"KALABURAGI\",585318:\"KALABURAGI\",585307:\"KALABURAGI\",585320:\"KALABURAGI\",585220:\"KALABURAGI\",585324:\"KALABURAGI\",585323:\"KALABURAGI\",585103:\"KALABURAGI\",585105:\"KALABURAGI\",585101:\"KALABURAGI\",585106:\"KALABURAGI\",585291:\"KALABURAGI\",585215:\"KALABURAGI\",585217:\"KALABURAGI\",585107:\"KALABURAGI\",585218:\"KALABURAGI\",585210:\"KALABURAGI\",585292:\"KALABURAGI\",585219:\"YADGIR\",585229:\"KALABURAGI\",585201:\"YADGIR\",581344:\"UTTARA KANNADA\",581319:\"UTTARA KANNADA\",581348:\"UTTARA KANNADA\",581351:\"UTTARA KANNADA\",581314:\"UTTARA KANNADA\",581354:\"UTTARA KANNADA\",581343:\"UTTARA KANNADA\",581324:\"UTTARA KANNADA\",581350:\"UTTARA KANNADA\",581360:\"UTTARA KANNADA\",581440:\"UTTARA KANNADA\",581342:\"UTTARA KANNADA\",581334:\"UTTARA KANNADA\",581308:\"UTTARA KANNADA\",581317:\"UTTARA KANNADA\",581316:\"UTTARA KANNADA\",581302:\"UTTARA KANNADA\",581306:\"UTTARA KANNADA\",581423:\"UTTARA KANNADA\",581353:\"UTTARA KANNADA\",581321:\"UTTARA KANNADA\",581320:\"UTTARA KANNADA\",581357:\"UTTARA KANNADA\",581421:\"UTTARA KANNADA\",581333:\"UTTARA KANNADA\",581307:\"UTTARA KANNADA\",581328:\"UTTARA KANNADA\",581323:\"UTTARA KANNADA\",581361:\"UTTARA KANNADA\",581400:\"UTTARA KANNADA\",581352:\"UTTARA KANNADA\",581327:\"UTTARA KANNADA\",581345:\"UTTARA KANNADA\",581384:\"UTTARA KANNADA\",581326:\"UTTARA KANNADA\",581362:\"UTTARA KANNADA\",581330:\"UTTARA KANNADA\",581332:\"UTTARA KANNADA\",581338:\"UTTARA KANNADA\",581335:\"UTTARA KANNADA\",581396:\"UTTARA KANNADA\",581339:\"UTTARA KANNADA\",581341:\"UTTARA KANNADA\",581301:\"UTTARA KANNADA\",581303:\"UTTARA KANNADA\",581304:\"UTTARA KANNADA\",584128:\"RAICHUR\",584123:\"RAICHUR\",584129:\"RAICHUR\",584140:\"RAICHUR\",584125:\"RAICHUR\",584120:\"RAICHUR\",584122:\"RAICHUR\",584111:\"RAICHUR\",584203:\"RAICHUR\",584113:\"RAICHUR\",584104:\"RAICHUR\",584136:\"RAICHUR\",584102:\"RAICHUR\",584138:\"RAICHUR\",584116:\"RAICHUR\",584167:\"RAICHUR\",584143:\"RAICHUR\",584126:\"RAICHUR\",584134:\"RAICHUR\",584115:\"RAICHUR\",584127:\"RAICHUR\",584170:\"RAICHUR\",584139:\"RAICHUR\",584135:\"RAICHUR\",584124:\"RAICHUR\",584132:\"RAICHUR\",584202:\"RAICHUR\",584118:\"RAICHUR\",584133:\"RAICHUR\",584103:\"RAICHUR\",584101:\"RAICHUR\",581340:\"Uttara Kannada\",581355:\"Uttara Kannada\",581453:\"Joida\",581325:\"Uttara Kannada\",581322:\"Uttara Kannada\",581363:\"Uttara Kannada\",581315:\"Uttara Kannada\",581329:\"Uttara Kannada\",581358:\"Uttara Kannada\",581349:\"Uttara Kannada\",581359:\"Uttara Kannada\",581187:\"Uttara Kannada\",581356:\"Uttara Kannada\",581337:\"Uttara Kannada\",581402:\"Uttara Kannada\",581129:\"Uttara Kannada\",581365:\"Uttara Kannada\",581336:\"Uttara Kannada\",581331:\"Uttara Kannada\",581318:\"Uttara Kannada\",581403:\"Uttara Kannada\",581121:\"Joida\",581346:\"Uttara Kannada\",581186:\"Uttara Kannada\",581347:\"Uttara Kannada\",581450:\"Uttara Kannada\",581412:\"Uttara Kannada\",581401:\"Uttara Kannada\",581411:\"Uttara Kannada\",586213:\"BIJAPUR(KAR)\",586111:\"BIJAPUR(KAR)\",586117:\"BIJAPUR(KAR)\",586123:\"BIJAPUR(KAR)\",586112:\"BIJAPUR(KAR)\",586211:\"BIJAPUR(KAR)\",586104:\"BIJAPUR(KAR)\",586118:\"BIJAPUR(KAR)\",586201:\"BIJAPUR(KAR)\",586202:\"BIJAPUR(KAR)\",586209:\"BIJAPUR(KAR)\",586129:\"BIJAPUR(KAR)\",586216:\"BIJAPUR(KAR)\",586127:\"BIJAPUR(KAR)\",586203:\"BIJAPUR(KAR)\",586207:\"BIJAPUR(KAR)\",586217:\"BIJAPUR(KAR)\",586113:\"BIJAPUR(KAR)\",586210:\"BIJAPUR(KAR)\",586128:\"BIJAPUR(KAR)\",586214:\"BIJAPUR(KAR)\",586114:\"BIJAPUR(KAR)\",586125:\"BIJAPUR(KAR)\",586116:\"BIJAPUR(KAR)\",586215:\"BIJAPUR(KAR)\",586119:\"BIJAPUR(KAR)\",586204:\"BIJAPUR(KAR)\",586212:\"BIJAPUR(KAR)\",586103:\"BIJAPUR(KAR)\",586120:\"BIJAPUR(KAR)\",586124:\"BIJAPUR(KAR)\",586206:\"BIJAPUR(KAR)\",586115:\"BIJAPUR(KAR)\",586208:\"BIJAPUR(KAR)\",586205:\"BIJAPUR(KAR)\",586130:\"BIJAPUR(KAR)\",586108:\"BIJAPUR(KAR)\",586122:\"BIJAPUR(KAR)\",586121:\"BIJAPUR(KAR)\",586101:\"BIJAPUR\",586109:\"BIJAPUR(KAR)\",577126:\"CHICKMAGALUR\",577139:\"CHICKMAGALUR\",577547:\"CHICKMAGALUR\",577123:\"CHICKMAGALUR\",577548:\"CHICKMAGALUR\",577111:\"CHICKMAGALUR\",577101:\"CHICKMAGALUR\",577228:\"CHICKMAGALUR\",577182:\"CHICKMAGALUR\",577138:\"CHICKMAGALUR\",577550:\"CHICKMAGALUR\",577131:\"CHICKMAGALUR\",577134:\"CHICKMAGALUR\",577179:\"CHICKMAGALUR\",577112:\"CHICKMAGALUR\",577116:\"CHICKMAGALUR\",577122:\"CHICKMAGALUR\",577113:\"CHICKMAGALUR\",577135:\"CHICKMAGALUR\",577144:\"CHICKMAGALUR\",577114:\"CHICKMAGALUR\",577132:\"CHICKMAGALUR\",577120:\"CHICKMAGALUR\",577146:\"CHICKMAGALUR\",577127:\"CHICKMAGALUR\",577136:\"CHICKMAGALUR\",577130:\"CHICKMAGALUR\",577145:\"CHICKMAGALUR\",577117:\"CHICKMAGALUR\",577549:\"CHICKMAGALUR\",577140:\"CHICKMAGALUR\",577102:\"CHICKMAGALUR\",577180:\"CHICKMAGALUR\",577160:\"CHICKMAGALUR\",577175:\"CHICKMAGALUR\",577124:\"CHICKMAGALUR\",577133:\"CHICKMAGALUR\",577121:\"CHICKMAGALUR\",577168:\"CHICKMAGALUR\",577181:\"CHICKMAGALUR\",577129:\"CHICKMAGALUR\",577125:\"CHICKMAGALUR\",577128:\"CHICKMAGALUR\",577137:\"CHICKMAGALUR\",577536:\"CHITRADURGA\",577546:\"CHITRADURGA\",577526:\"CHITRADURGA\",577518:\"CHITRADURGA\",577511:\"CHITRADURGA\",577558:\"CHITRADURGA\",577541:\"CHITRADURGA\",577597:\"CHITRADURGA\",577598:\"CHITRADURGA\",577512:\"DAVANGERE\",577601:\"DAVANGERE\",577545:\"CHITRADURGA\",577557:\"CHITRADURGA\",577534:\"DAVANGERE\",577528:\"DAVANGERE\",577556:\"DAVANGERE\",577555:\"CHITRADURGA\",577554:\"CHITRADURGA\",577527:\"CHITRADURGA\",577515:\"CHITRADURGA\",577513:\"DAVANGERE\",577514:\"DAVANGERE\",577003:\"DAVANGERE\",577589:\"DAVANGERE\",577502:\"CHITRADURGA\",577529:\"CHITRADURGA\",577522:\"CHITRADURGA\",577525:\"DAVANGERE\",577517:\"CHITRADURGA\",577516:\"DAVANGERE\",577005:\"DAVANGERE\",577001:\"DAVANGERE\",577002:\"DAVANGERE\",577599:\"CHITRADURGA\",577519:\"CHITRADURGA\",577520:\"CHITRADURGA\",577521:\"CHITRADURGA\",577553:\"CHITRADURGA\",577543:\"CHITRADURGA\",577533:\"CHITRADURGA\",577532:\"CHITRADURGA\",577535:\"CHITRADURGA\",577538:\"CHITRADURGA\",577523:\"CHITRADURGA\",577501:\"CHITRADURGA\",577537:\"CHITRADURGA\",577540:\"CHITRADURGA\",577524:\"CHITRADURGA\",577007:\"DAVANGERE\",577006:\"DAVANGERE\",577596:\"CHITRADURGA\",577566:\"DAVANGERE\",577531:\"CHITRADURGA\",577539:\"CHITRADURGA\",577542:\"CHITRADURGA\",577530:\"DAVANGERE\",577004:\"DAVANGERE\",573214:\"HASSAN\",573102:\"HASSAN\",573121:\"HASSAN\",573116:\"HASSAN\",573103:\"HASSAN\",573128:\"HASSAN\",573133:\"HASSAN\",573131:\"HASSAN\",573225:\"HASSAN\",573213:\"HASSAN\",573212:\"HASSAN\",573136:\"HASSAN\",573216:\"HASSAN\",573210:\"HASSAN\",573134:\"HASSAN\",573120:\"HASSAN\",573215:\"HASSAN\",573122:\"HASSAN\",573202:\"HASSAN\",573101:\"HASSAN\",573125:\"HASSAN\",573112:\"HASSAN\",573118:\"HASSAN\",573123:\"HASSAN\",573162:\"HASSAN\",573164:\"HASSAN\",573211:\"HASSAN\",573111:\"HASSAN\",573124:\"HASSAN\",573115:\"HASSAN\",573130:\"HASSAN\",573135:\"HASSAN\",573113:\"HASSAN\",573129:\"HASSAN\",573226:\"HASSAN\",573127:\"HASSAN\",573217:\"HASSAN\",573218:\"HASSAN\",573137:\"HASSAN\",573201:\"HASSAN\",573165:\"HASSAN\",573141:\"HASSAN\",573142:\"HASSAN\",573117:\"HASSAN\",573119:\"HASSAN\",573219:\"HASSAN\",573144:\"HASSAN\",573126:\"HASSAN\",573220:\"HASSAN\",571236:\"Kodagu\",571253:\"Kodagu\",571251:\"Kodagu\",571235:\"Kodagu\",571211:\"Kodagu\",571237:\"Kodagu\",571218:\"Kodagu\",571212:\"Kodagu\",571213:\"Kodagu\",571215:\"Kodagu\",571201:\"Athani\",571217:\"Kodagu\",571249:\"Kodagu\",571234:\"Kodagu\",571252:\"Kodagu\",571219:\"Kodagu\",571214:\"Kodagu\",571216:\"Kodagu\",571231:\"Kodagu\",571254:\"Kodagu\",571247:\"Kodagu\",571248:\"Kodagu\",571232:\"Kodagu\",571250:\"Kodagu\",562105:\"CHIKKABALLAPUR\",563161:\"KOLAR\",562103:\"CHIKKABALLAPUR\",563138:\"KOLAR\",562101:\"CHIKKABALLAPUR\",561213:\"CHIKKABALLAPUR\",563130:\"KOLAR\",563132:\"KOLAR\",563128:\"CHIKKABALLAPUR\",563113:\"CHIKKABALLAPUR\",563131:\"KOLAR\",563125:\"CHIKKABALLAPUR\",563114:\"KOLAR\",563133:\"KOLAR\",563101:\"KODAGU\",562104:\"CHIKKABALLAPUR\",563127:\"KOLAR\",561207:\"CHIKKABALLAPUR\",561211:\"CHIKKABALLAPUR\",563129:\"KOLAR\",563139:\"KOLAR\",563134:\"KOLAR\",563123:\"CHIKKABALLAPUR\",561209:\"CHIKKABALLAPUR\",563115:\"KOLAR\",563116:\"KOLAR\",562102:\"CHIKKABALLAPUR\",563124:\"CHIKKABALLAPUR\",563147:\"KOLAR\",563159:\"CHIKKABALLAPUR\",561208:\"CHIKKABALLAPUR\",563126:\"KOLAR\",563103:\"KOLAR\",563117:\"KOLAR\",563157:\"KOLAR\",563163:\"Kolar\",563118:\"KOLAR\",563162:\"KOLAR\",561206:\"CHIKKABALLAPUR\",563120:\"KOLAR\",563136:\"KOLAR\",563122:\"KOLAR\",563121:\"KOLAR\",563146:\"CHIKKABALLAPUR\",561228:\"CHIKKABALLAPUR\",563137:\"KOLAR\",561210:\"CHIKKABALLAPUR\",563135:\"KOLAR\",561212:\"CHIKKABALLAPUR\",563102:\"KOLAR\",563160:\"KOLAR\",563119:\"CHIKKABALLAPUR\",571425:\"Mandya\",571404:\"Mandya\",571475:\"Mandya\",571436:\"Mandya\",571426:\"Mandya\",571605:\"Mandya\",571807:\"Mandya\",571448:\"Mandya\",571431:\"Mandya\",571433:\"Mandya\",571424:\"Mandya\",571423:\"Mandya\",571415:\"Mandya\",571427:\"Mandya\",571418:\"Mandya\",571812:\"Mandya\",571416:\"Mandya\",571432:\"Mandya\",571606:\"Mandya\",571417:\"Mandya\",571419:\"Mandya\",571478:\"Mandya\",571405:\"Mandya\",571422:\"Mandya\",571445:\"Mandya\",571802:\"Mandya\",571463:\"Mandya\",571421:\"Mandya\",571429:\"Mandya\",571446:\"Mandya\",571403:\"Mandya\",571455:\"Mandya\",571430:\"Mandya\",571811:\"Mandya\",571434:\"Mandya\",571476:\"Mandya\",571477:\"Mandya\",571428:\"Mandya\",571402:\"Mandya\",571450:\"Mandya\",571435:\"Mandya\",571607:\"Mandya\",571401:\"Mandya\",571438:\"Mandya\",574145:\"Dakshina Kannada\",574142:\"Dakshina Kannada\",575007:\"Dakshina Kannada\",574141:\"Dakshina Kannada\",575017:\"Dakshina Kannada\",575006:\"Dakshina Kannada\",574199:\"Dakshina Kannada\",574154:\"Dakshina Kannada\",574267:\"Dakshina Kannada\",575011:\"Dakshina Kannada\",575030:\"Dakshina Kannada\",574153:\"Dakshina Kannada\",575002:\"Dakshina Kannada\",576111:\"Udupi\",575004:\"Dakshina Kannada\",575008:\"Dakshina Kannada\",576121:\"Udupi\",575003:\"Dakshina Kannada\",575029:\"Dakshina Kannada\",574146:\"Dakshina Kannada\",575018:\"Dakshina Kannada\",574150:\"Dakshina Kannada\",575001:\"Dakshina Kannada\",574143:\"Dakshina Kannada\",574144:\"Dakshina Kannada\",574151:\"Dakshina Kannada\",574148:\"Dakshina Kannada\",575015:\"Dakshina Kannada\",575023:\"Dakshina Kannada\",575022:\"Dakshina Kannada\",575014:\"Dakshina Kannada\",575028:\"Dakshina Kannada\",575019:\"Dakshina Kannada\",575005:\"Dakshina Kannada\",575013:\"Dakshina Kannada\",575010:\"Dakshina Kannada\",574509:\"Dakshina Kannada\",575016:\"Dakshina Kannada\",575025:\"Dakshina Kannada\",575020:\"Dakshina Kannada\",570026:\"Mysuru\",570028:\"Mysuru\",571107:\"Mysuru\",571102:\"Mysuru\",571130:\"Mysuru\",571617:\"Mysuru\",571604:\"Mysuru\",571114:\"Mysuru\",571108:\"Mysuru\",571601:\"Mysuru\",571189:\"Mysuru\",571311:\"Mysuru\",571105:\"Mysuru\",570015:\"Mysuru\",571602:\"Mysuru\",571116:\"Mysuru\",571121:\"Mysuru\",570018:\"Mysuru\",571103:\"Mysuru\",570020:\"Mysuru\",571104:\"Mysuru\",571125:\"Mysuru\",570010:\"Mysuru\",570004:\"Mysuru\",571610:\"Mysuru\",570008:\"Mysuru\",570033:\"Mysuru\",571106:\"Saraswathipuram\",571187:\"Mysuru\",570025:\"Mysuru\",571603:\"Mysuru\",570002:\"Mysuru\",570019:\"Mysuru\",571134:\"Mysuru\",570016:\"Mysuru\",570017:\"Mysuru\",570027:\"Mysuru\",570031:\"Mysuru\",570012:\"Mysuru\",570014:\"Mysuru\",570001:\"Mysuru\",570023:\"Mysuru\",570006:\"Mysuru\",570005:\"Mysuru\",570003:\"Mysuru\",570007:\"Mysuru\",570022:\"Mysuru\",570009:\"Mysuru\",570029:\"Mysuru\",570011:\"Mysuru\",570034:\"Mysuru\",570030:\"Mysuru\",570032:\"Mysuru\",571442:\"Chamrajnagar\",571439:\"Chamrajnagar\",571119:\"Mysuru\",571111:\"Chamrajnagar\",571117:\"Chamrajnagar\",571127:\"Chamrajnagar\",571441:\"Chamrajnagar\",571128:\"Mysuru\",571101:\"Mysuru\",571313:\"Chamrajnagar\",571312:\"Mysuru\",571316:\"Chamrajnagar\",571457:\"Chamrajnagar\",571123:\"Chamrajnagar\",571124:\"Mysuru\",571126:\"Chamrajnagar\",571109:\"Chamrajnagar\",571115:\"Chamrajnagar\",571129:\"Mysuru\",571110:\"Mysuru\",571302:\"Mysuru\",571342:\"Chamrajnagar\",571314:\"Mysuru\",571443:\"Chamrajnagar\",571120:\"Mysuru\",571440:\"Bailhongal\",571320:\"Nanjangud\",571118:\"Mysuru\",571315:\"Mysuru\",571444:\"Chamrajnagar\",571490:\"Chamrajnagar\",571122:\"Mysuru\",571301:\"Mysuru\",574260:\"DAKSHINA KANNADA\",574211:\"DAKSHINA KANNADA\",574239:\"DAKSHINA KANNADA\",574101:\"UDUPI\",574324:\"DAKSHINA KANNADA\",574227:\"DAKSHINA KANNADA\",574285:\"DAKSHINA KANNADA\",574217:\"DAKSHINA KANNADA\",574235:\"DAKSHINA KANNADA\",574219:\"DAKSHINA KANNADA\",574253:\"DAKSHINA KANNADA\",574242:\"DAKSHINA KANNADA\",574237:\"DAKSHINA KANNADA\",574314:\"DAKSHINA KANNADA\",574198:\"DAKSHINA KANNADA\",574223:\"DAKSHINA KANNADA\",574210:\"DAKSHINA KANNADA\",576117:\"UDUPI\",574233:\"DAKSHINA KANNADA\",574102:\"UDUPI\",574241:\"DAKSHINA KANNADA\",574122:\"UDUPI\",574234:\"KODAGU\",574212:\"DAKSHINA KANNADA\",574221:\"DAKSHINA KANNADA\",574232:\"DAKSHINA KANNADA\",574218:\"DAKSHINA KANNADA\",574274:\"DAKSHINA KANNADA\",574326:\"DAKSHINA KANNADA\",574214:\"DAKSHINA KANNADA\",574203:\"DAKSHINA KANNADA\",574323:\"DAKSHINA KANNADA\",574129:\"UDUPI\",574240:\"DAKSHINA KANNADA\",576112:\"UDUPI\",574213:\"DAKSHINA KANNADA\",574259:\"DAKSHINA KANNADA\",574238:\"DAKSHINA KANNADA\",574325:\"DAKSHINA KANNADA\",574243:\"DAKSHINA KANNADA\",574328:\"DAKSHINA KANNADA\",574110:\"UDUPI\",574222:\"DAKSHINA KANNADA\",574248:\"DAKSHINA KANNADA\",574201:\"DAKSHINA KANNADA\",574107:\"UDUPI\",574228:\"DAKSHINA KANNADA\",574202:\"DAKSHINA KANNADA\",574216:\"DAKSHINA KANNADA\",574108:\"UDUPI\",574229:\"DAKSHINA KANNADA\",574104:\"UDUPI\",574220:\"DAKSHINA KANNADA\",574109:\"UDUPI\",574114:\"UDUPI\",574313:\"DAKSHINA KANNADA\",574265:\"DAKSHINA KANNADA\",574226:\"DAKSHINA KANNADA\",574230:\"DAKSHINA KANNADA\",574197:\"DAKSHINA KANNADA\",574279:\"DAKSHINA KANNADA\",574236:\"DAKSHINA KANNADA\",574244:\"UDUPI\",574327:\"DAKSHINA KANNADA\",574224:\"DAKSHINA KANNADA\",574225:\"DAKSHINA KANNADA\",574231:\"DAKSHINA KANNADA\",577204:\"SHIVAMOGGA\",577412:\"SHIVAMOGGA\",577213:\"SHIVAMOGGA\",577227:\"SHIVAMOGGA\",577413:\"SHIVAMOGGA\",577428:\"SHIVAMOGGA\",577411:\"SHIVAMOGGA\",577427:\"SHIVAMOGGA\",577453:\"SHIVAMOGGA\",577214:\"SHIVAMOGGA\",577243:\"SHIVAMOGGA\",577245:\"SHIVAMOGGA\",577217:\"DAVANGERE\",577233:\"SHIVAMOGGA\",577421:\"SHIVAMOGGA\",577414:\"SHIVAMOGGA\",577552:\"SHIVAMOGGA\",577426:\"SHIVAMOGGA\",577223:\"DAVANGERE\",577211:\"SHIVAMOGGA\",577434:\"SHIVAMOGGA\",577423:\"SHIVAMOGGA\",577301:\"SHIVAMOGGA\",577219:\"DAVANGERE\",577431:\"SHIVAMOGGA\",577432:\"SHIVAMOGGA\",577551:\"DAVANGERE\",577224:\"DAVANGERE\",577226:\"SHIVAMOGGA\",577232:\"SHIVAMOGGA\",577231:\"DAVANGERE\",577401:\"SHIVAMOGGA\",577429:\"SHIVAMOGGA\",577115:\"SHIVAMOGGA\",577302:\"SHIVAMOGGA\",577418:\"SHIVAMOGGA\",577417:\"SHIVAMOGGA\",577222:\"SHIVAMOGGA\",577436:\"SHIVAMOGGA\",577229:\"Shivamogga\",577216:\"SHIVAMOGGA\",577221:\"DAVANGERE\",577416:\"SHIVAMOGGA\",577218:\"SHIVAMOGGA\",577225:\"DAVANGERE\",577215:\"DAVANGERE\",577230:\"SHIVAMOGGA\",577422:\"SHIVAMOGGA\",577415:\"SHIVAMOGGA\",577544:\"DAVANGERE\",577419:\"SHIVAMOGGA\",577202:\"SHIVAMOGGA\",577205:\"SHIVAMOGGA\",577220:\"SHIVAMOGGA\",577433:\"SHIVAMOGGA\",577452:\"SHIVAMOGGA\",577430:\"SHIVAMOGGA\",577425:\"SHIVAMOGGA\",577424:\"SHIVAMOGGA\",577435:\"SHIVAMOGGA\",577203:\"SHIVAMOGGA\",577451:\"SHIVAMOGGA\",577201:\"SHIVAMOGGA\",572129:\"TUMAKURU\",572216:\"TUMAKURU\",572223:\"TUMAKURU\",572220:\"TUMAKURU\",572222:\"TUMAKURU\",572224:\"TUMAKURU\",572211:\"TUMAKURU\",572111:\"TUMAKURU\",572212:\"TUMAKURU\",572213:\"TUMAKURU\",572117:\"TUMAKURU\",572140:\"TUMAKURU\",572130:\"TUMAKURU\",572106:\"TUMAKURU\",572227:\"TUMAKURU\",572121:\"TUMAKURU\",572118:\"TUMAKURU\",572116:\"TUMAKURU\",572225:\"TUMAKURU\",572175:\"TUMAKURU\",572113:\"TUMAKURU\",572112:\"TUMAKURU\",572217:\"TUMAKURU\",572137:\"TUMAKURU\",572123:\"TUMAKURU\",572119:\"TUMAKURU\",572228:\"TUMAKURU\",572214:\"TUMAKURU\",572133:\"TUMAKURU\",572215:\"TUMAKURU\",572114:\"TUMAKURU\",572201:\"TUMAKURU\",572104:\"TUMAKURU\",572219:\"TUMAKURU\",572218:\"TUMAKURU\",572107:\"TUMAKURU\",572136:\"TUMAKURU\",572126:\"TUMAKURU\",572135:\"TUMAKURU\",572120:\"TUMAKURU\",572125:\"TUMAKURU\",572132:\"TUMAKURU\",561202:\"TUMAKURU\",572128:\"TUMAKURU\",572124:\"TUMAKURU\",572115:\"TUMAKURU\",572127:\"TUMAKURU\",572141:\"TUMAKURU\",572138:\"TUMAKURU\",572221:\"TUMAKURU\",572142:\"TUMAKURU\",572226:\"TUMAKURU\",572139:\"TUMAKURU\",572102:\"TUMAKURU\",572168:\"TUMAKURU\",572122:\"TUMAKURU\",572134:\"TUMAKURU\",572103:\"TUMAKURU\",572105:\"TUMAKURU\",572101:\"TUMAKURU\",576225:\"UDUPI\",574119:\"UDUPI\",576226:\"UDUPI\",576283:\"UDUPI\",574118:\"UDUPI\",576233:\"UDUPI\",576227:\"UDUPI\",576103:\"UDUPI\",576211:\"UDUPI\",576212:\"UDUPI\",576124:\"UDUPI\",576213:\"UDUPI\",576222:\"UDUPI\",576107:\"UDUPI\",576223:\"UDUPI\",574103:\"UDUPI\",574117:\"UDUPI\",576224:\"UDUPI\",576115:\"UDUPI\",576234:\"UDUPI\",576101:\"UDUPI\",576210:\"UDUPI\",576113:\"UDUPI\",576221:\"UDUPI\",574115:\"UDUPI\",576232:\"UDUPI\",576214:\"UDUPI\",576215:\"UDUPI\",576230:\"UDUPI\",576104:\"UDUPI\",576102:\"UDUPI\",576201:\"UDUPI\",576216:\"UDUPI\",576247:\"UDUPI\",576235:\"UDUPI\",574113:\"UDUPI\",576229:\"UDUPI\",576217:\"UDUPI\",576219:\"UDUPI\",576282:\"UDUPI\",576218:\"UDUPI\",576122:\"UDUPI\",574106:\"UDUPI\",576114:\"UDUPI\",574105:\"UDUPI\",576120:\"UDUPI\",576231:\"UDUPI\",576105:\"UDUPI\",574116:\"UDUPI\",576220:\"UDUPI\",576106:\"UDUPI\",576108:\"UDUPI\",576257:\"UDUPI\",574111:\"UDUPI\",574112:\"UDUPI\",576228:\"UDUPI\",689696:\"KOLLAM\",689711:\"PATHANAMTHITTA\",689692:\"PATHANAMTHITTA\",691523:\"PATHANAMTHITTA\",691306:\"KOLLAM\",691508:\"KOLLAM\",690520:\"KOLLAM\",691309:\"KOLLAM\",691311:\"KOLLAM\",691525:\"PATHANAMTHITTA\",691307:\"KOLLAM\",690561:\"KOLLAM\",689674:\"PATHANAMTHITTA\",689648:\"PATHANAMTHITTA\",691555:\"PATHANAMTHITTA\",689662:\"PATHANAMTHITTA\",689649:\"PATHANAMTHITTA\",691333:\"KOLLAM\",691533:\"KOLLAM\",689691:\"PATHANAMTHITTA\",689693:\"PATHANAMTHITTA\",691312:\"KOLLAM\",691556:\"PATHANAMTHITTA\",689677:\"PATHANAMTHITTA\",689671:\"PATHANAMTHITTA\",689664:\"PATHANAMTHITTA\",689503:\"PATHANAMTHITTA\",689650:\"PATHANAMTHITTA\",689673:\"PATHANAMTHITTA\",689663:\"PATHANAMTHITTA\",691551:\"PATHANAMTHITTA\",691310:\"KOLLAM\",689668:\"PATHANAMTHITTA\",691552:\"KOLLAM\",689672:\"PATHANAMTHITTA\",689643:\"PATHANAMTHITTA\",691524:\"PATHANAMTHITTA\",691322:\"KOLLAM\",689656:\"PATHANAMTHITTA\",689625:\"PATHANAMTHITTA\",691526:\"PATHANAMTHITTA\",689675:\"PATHANAMTHITTA\",689667:\"PATHANAMTHITTA\",691553:\"PATHANAMTHITTA\",690522:\"KOLLAM\",691331:\"KOLLAM\",689694:\"PATHANAMTHITTA\",691308:\"KOLLAM\",690521:\"KOLLAM\",690540:\"KOLLAM\",689514:\"PATHANAMTHITTA\",691332:\"KOLLAM\",689502:\"PATHANAMTHITTA\",689653:\"PATHANAMTHITTA\",689654:\"PATHANAMTHITTA\",689641:\"PATHANAMTHITTA\",689661:\"PATHANAMTHITTA\",689695:\"KOLLAM\",689501:\"PATHANAMTHITTA\",689644:\"PATHANAMTHITTA\",689645:\"PATHANAMTHITTA\",689676:\"PATHANAMTHITTA\",689666:\"PATHANAMTHITTA\",689646:\"PATHANAMTHITTA\",689513:\"PATHANAMTHITTA\",691530:\"PATHANAMTHITTA\",689678:\"PATHANAMTHITTA\",689699:\"PATHANAMTHITTA\",689647:\"PATHANAMTHITTA\",691554:\"PATHANAMTHITTA\",689507:\"PATHANAMTHITTA\",689698:\"PATHANAMTHITTA\",689642:\"PATHANAMTHITTA\",691522:\"KOLLAM\",691305:\"KOLLAM\",689652:\"PATHANAMTHITTA\",691573:\"KOLLAM\",691579:\"KOLLAM\",691516:\"KOLLAM\",690573:\"KOLLAM\",691577:\"KOLLAM\",690547:\"KOLLAM\",691532:\"KOLLAM\",691505:\"KOLLAM\",691501:\"KOLLAM\",690546:\"KOLLAM\",690538:\"KOLLAM\",691602:\"KOLLAM\",691002:\"KOLLAM\",690542:\"KOLLAM\",691021:\"KOLLAM\",691559:\"KOLLAM\",691302:\"KOLLAM\",691534:\"KOLLAM\",691014:\"KOLLAM\",691536:\"KOLLAM\",691572:\"KOLLAM\",691583:\"KOLLAM\",691584:\"KOLLAM\",691601:\"KOLLAM\",691557:\"KOLLAM\",691510:\"KOLLAM\",691520:\"KOLLAM\",691543:\"KOLLAM\",691578:\"KOLLAM\",690525:\"KOLLAM\",691531:\"KOLLAM\",691502:\"KOLLAM\",690523:\"KOLLAM\",691011:\"KOLLAM\",691507:\"KOLLAM\",691008:\"KOLLAM\",691535:\"KOLLAM\",691303:\"KOLLAM\",691560:\"KOLLAM\",690519:\"KOLLAM\",691004:\"KOLLAM\",691576:\"KOLLAM\",690518:\"KOLLAM\",690544:\"KOLLAM\",691537:\"KOLLAM\",691003:\"KOLLAM\",691015:\"KOLLAM\",691574:\"KOLLAM\",691590:\"KOLLAM\",691538:\"KOLLAM\",690536:\"KOLLAM\",691001:\"KOLLAM\",691013:\"KOLLAM\",691541:\"KOLLAM\",691020:\"KOLLAM\",691506:\"KOLLAM\",691571:\"KOLLAM\",691512:\"KOLLAM\",691521:\"KOLLAM\",691503:\"KOLLAM\",691509:\"KOLLAM\",690526:\"KOLLAM\",690574:\"KOLLAM\",691585:\"KOLLAM\",691010:\"KOLLAM\",691515:\"KOLLAM\",691334:\"KOLLAM\",691582:\"KOLLAM\",691527:\"KOLLAM\",690524:\"KOLLAM\",691566:\"KOLLAM\",691006:\"KOLLAM\",691301:\"KOLLAM\",691504:\"KOLLAM\",691500:\"KOLLAM\",691304:\"KOLLAM\",690539:\"KOLLAM\",691581:\"KOLLAM\",691005:\"KOLLAM\",691007:\"KOLLAM\",691016:\"KOLLAM\",691319:\"KOLLAM\",691009:\"KOLLAM\",691012:\"KOLLAM\",691019:\"KOLLAM\",691589:\"KOLLAM\",690528:\"KOLLAM\",691540:\"KOLLAM\",691511:\"KOLLAM\",689126:\"ALAPPUZHA\",689113:\"PATHANAMTHITTA\",689112:\"ALAPPUZHA\",689572:\"ALAPPUZHA\",689122:\"ALAPPUZHA\",689585:\"PATHANAMTHITTA\",689582:\"PATHANAMTHITTA\",689533:\"ALAPPUZHA\",689123:\"ALAPPUZHA\",689612:\"PATHANAMTHITTA\",689611:\"PATHANAMTHITTA\",689510:\"ALAPPUZHA\",689586:\"PATHANAMTHITTA\",689573:\"ALAPPUZHA\",689121:\"ALAPPUZHA\",689594:\"PATHANAMTHITTA\",689511:\"ALAPPUZHA\",689549:\"PATHANAMTHITTA\",689103:\"PATHANAMTHITTA\",686547:\"PATHANAMTHITTA\",689614:\"PATHANAMTHITTA\",689532:\"PATHANAMTHITTA\",689109:\"ALAPPUZHA\",689542:\"PATHANAMTHITTA\",689583:\"PATHANAMTHITTA\",689547:\"PATHANAMTHITTA\",689621:\"PATHANAMTHITTA\",689124:\"ALAPPUZHA\",689102:\"PATHANAMTHITTA\",689108:\"PATHANAMTHITTA\",689615:\"PATHANAMTHITTA\",689571:\"ALAPPUZHA\",689105:\"PATHANAMTHITTA\",689543:\"PATHANAMTHITTA\",689587:\"PATHANAMTHITTA\",689595:\"ALAPPUZHA\",689531:\"PATHANAMTHITTA\",689545:\"PATHANAMTHITTA\",689541:\"PATHANAMTHITTA\",689588:\"PATHANAMTHITTA\",689581:\"PATHANAMTHITTA\",689546:\"PATHANAMTHITTA\",689548:\"PATHANAMTHITTA\",689550:\"PATHANAMTHITTA\",689106:\"PATHANAMTHITTA\",689584:\"PATHANAMTHITTA\",689591:\"PATHANAMTHITTA\",689107:\"PATHANAMTHITTA\",689574:\"ALAPPUZHA\",689544:\"PATHANAMTHITTA\",689110:\"PATHANAMTHITTA\",689589:\"PATHANAMTHITTA\",689551:\"PATHANAMTHITTA\",689506:\"ALAPPUZHA\",689626:\"PATHANAMTHITTA\",689592:\"PATHANAMTHITTA\",689602:\"PATHANAMTHITTA\",689613:\"PATHANAMTHITTA\",689115:\"PATHANAMTHITTA\",689597:\"PATHANAMTHITTA\",689101:\"PATHANAMTHITTA\",689111:\"PATHANAMTHITTA\",689104:\"PATHANAMTHITTA\",689590:\"PATHANAMTHITTA\",695614:\"THIRUVANANTHAPURAM\",695102:\"THIRUVANANTHAPURAM\",695607:\"THIRUVANANTHAPURAM\",695606:\"THIRUVANANTHAPURAM\",695306:\"THIRUVANANTHAPURAM\",695029:\"THIRUVANANTHAPURAM\",695584:\"THIRUVANANTHAPURAM\",695309:\"THIRUVANANTHAPURAM\",695023:\"THIRUVANANTHAPURAM\",695101:\"THIRUVANANTHAPURAM\",695103:\"THIRUVANANTHAPURAM\",695310:\"THIRUVANANTHAPURAM\",695305:\"THIRUVANANTHAPURAM\",695008:\"THIRUVANANTHAPURAM\",695609:\"THIRUVANANTHAPURAM\",695024:\"THIRUVANANTHAPURAM\",695301:\"THIRUVANANTHAPURAM\",695601:\"THIRUVANANTHAPURAM\",695615:\"THIRUVANANTHAPURAM\",695587:\"THIRUVANANTHAPURAM\",695142:\"THIRUVANANTHAPURAM\",695011:\"THIRUVANANTHAPURAM\",695304:\"THIRUVANANTHAPURAM\",695104:\"THIRUVANANTHAPURAM\",695311:\"THIRUVANANTHAPURAM\",695004:\"THIRUVANANTHAPURAM\",695141:\"THIRUVANANTHAPURAM\",695307:\"THIRUVANANTHAPURAM\",695605:\"THIRUVANANTHAPURAM\",695608:\"THIRUVANANTHAPURAM\",695021:\"THIRUVANANTHAPURAM\",695583:\"THIRUVANANTHAPURAM\",695581:\"THIRUVANANTHAPURAM\",695144:\"THIRUVANANTHAPURAM\",695582:\"THIRUVANANTHAPURAM\",695612:\"THIRUVANANTHAPURAM\",695604:\"THIRUVANANTHAPURAM\",695313:\"THIRUVANANTHAPURAM\",695602:\"THIRUVANANTHAPURAM\",695611:\"THIRUVANANTHAPURAM\",695015:\"THIRUVANANTHAPURAM\",695603:\"THIRUVANANTHAPURAM\",695312:\"THIRUVANANTHAPURAM\",695610:\"THIRUVANANTHAPURAM\",695302:\"THIRUVANANTHAPURAM\",695146:\"THIRUVANANTHAPURAM\",695025:\"THIRUVANANTHAPURAM\",695145:\"THIRUVANANTHAPURAM\",695589:\"THIRUVANANTHAPURAM\",695143:\"THIRUVANANTHAPURAM\",695316:\"THIRUVANANTHAPURAM\",695586:\"THIRUVANANTHAPURAM\",695028:\"THIRUVANANTHAPURAM\",695303:\"THIRUVANANTHAPURAM\",695033:\"THIRUVANANTHAPURAM\",695588:\"THIRUVANANTHAPURAM\",695585:\"THIRUVANANTHAPURAM\",695017:\"THIRUVANANTHAPURAM\",695001:\"THIRUVANANTHAPURAM\",695007:\"THIRUVANANTHAPURAM\",695036:\"THIRUVANANTHAPURAM\",695016:\"THIRUVANANTHAPURAM\",695022:\"THIRUVANANTHAPURAM\",695034:\"THIRUVANANTHAPURAM\",695317:\"THIRUVANANTHAPURAM\",695308:\"THIRUVANANTHAPURAM\",695035:\"THIRUVANANTHAPURAM\",695318:\"THIRUVANANTHAPURAM\",695572:\"THIRUVANANTHAPURAM\",695122:\"THIRUVANANTHAPURAM\",695005:\"THIRUVANANTHAPURAM\",695026:\"THIRUVANANTHAPURAM\",695505:\"THIRUVANANTHAPURAM\",695541:\"THIRUVANANTHAPURAM\",695551:\"THIRUVANANTHAPURAM\",695124:\"THIRUVANANTHAPURAM\",695123:\"THIRUVANANTHAPURAM\",695032:\"THIRUVANANTHAPURAM\",695525:\"THIRUVANANTHAPURAM\",695564:\"THIRUVANANTHAPURAM\",695126:\"THIRUVANANTHAPURAM\",695542:\"THIRUVANANTHAPURAM\",695009:\"THIRUVANANTHAPURAM\",695502:\"THIRUVANANTHAPURAM\",695501:\"THIRUVANANTHAPURAM\",695522:\"THIRUVANANTHAPURAM\",695132:\"THIRUVANANTHAPURAM\",695504:\"THIRUVANANTHAPURAM\",695013:\"THIRUVANANTHAPURAM\",695014:\"THIRUVANANTHAPURAM\",695563:\"THIRUVANANTHAPURAM\",695125:\"THIRUVANANTHAPURAM\",695503:\"THIRUVANANTHAPURAM\",695562:\"THIRUVANANTHAPURAM\",695019:\"THIRUVANANTHAPURAM\",695561:\"THIRUVANANTHAPURAM\",695040:\"THIRUVANANTHAPURAM\",695506:\"THIRUVANANTHAPURAM\",695043:\"THIRUVANANTHAPURAM\",695574:\"THIRUVANANTHAPURAM\",695042:\"THIRUVANANTHAPURAM\",695512:\"THIRUVANANTHAPURAM\",695524:\"THIRUVANANTHAPURAM\",695030:\"THIRUVANANTHAPURAM\",695002:\"THIRUVANANTHAPURAM\",695003:\"THIRUVANANTHAPURAM\",695526:\"THIRUVANANTHAPURAM\",695099:\"THIRUVANANTHAPURAM\",695523:\"THIRUVANANTHAPURAM\",695571:\"THIRUVANANTHAPURAM\",695568:\"THIRUVANANTHAPURAM\",695521:\"THIRUVANANTHAPURAM\",695527:\"THIRUVANANTHAPURAM\",695543:\"THIRUVANANTHAPURAM\",695570:\"THIRUVANANTHAPURAM\",695573:\"THIRUVANANTHAPURAM\",695133:\"THIRUVANANTHAPURAM\",695528:\"THIRUVANANTHAPURAM\",695020:\"THIRUVANANTHAPURAM\",695121:\"THIRUVANANTHAPURAM\",695507:\"THIRUVANANTHAPURAM\",695027:\"THIRUVANANTHAPURAM\",695575:\"THIRUVANANTHAPURAM\",695018:\"THIRUVANANTHAPURAM\",695508:\"THIRUVANANTHAPURAM\",695012:\"THIRUVANANTHAPURAM\",695513:\"THIRUVANANTHAPURAM\",695038:\"THIRUVANANTHAPURAM\",695010:\"THIRUVANANTHAPURAM\",695006:\"THIRUVANANTHAPURAM\",695547:\"THIRUVANANTHAPURAM\",695134:\"THIRUVANANTHAPURAM\",673575:\"WAYANAD\",673586:\"KOZHIKODE\",673602:\"KOZHIKODE\",673579:\"WAYANAD\",673593:\"WAYANAD\",673603:\"KOZHIKODE\",673028:\"KOZHIKODE\",673596:\"WAYANAD\",673572:\"KOZHIKODE\",673632:\"MALAPPURAM\",673592:\"WAYANAD\",673015:\"KOZHIKODE\",673018:\"KOZHIKODE\",673032:\"KOZHIKODE\",673004:\"KOZHIKODE\",673020:\"KOZHIKODE\",673001:\"KOZHIKODE\",673008:\"KOZHIKODE\",673002:\"KOZHIKODE\",673301:\"KOZHIKODE\",673573:\"KOZHIKODE\",673601:\"KOZHIKODE\",673595:\"WAYANAD\",673616:\"KOZHIKODE\",673571:\"KOZHIKODE\",673581:\"WAYANAD\",673577:\"WAYANAD\",673580:\"KOZHIKODE\",673122:\"WAYANAD\",673661:\"KOZHIKODE\",673655:\"KOZHIKODE\",673017:\"KOZHIKODE\",673123:\"WAYANAD\",673005:\"KOZHIKODE\",673303:\"KOZHIKODE\",673006:\"KOZHIKODE\",673585:\"KOZHIKODE\",673631:\"KOZHIKODE\",673016:\"KOZHIKODE\",673014:\"KOZHIKODE\",673570:\"KOZHIKODE\",673302:\"KOZHIKODE\",673604:\"KOZHIKODE\",673611:\"KOZHIKODE\",673613:\"KOZHIKODE\",673003:\"KOZHIKODE\",673582:\"KOZHIKODE\",673121:\"WAYANAD\",673124:\"KOZHIKODE\",673591:\"WAYANAD\",673010:\"KOZHIKODE\",673007:\"KOZHIKODE\",673051:\"KOZHIKODE\",673576:\"WAYANAD\",673009:\"KOZHIKODE\",673328:\"KOZHIKODE\",673012:\"KOZHIKODE\",673011:\"KOZHIKODE\",673027:\"KOZHIKODE\",673019:\"KOZHIKODE\",673633:\"MALAPPURAM\",673021:\"KOZHIKODE\",673029:\"KOZHIKODE\",670571:\"KANNUR\",670008:\"KANNUR\",670331:\"KANNUR\",670612:\"KANNUR\",670307:\"KANNUR\",670582:\"KANNUR\",670143:\"KANNUR\",670561:\"KANNUR\",670006:\"KANNUR\",670009:\"KANNUR\",670622:\"KANNUR\",670013:\"KANNUR\",670621:\"KANNUR\",670014:\"KANNUR\",670633:\"KANNUR\",670592:\"KANNUR\",670604:\"KANNUR\",670631:\"KANNUR\",670632:\"KANNUR\",670581:\"KANNUR\",670301:\"KANNUR\",670601:\"KANNUR\",670511:\"KANNUR\",670011:\"KANNUR\",670502:\"KANNUR\",670142:\"KANNUR\",670002:\"KANNUR\",670353:\"KANNUR\",670591:\"KANNUR\",670327:\"KANNUR\",670595:\"KANNUR\",670306:\"KANNUR\",670308:\"KANNUR\",670521:\"KANNUR\",670309:\"KANNUR\",670310:\"KANNUR\",670334:\"KANNUR\",670613:\"KANNUR\",670593:\"KANNUR\",670504:\"KANNUR\",670005:\"KANNUR\",670562:\"KANNUR\",670602:\"KANNUR\",670012:\"KANNUR\",670003:\"KANNUR\",670017:\"KANNUR\",670001:\"KANNUR\",670567:\"KANNUR\",670007:\"KANNUR\",670304:\"KANNUR\",670611:\"KANNUR\",670501:\"KANNUR\",670325:\"KANNUR\",670302:\"KANNUR\",670594:\"KANNUR\",670563:\"KANNUR\",670305:\"KANNUR\",670004:\"KANNUR\",670503:\"KANNUR\",670358:\"KANNUR\",670303:\"KANNUR\",670141:\"KANNUR\",670018:\"KANNUR\",670010:\"KANNUR\",671351:\"KASARGOD\",671531:\"KASARGOD\",671121:\"KASARGOD\",671543:\"KASARGOD\",671123:\"KASARGOD\",671322:\"KASARGOD\",671323:\"KASARGOD\",671321:\"KASARGOD\",671551:\"KASARGOD\",671533:\"KASARGOD\",671552:\"KASARGOD\",671541:\"KASARGOD\",671319:\"KASARGOD\",671348:\"KASARGOD\",671124:\"KASARGOD\",671316:\"KASARGOD\",671318:\"KASARGOD\",671314:\"KASARGOD\",671317:\"KASARGOD\",671532:\"KASARGOD\",671313:\"KASARGOD\",671326:\"KASARGOD\",671534:\"KASARGOD\",671324:\"KASARGOD\",671310:\"KASARGOD\",671311:\"KASARGOD\",671542:\"KASARGOD\",671315:\"KASARGOD\",671312:\"KASARGOD\",671320:\"Kasaragod\",671122:\"KASARGOD\",676525:\"MALAPPURAM\",673641:\"MALAPPURAM\",679357:\"MALAPPURAM\",679332:\"MALAPPURAM\",679339:\"MALAPPURAM\",676123:\"MALAPPURAM\",679322:\"MALAPPURAM\",676509:\"MALAPPURAM\",673637:\"MALAPPURAM\",679321:\"MALAPPURAM\",673639:\"MALAPPURAM\",673638:\"MALAPPURAM\",679341:\"MALAPPURAM\",679329:\"MALAPPURAM\",679334:\"MALAPPURAM\",673647:\"MALAPPURAM\",673635:\"MALAPPURAM\",676541:\"MALAPPURAM\",679328:\"MALAPPURAM\",676504:\"MALAPPURAM\",679323:\"MALAPPURAM\",673634:\"MALAPPURAM\",676521:\"MALAPPURAM\",679327:\"MALAPPURAM\",679325:\"MALAPPURAM\",673636:\"MALAPPURAM\",679340:\"MALAPPURAM\",673645:\"MALAPPURAM\",676519:\"MALAPPURAM\",679331:\"MALAPPURAM\",679326:\"MALAPPURAM\",676122:\"MALAPPURAM\",676523:\"MALAPPURAM\",679324:\"MALAPPURAM\",679333:\"MALAPPURAM\",679330:\"MALAPPURAM\",673640:\"MALAPPURAM\",676522:\"MALAPPURAM\",679338:\"MALAPPURAM\",676506:\"MALAPPURAM\",676507:\"MALAPPURAM\",676505:\"MALAPPURAM\",676542:\"MALAPPURAM\",676121:\"MALAPPURAM\",676517:\"MALAPPURAM\",673642:\"MALAPPURAM\",679503:\"PALAKKAD\",678581:\"PALAKKAD\",679302:\"PALAKKAD\",678601:\"PALAKKAD\",678633:\"PALAKKAD\",679303:\"PALAKKAD\",679512:\"PALAKKAD\",679501:\"PALAKKAD\",679551:\"PALAKKAD\",679552:\"PALAKKAD\",678583:\"PALAKKAD\",679513:\"PALAKKAD\",679505:\"PALAKKAD\",679536:\"PALAKKAD\",679535:\"PALAKKAD\",678762:\"PALAKKAD\",679521:\"PALAKKAD\",679522:\"PALAKKAD\",679336:\"PALAKKAD\",679305:\"PALAKKAD\",678582:\"PALAKKAD\",679511:\"PALAKKAD\",679337:\"PALAKKAD\",678595:\"PALAKKAD\",679308:\"PALAKKAD\",679335:\"PALAKKAD\",679123:\"PALAKKAD\",678591:\"PALAKKAD\",679515:\"PALAKKAD\",678596:\"PALAKKAD\",679313:\"PALAKKAD\",679122:\"PALAKKAD\",679514:\"PALAKKAD\",679104:\"PALAKKAD\",679506:\"PALAKKAD\",678597:\"PALAKKAD\",679504:\"PALAKKAD\",679523:\"PALAKKAD\",679307:\"PALAKKAD\",678632:\"PALAKKAD\",679533:\"PALAKKAD\",679534:\"PALAKKAD\",679554:\"PALAKKAD\",679553:\"PALAKKAD\",679301:\"PALAKKAD\",679306:\"PALAKKAD\",678593:\"PALAKKAD\",679502:\"PALAKKAD\",679101:\"PALAKKAD\",679103:\"PALAKKAD\",679121:\"PALAKKAD\",678598:\"PALAKKAD\",679304:\"PALAKKAD\",679102:\"PALAKKAD\",679516:\"PALAKKAD\",679309:\"PALAKKAD\",678008:\"PALAKKAD\",678506:\"PALAKKAD\",678541:\"PALAKKAD\",678011:\"PALAKKAD\",678651:\"PALAKKAD\",678682:\"PALAKKAD\",678554:\"PALAKKAD\",678544:\"PALAKKAD\",678556:\"PALAKKAD\",678683:\"PALAKKAD\",678510:\"PALAKKAD\",678508:\"PALAKKAD\",678007:\"PALAKKAD\",678624:\"PALAKKAD\",678611:\"PALAKKAD\",678573:\"PALAKKAD\",678102:\"PALAKKAD\",678703:\"PALAKKAD\",678631:\"PALAKKAD\",678572:\"PALAKKAD\",678721:\"PALAKKAD\",678702:\"PALAKKAD\",678706:\"PALAKKAD\",678704:\"PALAKKAD\",678104:\"PALAKKAD\",678101:\"PALAKKAD\",678005:\"PALAKKAD\",678574:\"PALAKKAD\",678009:\"PALAKKAD\",678622:\"PALAKKAD\",678684:\"PALAKKAD\",678546:\"PALAKKAD\",678555:\"PALAKKAD\",678502:\"PALAKKAD\",678507:\"PALAKKAD\",678512:\"PALAKKAD\",678006:\"PALAKKAD\",678613:\"PALAKKAD\",678003:\"PALAKKAD\",678621:\"PALAKKAD\",678623:\"PALAKKAD\",678701:\"PALAKKAD\",678686:\"PATHANAMTHITTA\",678534:\"PALAKKAD\",678551:\"PALAKKAD\",678532:\"PALAKKAD\",678503:\"PATHANAMTHITTA\",678542:\"PALAKKAD\",678012:\"PALAKKAD\",678543:\"PALAKKAD\",678641:\"PALAKKAD\",678642:\"PALAKKAD\",678612:\"PALAKKAD\",678004:\"PALAKKAD\",678501:\"PALAKKAD\",678681:\"PALAKKAD\",678732:\"PALAKKAD\",678557:\"PALAKKAD\",678688:\"PALAKKAD\",678013:\"PALAKKAD\",678687:\"PALAKKAD\",678685:\"PALAKKAD\",678571:\"PALAKKAD\",678533:\"PALAKKAD\",678705:\"PALAKKAD\",678592:\"PALAKKAD\",678594:\"PALAKKAD\",678553:\"PALAKKAD\",678722:\"PALAKKAD\",678002:\"PALAKKAD\",678014:\"PALAKKAD\",678001:\"PALAKKAD\",678731:\"PALAKKAD\",678505:\"PALAKKAD\",678661:\"PALAKKAD\",678531:\"PALAKKAD\",678552:\"PALAKKAD\",678545:\"PALAKKAD\",678010:\"PALAKKAD\",678103:\"PALAKKAD\",678671:\"PALAKKAD\",678504:\"PALAKKAD\",670650:\"KANNUR\",670644:\"WAYANAD\",670651:\"KANNUR\",670701:\"KANNUR\",670706:\"KANNUR\",670672:\"KANNUR\",670645:\"WAYANAD\",670705:\"KANNUR\",670704:\"KANNUR\",670673:\"KANNUR\",670721:\"WAYANAD\",670674:\"KANNUR\",670643:\"KANNUR\",670646:\"WAYANAD\",670102:\"KANNUR\",670694:\"KANNUR\",670702:\"KANNUR\",670692:\"KANNUR\",670104:\"KANNUR\",670693:\"KANNUR\",670106:\"KANNUR\",670107:\"KANNUR\",670642:\"KANNUR\",670663:\"KANNUR\",670703:\"KANNUR\",670676:\"KANNUR\",673316:\"KANNUR\",670731:\"WAYANAD\",670649:\"KANNUR\",670675:\"KANNUR\",670691:\"KANNUR\",670741:\"KANNUR\",670661:\"KANNUR\",670103:\"KANNUR\",670662:\"KANNUR\",670105:\"KANNUR\",673311:\"KANNUR\",673313:\"KANNUR\",670671:\"KANNUR\",673312:\"KANNUR\",670641:\"KANNUR\",670101:\"KANNUR\",676305:\"MALAPPURAM\",679585:\"MALAPPURAM\",676102:\"MALAPPURAM\",676301:\"MALAPPURAM\",676303:\"MALAPPURAM\",676312:\"MALAPPURAM\",679573:\"MALAPPURAM\",676106:\"MALAPPURAM\",679576:\"MALAPPURAM\",679580:\"MALAPPURAM\",676503:\"MALAPPURAM\",676561:\"MALAPPURAM\",676306:\"MALAPPURAM\",676304:\"MALAPPURAM\",676510:\"MALAPPURAM\",679575:\"MALAPPURAM\",676319:\"MALAPPURAM\",676508:\"MALAPPURAM\",676108:\"MALAPPURAM\",676501:\"MALAPPURAM\",676552:\"MALAPPURAM\",679587:\"MALAPPURAM\",679579:\"MALAPPURAM\",679572:\"MALAPPURAM\",676103:\"MALAPPURAM\",673314:\"MALAPPURAM\",676553:\"MALAPPURAM\",679582:\"MALAPPURAM\",679586:\"MALAPPURAM\",676551:\"MALAPPURAM\",679584:\"MALAPPURAM\",679571:\"MALAPPURAM\",676307:\"MALAPPURAM\",676309:\"MALAPPURAM\",679591:\"MALAPPURAM\",676562:\"MALAPPURAM\",676105:\"MALAPPURAM\",679581:\"MALAPPURAM\",676528:\"MALAPPURAM\",679574:\"MALAPPURAM\",676311:\"MALAPPURAM\",679578:\"MALAPPURAM\",676320:\"MALAPPURAM\",676109:\"MALAPPURAM\",676302:\"MALAPPURAM\",676317:\"MALAPPURAM\",676502:\"MALAPPURAM\",679577:\"MALAPPURAM\",679583:\"MALAPPURAM\",676107:\"MALAPPURAM\",676101:\"MALAPPURAM\",676104:\"MALAPPURAM\",673517:\"KOZHIKODE\",673508:\"KOZHIKODE\",673513:\"KOZHIKODE\",673317:\"KOZHIKODE\",673620:\"KOZHIKODE\",673507:\"KOZHIKODE\",673315:\"KOZHIKODE\",673528:\"KOZHIKODE\",673524:\"KOZHIKODE\",673614:\"KOZHIKODE\",673541:\"KOZHIKODE\",673521:\"KOZHIKODE\",673309:\"KOZHIKODE\",673612:\"KOZHIKODE\",673526:\"KOZHIKODE\",673509:\"KOZHIKODE\",673506:\"KOZHIKODE\",673306:\"KOZHIKODE\",673304:\"KOZHIKODE\",673104:\"KOZHIKODE\",673525:\"KOZHIKODE\",673527:\"KOZHIKODE\",673529:\"KOZHIKODE\",673308:\"KOZHIKODE\",673106:\"KOZHIKODE\",673502:\"KOZHIKODE\",673574:\"KOZHIKODE\",673501:\"KOZHIKODE\",673505:\"KOZHIKODE\",673523:\"KOZHIKODE\",673504:\"KOZHIKODE\",673323:\"KOZHIKODE\",673615:\"KOZHIKODE\",673102:\"KOZHIKODE\",673542:\"KOZHIKODE\",673307:\"KOZHIKODE\",673522:\"KOZHIKODE\",673503:\"KOZHIKODE\",673305:\"KOZHIKODE\",673310:\"MAHE\",673105:\"KOZHIKODE\",673103:\"KOZHIKODE\",673101:\"KOZHIKODE\",688012:\"ALAPPUZHA\",688001:\"ALAPPUZHA\",688011:\"ALAPPUZHA\",688005:\"ALAPPUZHA\",688007:\"ALAPPUZHA\",688561:\"ALAPPUZHA\",688531:\"ALAPPUZHA\",688535:\"ALAPPUZHA\",688534:\"ALAPPUZHA\",688530:\"ALAPPUZHA\",688538:\"ALAPPUZHA\",688006:\"ALAPPUZHA\",688505:\"ALAPPUZHA\",688537:\"ALAPPUZHA\",688502:\"ALAPPUZHA\",688501:\"ALAPPUZHA\",688506:\"ALAPPUZHA\",688524:\"ALAPPUZHA\",688539:\"ALAPPUZHA\",688562:\"ALAPPUZHA\",688529:\"ALAPPUZHA\",688522:\"ALAPPUZHA\",688582:\"ALAPPUZHA\",688504:\"ALAPPUZHA\",688527:\"ALAPPUZHA\",688541:\"ALAPPUZHA\",688533:\"ALAPPUZHA\",688526:\"ALAPPUZHA\",688523:\"ALAPPUZHA\",688503:\"ALAPPUZHA\",688525:\"ALAPPUZHA\",688540:\"ALAPPUZHA\",688009:\"ALAPPUZHA\",688521:\"ALAPPUZHA\",688570:\"ALAPPUZHA\",688014:\"ALAPPUZHA\",688004:\"ALAPPUZHA\",688003:\"ALAPPUZHA\",688013:\"ALAPPUZHA\",688002:\"ALAPPUZHA\",688008:\"ALAPPUZHA\",688532:\"ALAPPUZHA\",688528:\"ALAPPUZHA\",688555:\"ALAPPUZHA\",688536:\"ALAPPUZHA\",683544:\"ERNAKULAM\",683541:\"ERNAKULAM\",686692:\"ERNAKULAM\",683579:\"ERNAKULAM\",683511:\"ERNAKULAM\",683556:\"ERNAKULAM\",683101:\"ERNAKULAM\",683581:\"ERNAKULAM\",686667:\"ERNAKULAM\",683572:\"ERNAKULAM\",683573:\"ERNAKULAM\",686672:\"ERNAKULAM\",683545:\"ERNAKULAM\",683549:\"ERNAKULAM\",683585:\"ERNAKULAM\",686670:\"ERNAKULAM\",686668:\"ERNAKULAM\",683577:\"ERNAKULAM\",686681:\"ERNAKULAM\",683502:\"ERNAKULAM\",686671:\"ERNAKULAM\",683512:\"ERNAKULAM\",683578:\"ERNAKULAM\",683514:\"ERNAKULAM\",686691:\"ERNAKULAM\",683546:\"ERNAKULAM\",683571:\"ERNAKULAM\",683102:\"ERNAKULAM\",683561:\"ERNAKULAM\",686662:\"ERNAKULAM\",686665:\"ERNAKULAM\",683594:\"ERNAKULAM\",686673:\"ERNAKULAM\",683112:\"ERNAKULAM\",683513:\"ERNAKULAM\",683516:\"ERNAKULAM\",683548:\"ERNAKULAM\",682311:\"ERNAKULAM\",683519:\"ERNAKULAM\",686664:\"ERNAKULAM\",683574:\"ERNAKULAM\",683575:\"ERNAKULAM\",683576:\"ERNAKULAM\",683562:\"ERNAKULAM\",686663:\"ERNAKULAM\",683111:\"ERNAKULAM\",683518:\"ERNAKULAM\",686666:\"ERNAKULAM\",683565:\"ERNAKULAM\",683522:\"ERNAKULAM\",682316:\"ERNAKULAM\",683587:\"ERNAKULAM\",686693:\"ERNAKULAM\",683520:\"ERNAKULAM\",683105:\"ERNAKULAM\",686669:\"ERNAKULAM\",683589:\"ERNAKULAM\",683547:\"ERNAKULAM\",683110:\"ERNAKULAM\",686661:\"ERNAKULAM\",683563:\"ERNAKULAM\",683550:\"ERNAKULAM\",683515:\"ERNAKULAM\",683542:\"ERNAKULAM\",683543:\"ERNAKULAM\",683580:\"ERNAKULAM\",683106:\"ERNAKULAM\",683108:\"ERNAKULAM\",683521:\"ERNAKULAM\",683517:\"ERNAKULAM\",686544:\"KOTTAYAM\",686546:\"KOTTAYAM\",686508:\"KOTTAYAM\",686503:\"KOTTAYAM\",686501:\"KOTTAYAM\",686517:\"KOTTAYAM\",686540:\"KOTTAYAM\",686101:\"KOTTAYAM\",686106:\"KOTTAYAM\",686533:\"KOTTAYAM\",686510:\"PATHANAMTHITTA\",686520:\"KOTTAYAM\",686585:\"KOTTAYAM\",686506:\"KOTTAYAM\",686543:\"KOTTAYAM\",686531:\"KOTTAYAM\",686519:\"KOTTAYAM\",686512:\"KOTTAYAM\",686555:\"KOTTAYAM\",686534:\"ALAPPUZHA\",686541:\"KOTTAYAM\",686514:\"KOTTAYAM\",686539:\"KOTTAYAM\",686509:\"KOTTAYAM\",686102:\"KOTTAYAM\",686535:\"KOTTAYAM\",686515:\"KOTTAYAM\",686507:\"KOTTAYAM\",686513:\"KOTTAYAM\",686522:\"KOTTAYAM\",686502:\"KOTTAYAM\",686518:\"KOTTAYAM\",686105:\"KOTTAYAM\",686103:\"KOTTAYAM\",686511:\"PATHANAMTHITTA\",686532:\"KOTTAYAM\",686104:\"KOTTAYAM\",686536:\"KOTTAYAM\",686542:\"KOTTAYAM\",686548:\"KOTTAYAM\",686538:\"KOTTAYAM\",686545:\"KOTTAYAM\",686537:\"KOTTAYAM\",686521:\"KOTTAYAM\",686505:\"KOTTAYAM\",686504:\"KOTTAYAM\",682041:\"ERNAKULAM\",682303:\"ERNAKULAM\",682302:\"ERNAKULAM\",682315:\"ERNAKULAM\",682008:\"ERNAKULAM\",682313:\"ERNAKULAM\",682501:\"ERNAKULAM\",682508:\"ERNAKULAM\",682308:\"ERNAKULAM\",682033:\"ERNAKULAM\",682034:\"ERNAKULAM\",682027:\"ERNAKULAM\",682312:\"ERNAKULAM\",682037:\"ERNAKULAM\",682010:\"ERNAKULAM\",682024:\"ERNAKULAM\",682502:\"ERNAKULAM\",682026:\"ERNAKULAM\",682503:\"ERNAKULAM\",682035:\"ERNAKULAM\",682031:\"ERNAKULAM\",682011:\"ERNAKULAM\",682018:\"ERNAKULAM\",682306:\"ERNAKULAM\",683503:\"ERNAKULAM\",682042:\"ERNAKULAM\",682050:\"ERNAKULAM\",682309:\"ERNAKULAM\",682020:\"ERNAKULAM\",682305:\"ERNAKULAM\",682030:\"ERNAKULAM\",683104:\"ERNAKULAM\",682017:\"ERNAKULAM\",682310:\"ERNAKULAM\",682001:\"ERNAKULAM\",682016:\"ERNAKULAM\",682004:\"ERNAKULAM\",682301:\"ERNAKULAM\",682051:\"ERNAKULAM\",682022:\"ERNAKULAM\",682317:\"ERNAKULAM\",682506:\"ERNAKULAM\",682007:\"ERNAKULAM\",683501:\"ERNAKULAM\",682511:\"ERNAKULAM\",682304:\"ERNAKULAM\",682029:\"ERNAKULAM\",682002:\"ERNAKULAM\",682314:\"ERNAKULAM\",682504:\"ERNAKULAM\",682507:\"ERNAKULAM\",682307:\"ERNAKULAM\",682505:\"ERNAKULAM\",682509:\"ERNAKULAM\",682040:\"ERNAKULAM\",682009:\"ERNAKULAM\",682012:\"ERNAKULAM\",682025:\"ERNAKULAM\",682006:\"ERNAKULAM\",682036:\"ERNAKULAM\",682015:\"ERNAKULAM\",682038:\"ERNAKULAM\",682039:\"ERNAKULAM\",682032:\"ERNAKULAM\",682013:\"ERNAKULAM\",682005:\"ERNAKULAM\",682021:\"ERNAKULAM\",682023:\"ERNAKULAM\",682028:\"ERNAKULAM\",682019:\"ERNAKULAM\",682003:\"ERNAKULAM\",685561:\"IDUKKI\",685590:\"IDUKKI\",685588:\"IDUKKI\",685606:\"IDUKKI\",685509:\"IDUKKI\",685595:\"IDUKKI\",685512:\"IDUKKI\",685565:\"IDUKKI\",685535:\"IDUKKI\",685613:\"IDUKKI\",685585:\"IDUKKI\",685515:\"IDUKKI\",685591:\"IDUKKI\",685608:\"IDUKKI\",685533:\"IDUKKI\",685619:\"IDUKKI\",685507:\"IDUKKI\",685552:\"IDUKKI\",685514:\"IDUKKI\",685566:\"IDUKKI\",685554:\"IDUKKI\",685614:\"IDUKKI\",685501:\"IDUKKI\",685553:\"IDUKKI\",685581:\"IDUKKI\",685618:\"IDUKKI\",685551:\"IDUKKI\",685589:\"IDUKKI\",685612:\"IDUKKI\",685615:\"IDUKKI\",685587:\"IDUKKI\",685605:\"IDUKKI\",685531:\"IDUKKI\",685602:\"IDUKKI\",685603:\"IDUKKI\",685607:\"IDUKKI\",685562:\"IDUKKI\",685532:\"IDUKKI\",685511:\"IDUKKI\",685620:\"IDUKKI\",685505:\"IDUKKI\",685586:\"IDUKKI\",685601:\"IDUKKI\",685508:\"IDUKKI\",685582:\"IDUKKI\",685604:\"IDUKKI\",685563:\"IDUKKI\",685503:\"IDUKKI\",685583:\"IDUKKI\",685609:\"IDUKKI\",685616:\"IDUKKI\",685571:\"IDUKKI\",685584:\"IDUKKI\",680302:\"THRISSUR\",680741:\"THRISSUR\",680683:\"THRISSUR\",680305:\"THRISSUR\",680667:\"THRISSUR\",680731:\"THRISSUR\",680309:\"THRISSUR\",680562:\"THRISSUR\",680688:\"THRISSUR\",680666:\"THRISSUR\",680724:\"THRISSUR\",680686:\"THRISSUR\",680307:\"THRISSUR\",680722:\"THRISSUR\",680681:\"THRISSUR\",680687:\"THRISSUR\",680721:\"THRISSUR\",680571:\"THRISSUR\",680121:\"THRISSUR\",680684:\"THRISSUR\",680312:\"THRISSUR\",680561:\"THRISSUR\",680308:\"THRISSUR\",680304:\"THRISSUR\",680301:\"THRISSUR\",680699:\"THRISSUR\",680567:\"THRISSUR\",680568:\"THRISSUR\",680122:\"THRISSUR\",680703:\"THRISSUR\",680671:\"THRISSUR\",680734:\"THRISSUR\",680564:\"THRISSUR\",680125:\"THRISSUR\",680317:\"THRISSUR\",680662:\"THRISSUR\",680689:\"THRISSUR\",680669:\"THRISSUR\",680682:\"THRISSUR\",680711:\"THRISSUR\",680702:\"THRISSUR\",680123:\"THRISSUR\",680670:\"THRISSUR\",680697:\"THRISSUR\",680664:\"THRISSUR\",680691:\"THRISSUR\",680311:\"THRISSUR\",680668:\"THRISSUR\",680732:\"THRISSUR\",680733:\"THRISSUR\",680712:\"THRISSUR\",680685:\"THRISSUR\",680661:\"THRISSUR\",680566:\"THRISSUR\",680665:\"THRISSUR\",680310:\"THRISSUR\",680565:\"THRISSUR\",680663:\"THRISSUR\",680701:\"THRISSUR\",680570:\"THRISSUR\",680303:\"THRISSUR\",686582:\"KOTTAYAM\",686580:\"KOTTAYAM\",686143:\"KOTTAYAM\",686651:\"KOTTAYAM\",686561:\"KOTTAYAM\",686576:\"KOTTAYAM\",686019:\"KOTTAYAM\",686144:\"KOTTAYAM\",686578:\"KOTTAYAM\",686579:\"KOTTAYAM\",686008:\"KOTTAYAM\",686564:\"KOTTAYAM\",686574:\"KOTTAYAM\",686604:\"KOTTAYAM\",686122:\"KOTTAYAM\",686562:\"KOTTAYAM\",686613:\"KOTTAYAM\",686015:\"KOTTAYAM\",686146:\"KOTTAYAM\",686605:\"KOTTAYAM\",686603:\"KOTTAYAM\",686563:\"KOTTAYAM\",686606:\"KOTTAYAM\",686584:\"KOTTAYAM\",686608:\"KOTTAYAM\",686022:\"KOTTAYAM\",686581:\"KOTTAYAM\",686586:\"KOTTAYAM\",686004:\"KOTTAYAM\",686652:\"KOTTAYAM\",686587:\"KOTTAYAM\",686577:\"KOTTAYAM\",686121:\"KOTTAYAM\",686011:\"KOTTAYAM\",686631:\"KOTTAYAM\",686653:\"KOTTAYAM\",686571:\"KOTTAYAM\",686602:\"KOTTAYAM\",686633:\"KOTTAYAM\",686611:\"KOTTAYAM\",686632:\"KOTTAYAM\",686020:\"KOTTAYAM\",686610:\"KOTTAYAM\",686572:\"KOTTAYAM\",686612:\"KOTTAYAM\",686583:\"KOTTAYAM\",686607:\"KOTTAYAM\",686002:\"KOTTAYAM\",686001:\"KOTTAYAM\",686013:\"KOTTAYAM\",686003:\"KOTTAYAM\",686573:\"KOTTAYAM\",686635:\"KOTTAYAM\",686017:\"KOTTAYAM\",686016:\"KOTTAYAM\",686005:\"KOTTAYAM\",686636:\"KOTTAYAM\",686634:\"KOTTAYAM\",686041:\"KOTTAYAM\",686018:\"KOTTAYAM\",686516:\"KOTTAYAM\",686609:\"KOTTAYAM\",686012:\"KOTTAYAM\",686601:\"KOTTAYAM\",686006:\"KOTTAYAM\",686616:\"KOTTAYAM\",686014:\"KOTTAYAM\",686575:\"KOTTAYAM\",686007:\"KOTTAYAM\",686021:\"KOTTAYAM\",686637:\"KOTTAYAM\",686560:\"KOTTAYAM\",686009:\"KOTTAYAM\",686630:\"KOTTAYAM\",686123:\"KOTTAYAM\",686010:\"KOTTAYAM\",686141:\"KOTTAYAM\",682553:\"Lakshadweep\",682552:\"Lakshadweep\",682551:\"Lakshadweep\",682554:\"Kochi\",682556:\"Lakshadweep\",682557:\"Lakshadweep\",682555:\"LAKSHADWEEP\",682558:\"Lakshadweep\",682559:\"Lakshadweep\",690513:\"ALAPPUZHA\",690535:\"ALAPPUZHA\",690515:\"ALAPPUZHA\",689505:\"ALAPPUZHA\",690110:\"ALAPPUZHA\",690504:\"ALAPPUZHA\",690517:\"ALAPPUZHA\",690558:\"ALAPPUZHA\",690503:\"ALAPPUZHA\",690505:\"ALAPPUZHA\",690105:\"ALAPPUZHA\",690507:\"ALAPPUZHA\",690104:\"ALAPPUZHA\",690106:\"ALAPPUZHA\",690532:\"ALAPPUZHA\",690506:\"ALAPPUZHA\",690534:\"ALAPPUZHA\",689624:\"ALAPPUZHA\",689622:\"ALAPPUZHA\",690108:\"ALAPPUZHA\",690516:\"ALAPPUZHA\",690572:\"ALAPPUZHA\",690527:\"ALAPPUZHA\",690514:\"ALAPPUZHA\",690501:\"ALAPPUZHA\",690509:\"ALAPPUZHA\",690103:\"ALAPPUZHA\",690533:\"ALAPPUZHA\",689504:\"ALAPPUZHA\",690502:\"ALAPPUZHA\",690508:\"ALAPPUZHA\",689508:\"ALAPPUZHA\",689521:\"ALAPPUZHA\",689512:\"ALAPPUZHA\",690548:\"ALAPPUZHA\",689623:\"ALAPPUZHA\",690101:\"ALAPPUZHA\",689627:\"ALAPPUZHA\",690511:\"ALAPPUZHA\",690512:\"ALAPPUZHA\",690571:\"ALAPPUZHA\",690510:\"ALAPPUZHA\",690529:\"ALAPPUZHA\",690107:\"ALAPPUZHA\",690531:\"ALAPPUZHA\",689520:\"ALAPPUZHA\",690559:\"ALAPPUZHA\",689515:\"Pathanamthitta\",690537:\"ALAPPUZHA\",689509:\"ALAPPUZHA\",690102:\"ALAPPUZHA\",690530:\"ALAPPUZHA\",680551:\"THRISSUR\",680518:\"THRISSUR\",680519:\"THRISSUR\",680641:\"THRISSUR\",680602:\"THRISSUR\",680555:\"THRISSUR\",680563:\"THRISSUR\",680006:\"THRISSUR\",679564:\"THRISSUR\",680541:\"THRISSUR\",680523:\"THRISSUR\",680508:\"THRISSUR\",680618:\"THRISSUR\",679532:\"THRISSUR\",680620:\"THRISSUR\",680102:\"THRISSUR\",680521:\"THRISSUR\",680751:\"THRISSUR\",680581:\"THRISSUR\",680583:\"THRISSUR\",680306:\"THRISSUR\",680003:\"THRISSUR\",680506:\"THRISSUR\",680104:\"THRISSUR\",680522:\"THRISSUR\",679561:\"THRISSUR\",680586:\"THRISSUR\",680587:\"THRISSUR\",680517:\"THRISSUR\",680501:\"THRISSUR\",680653:\"THRISSUR\",680008:\"THRISSUR\",679531:\"THRISSUR\",680012:\"THRISSUR\",680604:\"THRISSUR\",680585:\"THRISSUR\",680511:\"THRISSUR\",680026:\"THRISSUR\",680502:\"THRISSUR\",680027:\"THRISSUR\",680652:\"THRISSUR\",680552:\"THRISSUR\",680515:\"THRISSUR\",680569:\"THRISSUR\",680611:\"THRISSUR\",680510:\"THRISSUR\",680615:\"THRISSUR\",680589:\"THRISSUR\",680584:\"THRISSUR\",680101:\"THRISSUR\",680103:\"THRISSUR\",680514:\"THRISSUR\",680543:\"THRISSUR\",680014:\"THRISSUR\",680546:\"THRISSUR\",679562:\"THRISSUR\",680011:\"THRISSUR\",680613:\"THRISSUR\",680594:\"THRISSUR\",680612:\"THRISSUR\",680590:\"THRISSUR\",680544:\"THRISSUR\",680028:\"THRISSUR\",680505:\"THRISSUR\",680656:\"THRISSUR\",680591:\"THRISSUR\",680601:\"THRISSUR\",680010:\"THRISSUR\",679106:\"THRISSUR\",680504:\"THRISSUR\",680616:\"THRISSUR\",680503:\"THRISSUR\",680007:\"THRISSUR\",680013:\"THRISSUR\",680651:\"THRISSUR\",680512:\"THRISSUR\",680588:\"THRISSUR\",680617:\"THRISSUR\",680542:\"THRISSUR\",680507:\"THRISSUR\",679105:\"THRISSUR\",680509:\"THRISSUR\",680623:\"THRISSUR\",680614:\"THRISSUR\",680005:\"THRISSUR\",679563:\"THRISSUR\",680655:\"THRISSUR\",680524:\"THRISSUR\",680545:\"THRISSUR\",680004:\"THRISSUR\",680002:\"THRISSUR\",680642:\"THRISSUR\",680553:\"THRISSUR\",680631:\"THRISSUR\",680596:\"THRISSUR\",680022:\"THRISSUR\",680520:\"THRISSUR\",680001:\"THRISSUR\",680020:\"THRISSUR\",680009:\"THRISSUR\",680021:\"THRISSUR\",680516:\"THRISSUR\",680513:\"THRISSUR\",680619:\"THRISSUR\",680654:\"THRISSUR\",680582:\"THRISSUR\",480887:\"SEONI\",481445:\"BALAGHAT\",481332:\"BALAGHAT\",481117:\"BALAGHAT\",480882:\"SEONI\",480771:\"SEONI\",481335:\"BALAGHAT\",481102:\"BALAGHAT\",481222:\"BALAGHAT\",480661:\"SEONI\",481111:\"BALAGHAT\",480884:\"SEONI\",480667:\"SEONI\",480997:\"SEONI\",481337:\"BALAGHAT\",481331:\"BALAGHAT\",480994:\"SEONI\",481556:\"BALAGHAT\",481441:\"BALAGHAT\",481224:\"BALAGHAT\",480888:\"SEONI\",481051:\"BALAGHAT\",481001:\"BALAGHAT\",481449:\"SEONI\",480886:\"SEONI\",480996:\"SEONI\",480999:\"SEONI\",481105:\"BALAGHAT\",481115:\"BALAGHAT\",480990:\"SEONI\",481226:\"BALAGHAT\",480880:\"SEONI\",481551:\"BALAGHAT\",480991:\"SEONI\",481116:\"BALAGHAT\",480881:\"SEONI\",462031:\"BHOPAL\",462020:\"BHOPAL\",462030:\"BHOPAL\",462042:\"BHOPAL\",462022:\"BHOPAL\",464993:\"BHOPAL\",462027:\"BHOPAL\",462038:\"BHOPAL\",462041:\"BHOPAL\",462043:\"BHOPAL\",462047:\"BHOPAL\",463106:\"BHOPAL\",462010:\"BHOPAL\",462045:\"BHOPAL\",462101:\"BHOPAL\",462044:\"BHOPAL\",462008:\"BHOPAL\",463111:\"BHOPAL\",462026:\"BHOPAL\",462001:\"BHOPAL\",462120:\"BHOPAL\",462003:\"BHOPAL\",462036:\"BHOPAL\",462023:\"BHOPAL\",462024:\"BHOPAL\",462040:\"BHOPAL\",462066:\"BHOPAL\",462004:\"BHOPAL\",462046:\"RAISEN\",462016:\"BHOPAL\",462100:\"BHOPAL\",462037:\"BHOPAL\",462002:\"BHOPAL\",462033:\"BHOPAL\",462011:\"BHOPAL\",462039:\"BHOPAL\",471510:\"CHHATARPUR\",472101:\"TIKAMGARH\",471315:\"CHHATARPUR\",488443:\"PANNA\",472111:\"TIKAMGARH\",488001:\"CHHATARPUR\",488220:\"PANNA\",472010:\"TIKAMGARH\",471515:\"CHHATARPUR\",472221:\"TIKAMGARH\",471111:\"CHHATARPUR\",488448:\"PANNA\",488441:\"PANNA\",488222:\"PANNA\",471405:\"CHHATARPUR\",471301:\"CHHATARPUR\",472442:\"TIKAMGARH\",472447:\"TIKAMGARH\",472005:\"TIKAMGARH\",471525:\"CHHATARPUR\",472339:\"TIKAMGARH\",488333:\"PANNA\",471311:\"CHHATARPUR\",471001:\"CHHATARPUR\",472001:\"TIKAMGARH\",472118:\"TIKAMGARH\",471318:\"CHHATARPUR\",472331:\"TIKAMGARH\",471105:\"CHHATARPUR\",471313:\"CHHATARPUR\",488442:\"PANNA\",471201:\"CHHATARPUR\",471408:\"CHHATARPUR\",472246:\"TIKAMGARH\",472336:\"TIKAMGARH\",472115:\"TIKAMGARH\",471501:\"CHHATARPUR\",488051:\"PANNA\",471516:\"CHHATARPUR\",471411:\"PANNA\",472337:\"TIKAMGARH\",471606:\"CHHATARPUR\",472446:\"TIKAMGARH\",472445:\"TIKAMGARH\",488050:\"PANNA\",488446:\"PANNA\",471101:\"CHHATARPUR\",471625:\"CHHATARPUR\",488059:\"PANNA\",480221:\"CHHINDWARA\",460553:\"BETUL\",480449:\"CHHINDWARA\",480334:\"CHHINDWARA\",480331:\"CHHINDWARA\",460449:\"BETUL\",460225:\"BETUL\",460551:\"BETUL\",480106:\"CHHINDWARA\",460665:\"BETUL\",480337:\"CHHINDWARA\",480551:\"CHHINDWARA\",460666:\"BETUL\",460110:\"BETUL\",460330:\"BETUL\",460440:\"BETUL\",480223:\"CHHINDWARA\",480115:\"CHHINDWARA\",460220:\"BETUL\",460554:\"BETUL\",480110:\"CHHINDWARA\",460001:\"BETUL\",480224:\"CHHINDWARA\",480441:\"CHHINDWARA\",460004:\"BETUL\",480559:\"CHHINDWARA\",480109:\"CHHINDWARA\",480338:\"CHHINDWARA\",480001:\"CHHINDWARA\",460661:\"BETUL\",460663:\"BETUL\",480447:\"CHHINDWARA\",480557:\"CHHINDWARA\",480111:\"CHHINDWARA\",460668:\"BETUL\",480003:\"CHHINDWARA\",480107:\"CHHINDWARA\",480555:\"CHHINDWARA\",460443:\"BETUL\",480108:\"CHHINDWARA\",460557:\"BETUL\",480105:\"CHHINDWARA\",480112:\"CHHINDWARA\",460447:\"BETUL\",461661:\"HOSHANGABAD\",461331:\"HARDA\",487881:\"NARSINGHPUR\",487225:\"NARSINGHPUR\",487551:\"NARSINGHPUR\",461990:\"HOSHANGABAD\",461223:\"HOSHANGABAD\",487555:\"NARSINGHPUR\",461221:\"HOSHANGABAD\",487001:\"NARSINGHPUR\",487118:\"NARSINGHPUR\",461111:\"HOSHANGABAD\",461668:\"HOSHANGABAD\",461001:\"HOSHANGABAD\",461228:\"HARDA\",461116:\"HOSHANGABAD\",461771:\"HARDA\",487661:\"NARSINGHPUR\",487330:\"NARSINGHPUR\",487221:\"NARSINGHPUR\",466445:\"SEHORE\",461441:\"HARDA\",487334:\"NARSINGHPUR\",487110:\"NARSINGHPUR\",461115:\"HOSHANGABAD\",487337:\"NARSINGHPUR\",487441:\"NARSINGHPUR\",487770:\"NARSINGHPUR\",461114:\"NARSINGHPUR\",487114:\"NARSINGHPUR\",461775:\"HOSHANGABAD\",461446:\"HOSHANGABAD\",461122:\"HOSHANGABAD\",461881:\"HOSHANGABAD\",461551:\"HOSHANGABAD\",461110:\"HOSHANGABAD\",461005:\"HOSHANGABAD\",485226:\"SATNA\",485775:\"SATNA\",485115:\"SATNA\",486003:\"REWA\",485772:\"SATNA\",486223:\"REWA\",486556:\"REWA\",486111:\"REWA\",485447:\"SATNA\",485773:\"SATNA\",485446:\"SATNA\",486115:\"REWA\",486550:\"REWA\",486220:\"REWA\",485551:\"SATNA\",486446:\"REWA\",485881:\"SATNA\",485331:\"SATNA\",486445:\"REWA\",486117:\"REWA\",486226:\"REWA\",486447:\"REWA\",485112:\"SATNA\",485441:\"SATNA\",486553:\"REWA\",485005:\"SATNA\",486448:\"REWA\",486440:\"REWA\",485001:\"SATNA\",486331:\"REWA\",486441:\"REWA\",485111:\"SATNA\",485221:\"SATNA\",485666:\"SATNA\",486114:\"REWA\",486123:\"REWA\",485774:\"SATNA\",485113:\"SATNA\",486340:\"REWA\",486341:\"REWA\",485114:\"SATNA\",485778:\"SATNA\",486450:\"REWA\",485661:\"SATNA\",486335:\"REWA\",486006:\"REWA\",486333:\"REWA\",486338:\"REWA\",485334:\"SATNA\",485771:\"SATNA\",486005:\"REWA\",486001:\"REWA\",486004:\"REWA\",486002:\"REWA\",470661:\"DAMOH\",470673:\"DAMOH\",470125:\"SAGAR\",470113:\"SAGAR\",470771:\"DAMOH\",470339:\"SAGAR\",470227:\"SAGAR\",470675:\"DAMOH\",470441:\"SAGAR\",470223:\"SAGAR\",470001:\"SAGAR\",470442:\"SAGAR\",470672:\"DAMOH\",470664:\"DAMOH\",470772:\"DAMOH\",470118:\"SAGAR\",470021:\"SAGAR\",470228:\"SAGAR\",470663:\"DAMOH\",470335:\"SAGAR\",470775:\"DAMOH\",470666:\"DAMOH\",470226:\"SAGAR\",470117:\"SAGAR\",470232:\"SAGAR\",470051:\"SAGAR\",470120:\"SAGAR\",470881:\"DAMOH\",470221:\"SAGAR\",470115:\"SAGAR\",470124:\"SAGAR\",470337:\"SAGAR\",470119:\"SAGAR\",470235:\"SAGAR\",470880:\"DAMOH\",470004:\"SAGAR\",470229:\"SAGAR\",470669:\"SAGAR\",470002:\"SAGAR\",470003:\"SAGAR\",484881:\"ANUPPUR\",484660:\"UMARIA\",484774:\"SHAHDOL\",484447:\"ANUPPUR\",484116:\"ANUPPUR\",484886:\"ANUPPUR\",486675:\"SIDHI\",484664:\"UMARIA\",486661:\"SIDHI\",484771:\"SHAHDOL\",484887:\"ANUPPUR\",484330:\"ANUPPUR\",486670:\"SIDHI\",486775:\"SIDHI\",484001:\"SHAHDOL\",486776:\"SIDHI\",484117:\"SHAHDOL\",486887:\"SINGRAULI\",486881:\"SIDHI\",484110:\"SHAHDOL\",484224:\"ANUPPUR\",484770:\"SHAHDOL\",484661:\"UMARIA\",486771:\"SIDHI\",486882:\"SIDHI\",484334:\"SHAHDOL\",484440:\"ANUPPUR\",484776:\"SHAHDOL\",484665:\"UMARIA\",486886:\"SINGRAULI\",484551:\"UMARIA\",484446:\"ANUPPUR\",486669:\"SIDHI\",484336:\"ANUPPUR\",486666:\"SIDHI\",484555:\"UMARIA\",484113:\"ANUPPUR\",484220:\"ANUPPUR\",484669:\"SHAHDOL\",486889:\"SINGRAULI\",484114:\"SHAHDOL\",486888:\"SINGRAULI\",486892:\"SIDHI\",484444:\"SHAHDOL\",486890:\"SINGRAULI\",486884:\"SINGRAULI\",484120:\"ANUPPUR\",486885:\"SINGRAULI\",464884:\"RAISEN\",464111:\"VIDISHA\",464113:\"VIDISHA\",464001:\"VIDISHA\",464668:\"RAISEN\",464774:\"RAISEN\",464886:\"RAISEN\",464221:\"VIDISHA\",464573:\"RAISEN\",464665:\"RAISEN\",464114:\"VIDISHA\",464220:\"VIDISHA\",464551:\"RAISEN\",464776:\"RAISEN\",464337:\"VIDISHA\",464881:\"RAISEN\",464986:\"RAISEN\",464226:\"VIDISHA\",464672:\"RAISEN\",464770:\"RAISEN\",464570:\"RAISEN\",464240:\"RAISEN\",464228:\"VIDISHA\",464661:\"RAISEN\",464224:\"VIDISHA\",464671:\"RAISEN\",464651:\"RAISEN\",464331:\"VIDISHA\",464990:\"RAISEN\",464258:\"VIDISHA\",464334:\"VIDISHA\",473444:\"ASHOK NAGAR\",473585:\"SHIVPURI\",473770:\"SHIVPURI\",473793:\"SHIVPURI\",473781:\"SHIVPURI\",473665:\"SHIVPURI\",473660:\"SHIVPURI\",473880:\"SHIVPURI\",473332:\"ASHOK NAGAR\",473101:\"ASHOK NAGAR\",473331:\"ASHOK NAGAR\",473885:\"SHIVPURI\",473226:\"GUNA\",473105:\"GUNA\",473445:\"ASHOK NAGAR\",473995:\"SHIVPURI\",473670:\"SHIVPURI\",473446:\"ASHOK NAGAR\",473287:\"GUNA\",473330:\"ASHOK NAGAR\",473775:\"SHIVPURI\",473249:\"GUNA\",473551:\"SHIVPURI\",473335:\"ASHOK NAGAR\",473662:\"SHIVPURI\",473115:\"GUNA\",473222:\"GUNA\",473774:\"SHIVPURI\",473113:\"GUNA\",473111:\"GUNA\",473443:\"ASHOK NAGAR\",473118:\"GUNA\",473990:\"SHIVPURI\",473110:\"GUNA\",473865:\"SHIVPURI\",473112:\"GUNA\",473440:\"ASHOK NAGAR\",473001:\"GUNA\",473638:\"SHIVPURI\",474015:\"GWALIOR\",475001:\"GWALIOR\",474001:\"GWALIOR\",475005:\"GWALIOR\",475330:\"GWALIOR\",475671:\"GWALIOR\",475682:\"DATIA\",475673:\"GWALIOR\",474006:\"GWALIOR\",475115:\"GWALIOR\",475335:\"DATIA\",475220:\"GWALIOR\",474020:\"GWALIOR\",475661:\"DATIA\",474005:\"GWALIOR\",475685:\"GWALIOR\",475686:\"DATIA\",475110:\"GWALIOR\",475002:\"GWALIOR\",475336:\"GWALIOR\",475675:\"DATIA\",474004:\"GWALIOR\",474002:\"GWALIOR\",474003:\"GWALIOR\",474008:\"GWALIOR\",474009:\"GWALIOR\",474010:\"GWALIOR\",474011:\"GWALIOR\",474007:\"GWALIOR\",474012:\"GWALIOR\",452006:\"INDORE\",452016:\"INDORE\",452005:\"INDORE\",452007:\"INDORE\",452013:\"INDORE\",452001:\"INDORE\",452002:\"INDORE\",452010:\"INDORE\",452015:\"INDORE\",452003:\"INDORE\",452011:\"INDORE\",452018:\"INDORE\",452014:\"INDORE\",452009:\"INDORE\",452012:\"INDORE\",455001:\"DEWAS\",453115:\"INDORE\",455116:\"DEWAS\",455227:\"DEWAS\",454001:\"DHAR\",454446:\"DHAR\",455336:\"DEWAS\",453551:\"INDORE\",454221:\"DHAR\",454331:\"DHAR\",453111:\"INDORE\",453441:\"INDORE\",454441:\"DHAR\",455332:\"DEWAS\",455223:\"DEWAS\",455118:\"DEWAS\",455115:\"DEWAS\",453001:\"INDORE\",455459:\"DEWAS\",454010:\"DHAR\",453220:\"INDORE\",454773:\"DHAR\",454660:\"DHAR\",454111:\"DHAR\",455111:\"DEWAS\",454552:\"DHAR\",454665:\"DHAR\",455221:\"DEWAS\",453771:\"INDORE\",455440:\"DEWAS\",454116:\"DHAR\",454335:\"DHAR\",455339:\"DEWAS\",454449:\"DHAR\",452020:\"INDORE\",453112:\"INDORE\",453661:\"INDORE\",453556:\"INDORE\",454774:\"DHAR\",453331:\"INDORE\",454775:\"DHAR\",453446:\"INDORE\",453555:\"INDORE\",453552:\"INDORE\",483770:\"KATNI\",482004:\"JABALPUR\",483334:\"KATNI\",482002:\"JABALPUR\",483990:\"KATNI\",483053:\"JABALPUR\",483880:\"KATNI\",483336:\"KATNI\",483225:\"KATNI\",483501:\"KATNI\",483113:\"JABALPUR\",483220:\"JABALPUR\",483110:\"JABALPUR\",483773:\"KATNI\",482001:\"JABALPUR\",483330:\"KATNI\",483331:\"KATNI\",483222:\"JABALPUR\",483440:\"KATNI\",482021:\"JABALPUR\",483001:\"JABALPUR\",482008:\"JABALPUR\",482056:\"JABALPUR\",482051:\"JABALPUR\",483119:\"JABALPUR\",483442:\"KATNI\",483332:\"KATNI\",482020:\"JABALPUR\",483105:\"JABALPUR\",482003:\"JABALPUR\",483775:\"KATNI\",482011:\"JABALPUR\",483504:\"KATNI\",482005:\"JABALPUR\",482010:\"JABALPUR\",482009:\"JABALPUR\",450337:\"KHANDWA\",451332:\"KHARGONE\",451666:\"BARWANI\",450117:\"KHANDWA\",451001:\"KHARGONE\",451113:\"KHARGONE\",450001:\"KHANDWA\",451111:\"KHARGONE\",450331:\"BURHANPUR\",451228:\"KHARGONE\",451335:\"KHARGONE\",451556:\"BARWANI\",451551:\"BARWANI\",450661:\"KHANDWA\",451224:\"KHARGONE\",450551:\"KHANDWA\",451221:\"KHARGONE\",451225:\"KHARGONE\",451115:\"KHARGONE\",451447:\"KHARGONE\",451449:\"BARWANI\",451220:\"KHARGONE\",451441:\"KHARGONE\",450881:\"KHANDWA\",450445:\"BURHANPUR\",451331:\"KHARGONE\",451770:\"KHARGONE\",450116:\"KHANDWA\",450771:\"KHANDWA\",450554:\"KHANDWA\",450110:\"KHANDWA\",450051:\"KHANDWA\",450991:\"KHANDWA\",450221:\"BURHANPUR\",451881:\"BARWANI\",451660:\"BARWANI\",451442:\"KHARGONE\",450332:\"BURHANPUR\",451440:\"BARWANI\",450114:\"KHANDWA\",450112:\"KHANDWA\",450119:\"KHANDWA\",458113:\"NEEMUCH\",458883:\"MANDSAUR\",458553:\"MANDSAUR\",458558:\"MANDSAUR\",458895:\"MANDSAUR\",458888:\"MANDSAUR\",458667:\"MANDSAUR\",458669:\"MANDSAUR\",458110:\"NEEMUCH\",458441:\"NEEMUCH\",458002:\"MANDSAUR\",458775:\"MANDSAUR\",458330:\"NEEMUCH\",458226:\"NEEMUCH\",458664:\"MANDSAUR\",458118:\"NEEMUCH\",458220:\"NEEMUCH\",458880:\"MANDSAUR\",458556:\"MANDSAUR\",458339:\"MANDSAUR\",458116:\"NEEMUCH\",458990:\"MANDSAUR\",458389:\"MANDSAUR\",458778:\"MANDSAUR\",458771:\"MANDSAUR\",458228:\"NEEMUCH\",458336:\"NEEMUCH\",458468:\"NEEMUCH\",458470:\"NEEMUCH\",458001:\"MANDSAUR\",477441:\"BHIND\",476111:\"MORENA\",477227:\"BHIND\",476332:\"SHEOPUR\",477555:\"BHIND\",477111:\"BHIND\",476224:\"MORENA\",477116:\"BHIND\",476134:\"MORENA\",477445:\"BHIND\",477557:\"BHIND\",477331:\"BHIND\",477446:\"BHIND\",477660:\"BHIND\",477332:\"BHIND\",477449:\"BHIND\",476221:\"MORENA\",477447:\"BHIND\",476001:\"MORENA\",476219:\"MORENA\",476337:\"MORENA\",476229:\"MORENA\",477333:\"BHIND\",477001:\"BHIND\",476339:\"MORENA\",477105:\"BHIND\",477566:\"BHIND\",477222:\"BHIND\",477335:\"BHIND\",476335:\"SHEOPUR\",476444:\"MORENA\",477117:\"BHIND\",476355:\"SHEOPUR\",476115:\"MORENA\",476554:\"MORENA\",476228:\"MORENA\",457550:\"RATLAM\",457779:\"JHABUA\",457887:\"ALIRAJPUR\",457114:\"RATLAM\",457882:\"ALIRAJPUR\",457770:\"JHABUA\",457555:\"RATLAM\",457222:\"RATLAM\",457773:\"JHABUA\",457888:\"ALIRAJPUR\",457993:\"JHABUA\",457336:\"RATLAM\",457990:\"ALIRAJPUR\",457226:\"RATLAM\",457777:\"JHABUA\",457001:\"RATLAM\",457775:\"JHABUA\",457661:\"JHABUA\",457331:\"RATLAM\",457118:\"RATLAM\",457772:\"JHABUA\",457441:\"RATLAM\",457339:\"RATLAM\",457885:\"ALIRAJPUR\",457340:\"RATLAM\",457119:\"RATLAM\",457333:\"RATLAM\",466111:\"SEHORE\",465669:\"RAJGARH\",465674:\"RAJGARH\",466448:\"SEHORE\",466115:\"SEHORE\",466665:\"SEHORE\",466554:\"SEHORE\",466116:\"SEHORE\",466446:\"SEHORE\",465680:\"RAJGARH\",465693:\"RAJGARH\",466113:\"SEHORE\",466221:\"SEHORE\",465697:\"RAJGARH\",465687:\"RAJGARH\",466001:\"SEHORE\",465667:\"RAJGARH\",466331:\"SEHORE\",466125:\"SEHORE\",465677:\"RAJGARH\",466651:\"SEHORE\",465683:\"RAJGARH\",465679:\"RAJGARH\",466114:\"SEHORE\",465685:\"RAJGARH\",465689:\"RAJGARH\",465691:\"RAJGARH\",465661:\"RAJGARH\",466661:\"SEHORE\",466120:\"SEHORE\",466118:\"SEHORE\",456776:\"UJJAIN\",456441:\"UJJAIN\",465001:\"SHAJAPUR\",465441:\"AGAR MALWA\",456222:\"UJJAIN\",465223:\"SHAJAPUR\",456224:\"UJJAIN\",465333:\"SHAJAPUR\",456221:\"UJJAIN\",465550:\"AGAR MALWA\",456771:\"UJJAIN\",465447:\"AGAR MALWA\",465335:\"SHAJAPUR\",456006:\"UJJAIN\",465118:\"SHAJAPUR\",456337:\"UJJAIN\",465445:\"AGAR MALWA\",456661:\"UJJAIN\",456770:\"UJJAIN\",456335:\"UJJAIN\",456440:\"UJJAIN\",465110:\"SHAJAPUR\",456443:\"UJJAIN\",465226:\"SHAJAPUR\",465337:\"SHAJAPUR\",465339:\"SHAJAPUR\",456331:\"UJJAIN\",456313:\"UJJAIN\",456665:\"UJJAIN\",465220:\"SHAJAPUR\",456664:\"UJJAIN\",465227:\"SHAJAPUR\",465230:\"SHAJAPUR\",465449:\"AGAR MALWA\",465116:\"SHAJAPUR\",456550:\"UJJAIN\",456668:\"UJJAIN\",456003:\"UJJAIN\",465106:\"SHAJAPUR\",465113:\"SHAJAPUR\",456010:\"UJJAIN\",456001:\"UJJAIN\",481998:\"MANDLA\",481879:\"DINDORI\",481880:\"DINDORI\",481885:\"MANDLA\",481995:\"MANDLA\",481882:\"DINDORI\",481990:\"DINDORI\",481665:\"MANDLA\",481661:\"MANDLA\",481883:\"MANDLA\",481662:\"MANDLA\",481778:\"DINDORI\",481664:\"MANDLA\",481771:\"MANDLA\",481666:\"MANDLA\",481668:\"MANDLA\",481996:\"MANDLA\",481884:\"MANDLA\",481672:\"MANDLA\",481768:\"MANDLA\",481663:\"MANDLA\",481776:\"MANDLA\",431132:\"JALNA\",431104:\"AURANGABAD\",431007:\"AURANGABAD\",431008:\"AURANGABAD\",431121:\"AURANGABAD\",431110:\"AURANGABAD\",431118:\"AURANGABAD\",431117:\"AURANGABAD\",431202:\"JALNA\",431208:\"JALNA\",423701:\"AURANGABAD\",431134:\"AURANGABAD\",431103:\"AURANGABAD\",431204:\"JALNA\",431133:\"AURANGABAD\",431113:\"AURANGABAD\",431203:\"JALNA\",431151:\"AURANGABAD\",431212:\"JALNA\",431211:\"JALNA\",431112:\"JALNA\",431107:\"AURANGABAD\",431002:\"AURANGABAD\",431001:\"AURANGABAD\",431005:\"AURANGABAD\",431114:\"JALNA\",431115:\"AURANGABAD\",431120:\"AURANGABAD\",431136:\"AURANGABAD\",431105:\"AURANGABAD\",431116:\"AURANGABAD\",431135:\"AURANGABAD\",431150:\"JALNA\",431215:\"JALNA\",431004:\"AURANGABAD\",431154:\"AURANGABAD\",431206:\"JALNA\",431214:\"JALNA\",423703:\"AURANGABAD\",431137:\"AURANGABAD\",431152:\"AURANGABAD\",431209:\"JALNA\",431102:\"AURANGABAD\",431006:\"AURANGABAD\",431147:\"AURANGABAD\",431003:\"AURANGABAD\",431213:\"JALNA\",431205:\"JALNA\",431111:\"AURANGABAD\",423702:\"AURANGABAD\",431101:\"AURANGABAD\",431109:\"AURANGABAD\",431009:\"AURANGABAD\",431207:\"JALNA\",431148:\"AURANGABAD\",431011:\"AURANGABAD\",431010:\"AURANGABAD\",431807:\"AURANGABAD\",431517:\"BEED\",431153:\"BEED\",431143:\"BEED\",413207:\"BEED\",431523:\"BEED\",431124:\"BEED\",414202:\"BEED\",431131:\"BEED\",431126:\"BEED\",431127:\"BEED\",431130:\"BEED\",413249:\"BEED\",414203:\"BEED\",431518:\"BEED\",431122:\"BEED\",431530:\"BEED\",414208:\"BEED\",414205:\"BEED\",431128:\"BEED\",414204:\"BEED\",431129:\"BEED\",431123:\"BEED\",431125:\"BEED\",431144:\"BEED\",431515:\"BEED\",413229:\"BEED\",431519:\"BEED\",431142:\"BEED\",431520:\"BEED\",425508:\"Jalgaon\",425305:\"Jalgaon\",425303:\"Jalgaon\",425302:\"Jalgaon\",425107:\"Jalgaon\",425507:\"Jalgaon\",425108:\"Jalgaon\",425524:\"Jalgaon\",425304:\"Jalgaon\",425306:\"Jalgaon\",425301:\"Jalgaon\",425503:\"Jalgaon\",425310:\"Jalgaon\",425201:\"Jalgaon\",425203:\"Jalgaon\",425327:\"Jalgaon\",425505:\"Jalgaon\",424208:\"Jalgaon\",425311:\"Jalgaon\",425506:\"Jalgaon\",425307:\"Jalgaon\",425114:\"Jalgaon\",424204:\"Jalgaon\",424206:\"Jalgaon\",425501:\"Jalgaon\",425309:\"Jalgaon\",425308:\"Jalgaon\",425504:\"Jalgaon\",425502:\"Jalgaon\",424207:\"Jalgaon\",424205:\"Jalgaon\",424004:\"DHULE\",425405:\"DHULE\",425408:\"DHULE\",425403:\"DHULE\",425404:\"DHULE\",424301:\"DHULE\",424305:\"DHULE\",425415:\"NANDURBAR\",425409:\"NANDURBAR\",424318:\"DHULE\",425413:\"NANDURBAR\",425407:\"DHULE\",425410:\"NANDURBAR\",425417:\"NANDURBAR\",425412:\"NANDURBAR\",425427:\"DHULE\",424006:\"DHULE\",424304:\"DHULE\",425444:\"NANDURBAR\",425421:\"DHULE\",424002:\"DHULE\",425411:\"NANDURBAR\",424306:\"DHULE\",425419:\"NANDURBAR\",425423:\"NANDURBAR\",425426:\"NANDURBAR\",424310:\"DHULE\",424303:\"DHULE\",425406:\"DHULE\",425416:\"NANDURBAR\",425452:\"NANDURBAR\",425414:\"NANDURBAR\",425442:\"NANDURBAR\",425428:\"DHULE\",424307:\"DHULE\",424308:\"DHULE\",424311:\"DHULE\",424302:\"DHULE\",425432:\"NANDURBAR\",425422:\"NANDURBAR\",425418:\"NANDURBAR\",424001:\"DHULE\",424005:\"DHULE\",425424:\"NANDURBAR\",424309:\"DHULE\",425110:\"JALGAON\",425111:\"JALGAON\",424104:\"JALGAON\",424105:\"JALGAON\",425420:\"JALGAON\",425401:\"JALGAON\",425002:\"JALGAON\",425103:\"JALGAON\",424201:\"JALGAON\",425115:\"JALGAON\",425101:\"JALGAON\",425003:\"JALGAON\",425113:\"JALGAON\",424107:\"JALGAON\",424119:\"JALGAON\",425102:\"JALGAON\",425109:\"JALGAON\",424106:\"JALGAON\",425105:\"JALGAON\",425402:\"JALGAON\",425104:\"JALGAON\",425116:\"JALGAON\",424108:\"JALGAON\",424101:\"JALGAON\",424203:\"JALGAON\",425112:\"JALGAON\",424103:\"JALGAON\",424102:\"JALGAON\",425001:\"JALGAON\",424202:\"JALGAON\",425004:\"JALGAON\",431736:\"NANDED\",431708:\"NANDED\",431808:\"NANDED\",431723:\"NANDED\",431804:\"NANDED\",431714:\"NANDED\",431715:\"NANDED\",431803:\"NANDED\",431811:\"NANDED\",431721:\"NANDED\",431704:\"NANDED\",431711:\"NANDED\",431710:\"NANDED\",431606:\"NANDED\",431605:\"NANDED\",431712:\"NANDED\",431717:\"NANDED\",431745:\"NANDED\",431602:\"NANDED\",431746:\"NANDED\",431801:\"NANDED\",431743:\"NANDED\",431741:\"NANDED\",431810:\"NANDED\",431731:\"NANDED\",431742:\"NANDED\",431805:\"NANDED\",431604:\"NANDED\",431806:\"NANDED\",431809:\"NANDED\",431603:\"NANDED\",431707:\"NANDED\",431716:\"NANDED\",431719:\"NANDED\",431709:\"NANDED\",431750:\"NANDED\",431713:\"NANDED\",431802:\"NANDED\",431722:\"NANDED\",431718:\"NANDED\",431601:\"NANDED\",413521:\"LATUR\",413602:\"OSMANABAD\",413515:\"LATUR\",413544:\"LATUR\",413582:\"OSMANABAD\",413520:\"LATUR\",413605:\"OSMANABAD\",413530:\"LATUR\",413505:\"OSMANABAD\",413507:\"LATUR\",413603:\"OSMANABAD\",413523:\"LATUR\",413513:\"LATUR\",413502:\"OSMANABAD\",413504:\"OSMANABAD\",413601:\"OSMANABAD\",413509:\"OSMANABAD\",413604:\"OSMANABAD\",413581:\"LATUR\",413532:\"LATUR\",413524:\"LATUR\",413606:\"OSMANABAD\",413522:\"LATUR\",413528:\"OSMANABAD\",413517:\"LATUR\",413531:\"LATUR\",413607:\"LATUR\",413506:\"OSMANABAD\",413525:\"OSMANABAD\",413608:\"OSMANABAD\",413511:\"LATUR\",413527:\"LATUR\",431522:\"LATUR\",413519:\"LATUR\",413514:\"LATUR\",413516:\"LATUR\",413405:\"OSMANABAD\",413503:\"OSMANABAD\",413623:\"OSMANABAD\",413508:\"OSMANABAD\",413534:\"LATUR\",413526:\"OSMANABAD\",413518:\"LATUR\",413512:\"LATUR\",413529:\"LATUR\",413624:\"OSMANABAD\",413501:\"OSMANABAD\",413510:\"LATUR\",431705:\"HINGOLI\",431513:\"HINGOLI\",431503:\"PARBHANI\",431511:\"PARBHANI\",431703:\"HINGOLI\",431504:\"JALNA\",431701:\"HINGOLI\",431501:\"JALNA\",431512:\"HINGOLI\",431510:\"HINGOLI\",431402:\"PARBHANI\",431509:\"HINGOLI\",431507:\"JALNA\",431702:\"HINGOLI\",431514:\"PARBHANI\",431536:\"PARBHANI\",431506:\"PARBHANI\",431542:\"HINGOLI\",431521:\"PARBHANI\",431537:\"PARBHANI\",431540:\"PARBHANI\",431508:\"PARBHANI\",431505:\"PARBHANI\",431516:\"PARBHANI\",431541:\"PARBHANI\",431720:\"PARBHANI\",431502:\"JALNA\",431401:\"PARBHANI\",403801:\"SOUTH GOA\",403503:\"NORTH GOA\",403530:\"SOUTH GOA\",403401:\"SOUTH GOA\",403512:\"NORTH GOA\",403702:\"SOUTH GOA\",403508:\"NORTH GOA\",403521:\"NORTH GOA\",403723:\"SOUTH GOA\",403107:\"SOUTH GOA\",403509:\"NORTH GOA\",403601:\"SOUTH GOA\",403524:\"NORTH GOA\",403516:\"NORTH GOA\",403507:\"NORTH GOA\",403714:\"SOUTH GOA\",403701:\"SOUTH GOA\",403705:\"SOUTH GOA\",403802:\"SOUTH GOA\",403703:\"SOUTH GOA\",403201:\"NORTH GOA\",403202:\"NORTH GOA\",403704:\"SOUTH GOA\",403716:\"SOUTH GOA\",403713:\"SOUTH GOA\",403101:\"NORTH GOA\",403409:\"NORTH GOA\",403529:\"NORTH GOA\",403504:\"NORTH GOA\",403506:\"NORTH GOA\",403806:\"SOUTH GOA\",403001:\"NORTH GOA\",403706:\"SOUTH GOA\",403523:\"NORTH GOA\",403718:\"SOUTH GOA\",403510:\"NORTH GOA\",403406:\"NORTH GOA\",403515:\"NORTH GOA\",403712:\"SOUTH GOA\",403110:\"NORTH GOA\",403002:\"NORTH GOA\",403505:\"NORTH GOA\",403717:\"SOUTH GOA\",403731:\"SOUTH GOA\",403711:\"SOUTH GOA\",403006:\"NORTH GOA\",403715:\"SOUTH GOA\",403102:\"NORTH GOA\",403410:\"SOUTH GOA\",403708:\"SOUTH GOA\",403513:\"NORTH GOA\",403710:\"SOUTH GOA\",403115:\"NORTH GOA\",403709:\"SOUTH GOA\",403707:\"SOUTH GOA\",403725:\"SOUTH GOA\",403602:\"SOUTH GOA\",403108:\"NORTH GOA\",403206:\"NORTH GOA\",403728:\"SOUTH GOA\",403403:\"NORTH GOA\",403527:\"NORTH GOA\",403104:\"NORTH GOA\",403404:\"SOUTH GOA\",403004:\"NORTH GOA\",403803:\"SOUTH GOA\",403109:\"NORTH GOA\",403729:\"SOUTH GOA\",403114:\"NORTH GOA\",403724:\"SOUTH GOA\",403517:\"NORTH GOA\",403105:\"NORTH GOA\",403203:\"NORTH GOA\",403501:\"NORTH GOA\",403720:\"SOUTH GOA\",403804:\"SOUTH GOA\",403511:\"NORTH GOA\",403106:\"NORTH GOA\",403005:\"NORTH GOA\",403719:\"SOUTH GOA\",403103:\"SOUTH GOA\",403502:\"NORTH GOA\",403204:\"NORTH GOA\",403526:\"NORTH GOA\",403721:\"SOUTH GOA\",403402:\"NORTH GOA\",403722:\"SOUTH GOA\",403726:\"SOUTH GOA\",416236:\"Kolhapur\",416509:\"Kolhapur\",416210:\"Kolhapur\",416526:\"Kolhapur\",416505:\"Kolhapur\",416212:\"Kolhapur\",416106:\"Kolhapur\",416144:\"Kolhapur\",416214:\"Kolhapur\",416104:\"Kolhapur\",416109:\"Kolhapur\",416112:\"Kolhapur\",416215:\"Kolhapur\",416201:\"Kolhapur\",416552:\"Kolhapur\",416229:\"Kolhapur\",416204:\"Kolhapur\",416235:\"Kolhapur\",416114:\"Kolhapur\",416220:\"Kolhapur\",416001:\"Kolhapur\",416120:\"Kolhapur\",416208:\"Kolhapur\",416504:\"Kolhapur\",416206:\"Kolhapur\",416118:\"Kolhapur\",416502:\"Kolhapur\",416213:\"Kolhapur\",416211:\"Kolhapur\",416012:\"Kolhapur\",416221:\"Kolhapur\",416011:\"Kolhapur\",416110:\"Kolhapur\",416205:\"Kolhapur\",416218:\"Kolhapur\",416010:\"Kolhapur\",416232:\"Kolhapur\",416230:\"Kolhapur\",416209:\"Kolhapur\",416507:\"Kolhapur\",416506:\"Kolhapur\",416503:\"Kolhapur\",416223:\"Kolhapur\",416002:\"Kolhapur\",415101:\"Kolhapur\",416138:\"Kolhapur\",416119:\"Kolhapur\",416101:\"Kolhapur\",416207:\"Kolhapur\",416107:\"Kolhapur\",416102:\"Kolhapur\",416231:\"Kolhapur\",416501:\"Kolhapur\",416105:\"Kolhapur\",416116:\"Kolhapur\",416103:\"Kolhapur\",416013:\"Kolhapur\",416216:\"Kolhapur\",416005:\"Kolhapur\",416202:\"Kolhapur\",416508:\"Kolhapur\",416203:\"Kolhapur\",416115:\"Kolhapur\",416143:\"Kolhapur\",416113:\"Kolhapur\",416121:\"Kolhapur\",416551:\"Kolhapur\",416122:\"Kolhapur\",416007:\"Kolhapur\",416234:\"Kolhapur\",416219:\"Kolhapur\",416006:\"Kolhapur\",416111:\"Kolhapur\",416108:\"Kolhapur\",416003:\"Kolhapur\",416146:\"Kolhapur\",416008:\"Kolhapur\",416004:\"Kolhapur\",416527:\"Kolhapur\",415726:\"RATNAGIRI\",415802:\"RATNAGIRI\",415714:\"RATNAGIRI\",416707:\"RATNAGIRI\",415604:\"RATNAGIRI\",415705:\"RATNAGIRI\",415712:\"RATNAGIRI\",415616:\"RATNAGIRI\",415606:\"RATNAGIRI\",416704:\"RATNAGIRI\",415603:\"RATNAGIRI\",415709:\"RATNAGIRI\",415804:\"RATNAGIRI\",415608:\"RATNAGIRI\",415730:\"RATNAGIRI\",415605:\"RATNAGIRI\",415637:\"RATNAGIRI\",415641:\"RATNAGIRI\",415806:\"RATNAGIRI\",415203:\"RATNAGIRI\",416702:\"RATNAGIRI\",415803:\"RATNAGIRI\",415634:\"RATNAGIRI\",415610:\"RATNAGIRI\",415703:\"RATNAGIRI\",415643:\"RATNAGIRI\",416712:\"RATNAGIRI\",415708:\"RATNAGIRI\",415711:\"RATNAGIRI\",415713:\"RATNAGIRI\",415722:\"RATNAGIRI\",415727:\"RATNAGIRI\",415701:\"RATNAGIRI\",415208:\"RATNAGIRI\",416701:\"RATNAGIRI\",415629:\"RATNAGIRI\",415801:\"RATNAGIRI\",415621:\"RATNAGIRI\",415612:\"RATNAGIRI\",415639:\"RATNAGIRI\",415628:\"RATNAGIRI\",416713:\"RATNAGIRI\",415715:\"RATNAGIRI\",415720:\"RATNAGIRI\",415807:\"RATNAGIRI\",415620:\"RATNAGIRI\",415619:\"RATNAGIRI\",415724:\"RATNAGIRI\",415609:\"RATNAGIRI\",415640:\"RATNAGIRI\",415728:\"RATNAGIRI\",415718:\"RATNAGIRI\",415706:\"RATNAGIRI\",415805:\"RATNAGIRI\",415710:\"RATNAGIRI\",415611:\"RATNAGIRI\",415626:\"RATNAGIRI\",415615:\"RATNAGIRI\",415702:\"RATNAGIRI\",416705:\"RATNAGIRI\",415614:\"RATNAGIRI\",415716:\"RATNAGIRI\",415613:\"RATNAGIRI\",415719:\"RATNAGIRI\",416709:\"RATNAGIRI\",415717:\"RATNAGIRI\",415617:\"RATNAGIRI\",415607:\"RATNAGIRI\",415602:\"RATNAGIRI\",415202:\"RATNAGIRI\",415214:\"RATNAGIRI\",415601:\"RATNAGIRI\",415729:\"RATNAGIRI\",416403:\"Sangli\",416411:\"Sangli\",415311:\"Sangli\",415401:\"Sangli\",415409:\"Sangli\",416419:\"Sangli\",415305:\"Sangli\",415303:\"Sangli\",416308:\"Sangli\",416310:\"Sangli\",416311:\"Sangli\",416412:\"Sangli\",416402:\"Sangli\",416415:\"Sangli\",416316:\"Sangli\",416404:\"Sangli\",415408:\"Sangli\",416401:\"Sangli\",415415:\"Sangli\",416312:\"Sangli\",416301:\"Sangli\",415301:\"Sangli\",416303:\"Sangli\",415315:\"Sangli\",416302:\"Sangli\",415411:\"Sangli\",415307:\"Sangli\",416309:\"Sangli\",416413:\"Sangli\",415410:\"Sangli\",416436:\"Sangli\",416414:\"Sangli\",415306:\"Sangli\",415302:\"Sangli\",415310:\"Sangli\",415309:\"Sangli\",416420:\"Sangli\",415402:\"Sangli\",416304:\"Sangli\",415413:\"Sangli\",416410:\"Sangli\",415405:\"Sangli\",415412:\"Sangli\",416405:\"Sangli\",416305:\"Sangli\",416407:\"Sangli\",416315:\"Sangli\",416416:\"Sangli\",416408:\"Sangli\",415308:\"Sangli\",416314:\"Sangli\",415403:\"Sangli\",416313:\"Sangli\",415304:\"Sangli\",415406:\"Sangli\",416306:\"Sangli\",415404:\"Sangli\",416307:\"Sangli\",416417:\"Sangli\",416418:\"Sangli\",416406:\"Sangli\",415407:\"Sangli\",416409:\"Sangli\",415414:\"Sangli\",416437:\"Miraj\",415313:\"Sangli\",416614:\"SINDHUDURG\",416810:\"SINDHUDURG\",416516:\"SINDHUDURG\",416518:\"SINDHUDURG\",416519:\"SINDHUDURG\",416813:\"SINDHUDURG\",416605:\"SINDHUDURG\",416550:\"SINDHUDURG\",416628:\"SINDHUDURG\",416812:\"SINDHUDURG\",416520:\"SINDHUDURG\",416611:\"SINDHUDURG\",416513:\"SINDHUDURG\",416514:\"SINDHUDURG\",416610:\"SINDHUDURG\",416602:\"SINDHUDURG\",416521:\"SINDHUDURG\",416512:\"SINDHUDURG\",416511:\"SINDHUDURG\",416608:\"SINDHUDURG\",416613:\"SINDHUDURG\",416601:\"SINDHUDURG\",416632:\"SINDHUDURG\",416609:\"SINDHUDURG\",416523:\"SINDHUDURG\",416603:\"SINDHUDURG\",416616:\"SINDHUDURG\",416811:\"SINDHUDURG\",416604:\"SINDHUDURG\",416524:\"SINDHUDURG\",416612:\"SINDHUDURG\",416630:\"SINDHUDURG\",416525:\"SINDHUDURG\",416801:\"SINDHUDURG\",416534:\"SINDHUDURG\",416549:\"SINDHUDURG\",416806:\"SINDHUDURG\",416626:\"SINDHUDURG\",416529:\"SINDHUDURG\",416528:\"SINDHUDURG\",416531:\"SINDHUDURG\",416620:\"SINDHUDURG\",416703:\"SINDHUDURG\",416522:\"SINDHUDURG\",416606:\"SINDHUDURG\",416615:\"SINDHUDURG\",416623:\"SINDHUDURG\",416803:\"SINDHUDURG\",416805:\"SINDHUDURG\",416804:\"SINDHUDURG\",416517:\"SINDHUDURG\",416510:\"SINDHUDURG\",416807:\"SINDHUDURG\",416515:\"SINDHUDURG\",400037:\"MUMBAI\",400003:\"MUMBAI\",400012:\"MUMBAI\",400009:\"MUMBAI\",400033:\"MUMBAI\",400014:\"MUMBAI\",400010:\"MUMBAI\",400031:\"MUMBAI\",400015:\"MUMBAI\",400027:\"MUMBAI\",400029:\"MUMBAI SUBUEBAN\",400099:\"MUMBAI SUBUEBAN\",400069:\"MUMBAI SUBUEBAN\",400053:\"MUMBAI SUBUEBAN\",400058:\"MUMBAI SUBUEBAN\",400051:\"MUMBAI SUBUEBAN\",400050:\"MUMBAI SUBUEBAN\",400093:\"MUMBAI SUBUEBAN\",400052:\"MUMBAI SUBUEBAN\",400057:\"MUMBAI SUBUEBAN\",400056:\"MUMBAI SUBUEBAN\",400059:\"MUMBAI SUBUEBAN\",400049:\"MUMBAI SUBUEBAN\",400061:\"MUMBAI SUBUEBAN\",400054:\"MUMBAI SUBUEBAN\",400055:\"MUMBAI SUBUEBAN\",400096:\"MUMBAI SUBUEBAN\",400098:\"MUMBAI SUBUEBAN\",400094:\"MUMBAI\",400085:\"MUMBAI\",400084:\"MUMBAI\",400075:\"MUMBAI\",400082:\"MUMBAI\",400042:\"MUMBAI\",400078:\"MUMBAI\",400074:\"MUMBAI\",400071:\"MUMBAI\",400089:\"MUMBAI\",400022:\"MUMBAI\",400043:\"MUMBAI\",400086:\"MUMBAI\",400088:\"MUMBAI\",400083:\"MUMBAI\",400070:\"MUMBAI\",400019:\"MUMBAI\",400081:\"MUMBAI\",400080:\"MUMBAI\",400024:\"MUMBAI\",400087:\"MUMBAI\",400076:\"MUMBAI\",400079:\"MUMBAI\",400077:\"MUMBAI\",400072:\"MUMBAI\",400065:\"MUMBAI SUBUEBAN\",400104:\"MUMBAI SUBUEBAN\",400066:\"MUMBAI SUBUEBAN\",400091:\"MUMBAI SUBUEBAN\",400092:\"MUMBAI SUBUEBAN\",400067:\"MUMBAI SUBUEBAN\",400068:\"MUMBAI SUBUEBAN\",400063:\"MUMBAI SUBUEBAN\",400095:\"MUMBAI SUBUEBAN\",400060:\"MUMBAI SUBUEBAN\",400102:\"MUMBAI SUBUEBAN\",400101:\"MUMBAI SUBUEBAN\",400064:\"MUMBAI SUBUEBAN\",400097:\"MUMBAI SUBUEBAN\",400103:\"MUMBAI SUBUEBAN\",400004:\"MUMBAI\",400005:\"MUMBAI\",400001:\"MUMBAI\",400020:\"MUMBAI\",400021:\"MUMBAI\",400032:\"MUMBAI\",400002:\"MUMBAI\",400011:\"MUMBAI\",400007:\"MUMBAI\",400028:\"MUMBAI\",400030:\"MUMBAI\",400026:\"MUMBAI\",400013:\"MUMBAI\",400017:\"MUMBAI\",400008:\"MUMBAI\",400034:\"MUMBAI\",400016:\"MUMBAI\",400006:\"MUMBAI\",400025:\"MUMBAI\",400035:\"MUMBAI\",400018:\"MUMBAI\",444126:\"AKOLA\",444510:\"WASHIM\",444108:\"AKOLA\",444006:\"AKOLA\",444002:\"AKOLA\",444001:\"AKOLA\",444101:\"AKOLA\",444401:\"AKOLA\",444511:\"AKOLA\",444503:\"WASHIM\",444107:\"AKOLA\",444311:\"AKOLA\",444507:\"WASHIM\",444102:\"AKOLA\",444003:\"AKOLA\",444409:\"WASHIM\",444404:\"WASHIM\",444501:\"AKOLA\",444104:\"AKOLA\",444302:\"AKOLA\",444117:\"AKOLA\",444106:\"AKOLA\",444110:\"WASHIM\",444506:\"WASHIM\",444505:\"WASHIM\",444407:\"AKOLA\",444004:\"AKOLA\",444504:\"WASHIM\",444103:\"AKOLA\",444403:\"WASHIM\",444111:\"AKOLA\",444502:\"AKOLA\",444109:\"AKOLA\",444005:\"AKOLA\",444105:\"WASHIM\",444405:\"AKOLA\",444402:\"WASHIM\",444806:\"AMRAVATI\",444915:\"AMRAVATI\",444705:\"AMRAVATI\",444706:\"AMRAVATI\",444801:\"AMRAVATI\",444908:\"AMRAVATI\",444905:\"AMRAVATI\",444717:\"AMRAVATI\",444601:\"AMRAVATI\",444802:\"AMRAVATI\",444904:\"AMRAVATI\",444906:\"AMRAVATI\",444602:\"AMRAVATI\",444701:\"AMRAVATI\",444709:\"AMRAVATI\",444803:\"AMRAVATI\",444702:\"AMRAVATI\",444723:\"AMRAVATI\",444704:\"AMRAVATI\",444719:\"AMRAVATI\",444808:\"AMRAVATI\",444708:\"AMRAVATI\",444901:\"AMRAVATI\",444720:\"AMRAVATI\",444805:\"AMRAVATI\",444807:\"AMRAVATI\",444813:\"AMRAVATI\",444606:\"AMRAVATI\",444707:\"AMRAVATI\",444710:\"AMRAVATI\",444711:\"AMRAVATI\",444902:\"AMRAVATI\",444605:\"AMRAVATI\",444809:\"AMRAVATI\",444903:\"AMRAVATI\",444804:\"AMRAVATI\",444607:\"AMRAVATI\",444907:\"AMRAVATI\",444603:\"AMRAVATI\",444810:\"AMRAVATI\",444604:\"AMRAVATI\",443203:\"BULDHANA\",443403:\"BULDHANA\",444203:\"BULDHANA\",443103:\"BULDHANA\",443404:\"BULDHANA\",443206:\"BULDHANA\",443201:\"BULDHANA\",444303:\"BULDHANA\",444312:\"BULDHANA\",444301:\"BULDHANA\",443301:\"BULDHANA\",443303:\"BULDHANA\",443402:\"BULDHANA\",443101:\"BULDHANA\",444204:\"BULDHANA\",443102:\"BULDHANA\",443106:\"BULDHANA\",443002:\"BULDHANA\",444306:\"BULDHANA\",443202:\"BULDHANA\",444202:\"BULDHANA\",443204:\"BULDHANA\",443001:\"BULDHANA\",443401:\"BULDHANA\",443308:\"BULDHANA\",443112:\"BULDHANA\",443304:\"BULDHANA\",443104:\"BULDHANA\",443302:\"BULDHANA\",444201:\"BULDHANA\",444304:\"BULDHANA\",442707:\"GADCHIROLI\",442904:\"CHANDRAPUR\",441206:\"CHANDRAPUR\",442905:\"CHANDRAPUR\",442705:\"GADCHIROLI\",442702:\"CHANDRAPUR\",442703:\"GADCHIROLI\",441221:\"CHANDRAPUR\",442906:\"CHANDRAPUR\",442903:\"CHANDRAPUR\",442605:\"GADCHIROLI\",442603:\"GADCHIROLI\",441207:\"GADCHIROLI\",442914:\"CHANDRAPUR\",441217:\"GADCHIROLI\",442504:\"GADCHIROLI\",442917:\"CHANDRAPUR\",441215:\"CHANDRAPUR\",441209:\"Gadchiroli\",441223:\"CHANDRAPUR\",442710:\"Gadchiroli\",442606:\"Gadchiroli\",441208:\"GADCHIROLI\",442403:\"CHANDRAPUR\",442908:\"CHANDRAPUR\",442901:\"CHANDRAPUR\",442701:\"CHANDRAPUR\",441226:\"CHANDRAPUR\",442604:\"GADCHIROLI\",442902:\"CHANDRAPUR\",441224:\"CHANDRAPUR\",441225:\"CHANDRAPUR\",442704:\"GADCHIROLI\",442502:\"CHANDRAPUR\",442709:\"GADCHIROLI\",442402:\"CHANDRAPUR\",442401:\"CHANDRAPUR\",442501:\"CHANDRAPUR\",442404:\"CHANDRAPUR\",442907:\"CHANDRAPUR\",441212:\"CHANDRAPUR\",442918:\"CHANDRAPUR\",442916:\"CHANDRAPUR\",442505:\"CHANDRAPUR\",441205:\"CHANDRAPUR\",441228:\"CHANDRAPUR\",441222:\"CHANDRAPUR\",442507:\"CHANDRAPUR\",442503:\"CHANDRAPUR\",442406:\"CHANDRAPUR\",442919:\"GADCHIROLI\",440010:\"Nagpur\",440003:\"Nagpur\",440024:\"Nagpur\",440008:\"Nagpur\",440037:\"Nagpur\",440014:\"Nagpur\",440013:\"Nagpur\",440001:\"Nagpur\",440019:\"Nagpur\",440012:\"Nagpur\",440017:\"Nagpur\",440018:\"Nagpur\",440036:\"Nagpur\",440035:\"Nagpur\",440025:\"Nagpur\",440022:\"Nagpur\",440032:\"Nagpur\",440030:\"Nagpur\",440034:\"Nagpur\",440005:\"Nagpur\",440002:\"Nagpur\",440015:\"Nagpur\",440020:\"Nagpur\",440027:\"Nagpur\",440006:\"Nagpur\",440016:\"Nagpur\",440033:\"Nagpur\",440026:\"Nagpur\",440007:\"Nagpur\",440021:\"NAGPUR\",441210:\"NAGPUR\",441107:\"NAGPUR\",441614:\"GONDIA\",440023:\"NAGPUR\",441201:\"NAGPUR\",441903:\"BHANDARA\",441401:\"NAGPUR\",441908:\"BHANDARA\",441912:\"BHANDARA\",441901:\"GONDIA\",441202:\"NAGPUR\",441910:\"BHANDARA\",441802:\"BHANDARA\",441110:\"NAGPUR\",441804:\"BHANDARA\",441902:\"GONDIA\",441914:\"BHANDARA\",441203:\"NAGPUR\",441911:\"GONDIA\",441701:\"GONDIA\",441106:\"NAGPUR\",441108:\"NAGPUR\",441907:\"BHANDARA\",441601:\"GONDIA\",441101:\"NAGPUR\",441501:\"NAGPUR\",441807:\"GONDIA\",441915:\"BHANDARA\",441702:\"GONDIA\",441805:\"BHANDARA\",441906:\"BHANDARA\",441304:\"NAGPUR\",441214:\"NAGPUR\",441905:\"BHANDARA\",441803:\"BHANDARA\",441904:\"BHANDARA\",441104:\"NAGPUR\",441305:\"NAGPUR\",441801:\"GONDIA\",441809:\"BHANDARA\",441102:\"NAGPUR\",441806:\"GONDIA\",441204:\"NAGPUR\",441924:\"BHANDARA\",441113:\"NAGPUR\",441105:\"NAGPUR\",441916:\"GONDIA\",441301:\"NAGPUR\",441913:\"BHANDARA\",441302:\"NAGPUR\",441909:\"BHANDARA\",441306:\"NAGPUR\",441502:\"NAGPUR\",441103:\"NAGPUR\",441123:\"NAGPUR\",441404:\"NAGPUR\",441122:\"NAGPUR\",441111:\"NAGPUR\",441001:\"NAGPUR\",441112:\"NAGPUR\",441303:\"NAGPUR\",441109:\"NAGPUR\",442101:\"WARDHA\",442307:\"WARDHA\",442001:\"WARDHA\",442304:\"WARDHA\",442202:\"WARDHA\",442201:\"WARDHA\",442301:\"WARDHA\",442302:\"WARDHA\",442104:\"WARDHA\",442102:\"WARDHA\",442203:\"WARDHA\",442003:\"WARDHA\",442306:\"WARDHA\",442106:\"WARDHA\",442305:\"WARDHA\",442111:\"WARDHA\",442303:\"WARDHA\",442107:\"WARDHA\",442105:\"WARDHA\",445210:\"Yavatmal\",445215:\"Yavatmal\",445304:\"Yavatmal\",445102:\"Yavatmal\",445302:\"Yavatmal\",445109:\"Yavatmal\",445207:\"Yavatmal\",445301:\"Yavatmal\",445205:\"Yavatmal\",445402:\"Yavatmal\",445305:\"Yavatmal\",445110:\"Yavatmal\",445105:\"Yavatmal\",445103:\"Yavatmal\",445001:\"Yavatmal\",445101:\"Yavatmal\",445106:\"Yavatmal\",445204:\"Yavatmal\",445206:\"Yavatmal\",445202:\"Yavatmal\",445002:\"Yavatmal\",445230:\"Yavatmal\",445201:\"Yavatmal\",445303:\"Yavatmal\",445308:\"Yavatmal\",445306:\"Yavatmal\",445307:\"Yavatmal\",445323:\"Yavatmal\",445203:\"Yavatmal\",445324:\"Yavatmal\",445401:\"Yavatmal\",445209:\"Yavatmal\",445211:\"Yavatmal\",445216:\"Yavatmal\",423502:\"Jalgaon\",423101:\"Jalgaon\",423201:\"Malegaon\",423208:\"Malegaon\",422209:\"Malegaon\",423301:\"Malegaon\",423302:\"Malegaon\",423204:\"Malegaon\",423402:\"Malegaon\",423401:\"Malegaon\",423104:\"Malegaon\",423303:\"Malegaon\",423205:\"Malegaon\",423501:\"Malegaon\",422205:\"Malegaon\",423106:\"Malegaon\",423102:\"Malegaon\",423117:\"Malegaon\",423213:\"Malegaon\",423212:\"Malegaon\",424109:\"Malegaon\",423110:\"Malegaon\",423206:\"Malegaon\",423105:\"Malegaon\",422305:\"Malegaon\",422308:\"Malegaon\",423403:\"Malegaon\",422303:\"Malegaon\",423202:\"Malegaon\",422304:\"Malegaon\",422306:\"Malegaon\",423203:\"Malegaon\",423111:\"Malegaon\",423108:\"Malegaon\",422003:\"NASHIK\",422502:\"NASHIK\",422215:\"NASHIK\",422004:\"NASHIK\",422211:\"NASHIK\",422212:\"NASHIK\",422208:\"NASHIK\",422207:\"NASHIK\",422010:\"NASHIK\",422007:\"NASHIK\",422204:\"NASHIK\",422213:\"NASHIK\",422012:\"NASHIK\",422403:\"NASHIK\",422202:\"NASHIK\",422301:\"NASHIK\",422103:\"NASHIK\",422401:\"NASHIK\",422210:\"NASHIK\",422606:\"NASHIK\",422013:\"NASHIK\",422102:\"NASHIK\",422001:\"NASHIK\",422201:\"NASHIK\",422009:\"NASHIK\",422104:\"NASHIK\",422112:\"NASHIK\",422203:\"NASHIK\",422214:\"NASHIK\",422501:\"NASHIK\",422302:\"NASHIK\",422011:\"NASHIK\",422006:\"NASHIK\",422222:\"NASHIK\",422402:\"NASHIK\",422002:\"NASHIK\",422005:\"NASHIK\",422101:\"NASHIK\",422113:\"NASHIK\",422105:\"NASHIK\",422221:\"NASHIK\",422206:\"NASHIK\",422008:\"NASHIK\",410206:\"RAIGARH(MH)\",400708:\"THANE\",410221:\"RAIGARH(MH)\",410201:\"RAIGARH(MH)\",410207:\"RAIGARH(MH)\",400614:\"THANE\",400702:\"RAIGARH(MH)\",410101:\"RAIGARH(MH)\",400706:\"THANE\",410208:\"RAIGARH(MH)\",410203:\"RAIGARH(MH)\",400701:\"THANE\",410216:\"RAIGARH(MH)\",400707:\"RAIGARH(MH)\",400703:\"THANE\",410218:\"RAIGARH(MH)\",410202:\"RAIGARH(MH)\",410210:\"RAIGARH(MH)\",410204:\"RAIGARH(MH)\",400709:\"THANE\",410102:\"RAIGARH(MH)\",410220:\"RAIGARH(MH)\",400710:\"THANE\",410222:\"RAIGARH(MH)\",400704:\"RAIGARH(MH)\",400705:\"THANE\",421303:\"PALGHAR\",401204:\"THANE\",401606:\"PALGHAR\",401102:\"PALGHAR\",401301:\"PALGHAR\",401602:\"PALGHAR\",401501:\"PALGHAR\",401302:\"PALGHAR\",401103:\"PALGHAR\",401604:\"PALGHAR\",401403:\"PALGHAR\",401601:\"PALGHAR\",401202:\"PALGHAR\",401201:\"PALGHAR\",401303:\"PALGHAR\",401105:\"PALGHAR\",401101:\"PALGHAR\",401701:\"PALGHAR\",401503:\"PALGHAR\",401603:\"PALGHAR\",401605:\"PALGHAR\",401608:\"PALGHAR\",401502:\"PALGHAR\",401405:\"PALGHAR\",401106:\"THANE\",401206:\"PALGHAR\",401203:\"PALGHAR\",401107:\"THANE\",401702:\"PALGHAR\",401208:\"PALGHAR\",401304:\"PALGHAR\",401607:\"PALGHAR\",401402:\"PALGHAR\",401401:\"PALGHAR\",401703:\"PALGHAR\",401207:\"PALGHAR\",401209:\"PALGHAR\",401404:\"PALGHAR\",401504:\"PALGHAR\",401506:\"PALGHAR\",401305:\"PALGHAR\",402305:\"RAIGARH\",402303:\"RAIGARH\",402403:\"RAIGARH\",402103:\"RAIGARH\",402401:\"RAIGARH\",402203:\"RAIGARH\",402126:\"RAIGARH\",402204:\"RAIGARH\",402201:\"RAIGARH\",402307:\"RAIGARH\",402107:\"RAIGARH\",402101:\"RAIGARH\",402301:\"RAIGARH\",402106:\"RAIGARH\",402113:\"RAIGARH\",402109:\"RAIGARH\",410205:\"RAIGARH\",402208:\"RAIGARH\",402114:\"RAIGARH\",402104:\"RAIGARH\",402306:\"RAIGARH\",402120:\"RAIGARH\",402111:\"RAIGARH\",402404:\"RAIGARH\",402302:\"RAIGARH\",402308:\"RAIGARH\",402110:\"RAIGARH\",402202:\"RAIGARH\",402122:\"RAIGARH\",402105:\"RAIGARH\",415213:\"RAIGARH\",402304:\"RAIGARH\",402102:\"RAIGARH\",402117:\"RAIGARH\",402402:\"RAIGARH\",402209:\"RAIGARH\",402115:\"RAIGARH\",402309:\"RAIGARH\",402108:\"RAIGARH\",402112:\"RAIGARH\",402125:\"RAIGARH\",402116:\"RAIGARH\",402207:\"RAIGARH\",421506:\"THANE\",421601:\"THANE\",421302:\"THANE\",421501:\"THANE\",400610:\"THANE\",421102:\"THANE\",421503:\"THANE\",421402:\"THANE\",400608:\"THANE\",421002:\"THANE\",421603:\"THANE\",421308:\"THANE\",421312:\"THANE\",400607:\"THANE\",400612:\"THANE\",421203:\"THANE\",421201:\"THANE\",421306:\"THANE\",421403:\"THANE\",400615:\"THANE\",400602:\"THANE\",421505:\"THANE\",400606:\"THANE\",400605:\"THANE\",421301:\"THANE\",421602:\"THANE\",421401:\"THANE\",421605:\"THANE\",421204:\"THANE\",421311:\"THANE\",400603:\"THANE\",421103:\"THANE\",421502:\"THANE\",421101:\"THANE\",400601:\"THANE\",421004:\"THANE\",421005:\"THANE\",421305:\"THANE\",421202:\"THANE\",400604:\"THANE\",413701:\"AHMED NAGAR\",414002:\"AHMED NAGAR\",414001:\"AHMED NAGAR\",414005:\"AHMED NAGAR\",414701:\"AHMED NAGAR\",414502:\"AHMED NAGAR\",414102:\"AHMED NAGAR\",414305:\"AHMED NAGAR\",414402:\"AHMED NAGAR\",414505:\"AHMED NAGAR\",414301:\"AHMED NAGAR\",413201:\"AHMED NAGAR\",413702:\"AHMED NAGAR\",414401:\"AHMED NAGAR\",413703:\"AHMED NAGAR\",414302:\"AHMED NAGAR\",414006:\"AHMED NAGAR\",414504:\"AHMED NAGAR\",414403:\"AHMED NAGAR\",413205:\"AHMED NAGAR\",414113:\"AHMED NAGAR\",414103:\"AHMED NAGAR\",413728:\"AHMED NAGAR\",414201:\"AHMED NAGAR\",414503:\"AHMED NAGAR\",414105:\"AHMED NAGAR\",414606:\"AHMED NAGAR\",414106:\"AHMED NAGAR\",414111:\"AHMED NAGAR\",414306:\"AHMED NAGAR\",413704:\"AHMED NAGAR\",414501:\"AHMED NAGAR\",414304:\"AHMED NAGAR\",413204:\"AHMED NAGAR\",414303:\"AHMED NAGAR\",414607:\"AHMED NAGAR\",414101:\"AHMED NAGAR\",414601:\"AHMED NAGAR\",414602:\"AHMED NAGAR\",413726:\"AHMED NAGAR\",414110:\"AHMED NAGAR\",414003:\"AHMED NAGAR\",413306:\"SOLAPUR\",413212:\"SOLAPUR\",413304:\"SOLAPUR\",413308:\"SOLAPUR\",413101:\"SOLAPUR\",413307:\"SOLAPUR\",413211:\"SOLAPUR\",413208:\"SOLAPUR\",413309:\"SOLAPUR\",413305:\"SOLAPUR\",413203:\"SOLAPUR\",413209:\"SOLAPUR\",413301:\"SOLAPUR\",413302:\"SOLAPUR\",413252:\"SOLAPUR\",413202:\"SOLAPUR\",413319:\"SOLAPUR\",413310:\"SOLAPUR\",413111:\"SOLAPUR\",413223:\"SOLAPUR\",413315:\"SOLAPUR\",413322:\"SOLAPUR\",413317:\"SOLAPUR\",413113:\"SOLAPUR\",413112:\"SOLAPUR\",413109:\"SOLAPUR\",413210:\"SOLAPUR\",413314:\"SOLAPUR\",413251:\"SOLAPUR\",413107:\"SOLAPUR\",413206:\"SOLAPUR\",413250:\"SOLAPUR\",413108:\"SOLAPUR\",413118:\"SOLAPUR\",411014:\"Pune\",411032:\"Pune\",411035:\"Pune\",411003:\"Pune\",411027:\"Pune\",411026:\"Pune\",411039:\"Pune\",411037:\"Pune\",411001:\"Pune\",411031:\"Pune\",411062:\"PUNE\",411019:\"Pune\",411033:\"Pune\",411012:\"Pune\",411015:\"Pune\",411028:\"Pune\",411013:\"Pune\",411057:\"Pune\",411017:\"Pune\",411034:\"Pune\",411048:\"Pune\",411047:\"Pune\",411018:\"Pune\",411060:\"Pune\",411036:\"PUNE\",411044:\"Pune\",411061:\"Pune\",411022:\"Pune\",411040:\"Pune\",411006:\"Pune\",411004:\"PUNE\",411046:\"PUNE\",411051:\"PUNE\",411021:\"PUNE\",411067:\"PUNE\",411007:\"PUNE\",411002:\"PUNE\",411045:\"PUNE\",411008:\"PUNE\",411042:\"PUNE\",411038:\"PUNE\",411020:\"PUNE\",411005:\"PUNE\",411043:\"PUNE\",411016:\"PUNE\",411052:\"PUNE\",411011:\"PUNE\",411024:\"PUNE\",411023:\"PUNE\",411030:\"PUNE\",411068:\"PUNE\",411009:\"PUNE\",411041:\"PUNE\",411058:\"PUNE\",410506:\"PUNE\",410509:\"PUNE\",413132:\"PUNE\",412411:\"PUNE\",412205:\"PUNE\",412201:\"PUNE\",412105:\"PUNE\",413801:\"PUNE\",412211:\"PUNE\",412206:\"PUNE\",410507:\"PUNE\",412115:\"PUNE\",410401:\"PUNE\",412213:\"PUNE\",410501:\"PUNE\",410502:\"PUNE\",410505:\"PUNE\",412218:\"PUNE\",412408:\"PUNE\",412410:\"PUNE\",413114:\"PUNE\",412212:\"PUNE\",412401:\"PUNE\",412207:\"PUNE\",412404:\"PUNE\",412406:\"PUNE\",412402:\"PUNE\",412405:\"PUNE\",412204:\"PUNE\",413102:\"PUNE\",413133:\"PUNE\",413103:\"PUNE\",412108:\"PUNE\",413104:\"PUNE\",412303:\"PUNE\",412203:\"PUNE\",412209:\"PUNE\",412214:\"PUNE\",413105:\"PUNE\",413130:\"PUNE\",412301:\"PUNE\",412106:\"PUNE\",410513:\"PUNE\",413106:\"PUNE\",412202:\"PUNE\",412208:\"PUNE\",410503:\"PUNE\",410515:\"PUNE\",412409:\"PUNE\",412210:\"PUNE\",412101:\"PUNE\",412112:\"PUNE\",412305:\"PUNE\",412311:\"PUNE\",412109:\"PUNE\",413110:\"PUNE\",410508:\"PUNE\",412403:\"PUNE\",411025:\"PUNE\",412216:\"PUNE\",410516:\"PUNE\",413120:\"PUNE\",412102:\"PUNE\",412104:\"PUNE\",410504:\"PUNE\",412306:\"PUNE\",410402:\"PUNE\",412215:\"PUNE\",412107:\"PUNE\",410403:\"PUNE\",410405:\"PUNE\",412412:\"PUNE\",412219:\"PUNE\",410512:\"PUNE\",412220:\"PUNE\",413116:\"PUNE\",410301:\"PUNE\",412110:\"PUNE\",412103:\"PUNE\",410511:\"PUNE\",413802:\"PUNE\",410510:\"PUNE\",413115:\"PUNE\",412307:\"PUNE\",412304:\"PUNE\",410406:\"PUNE\",412308:\"PUNE\",410302:\"PUNE\",412312:\"PUNE\",412803:\"SATARA\",415537:\"SATARA\",415205:\"SATARA\",415539:\"SATARA\",412806:\"SATARA\",412802:\"SATARA\",415012:\"SATARA\",415014:\"SATARA\",415112:\"SATARA\",415011:\"SATARA\",415013:\"SATARA\",415506:\"SATARA\",415021:\"SATARA\",415002:\"SATARA\",415511:\"SATARA\",415527:\"SATARA\",415206:\"SATARA\",415525:\"SATARA\",415508:\"SATARA\",415521:\"SATARA\",415523:\"SATARA\",415020:\"SATARA\",415019:\"SATARA\",415106:\"SATARA\",415518:\"SATARA\",415114:\"SATARA\",415116:\"SATARA\",415513:\"SATARA\",412805:\"SATARA\",415519:\"SATARA\",415510:\"SATARA\",415209:\"SATARA\",415514:\"SATARA\",415124:\"SATARA\",415507:\"SATARA\",412804:\"SATARA\",415109:\"SATARA\",415526:\"SATARA\",415010:\"SATARA\",415022:\"SATARA\",415501:\"SATARA\",415515:\"SATARA\",415505:\"SATARA\",415524:\"SATARA\",415207:\"SATARA\",415503:\"SATARA\",415122:\"SATARA\",415536:\"SATARA\",415520:\"SATARA\",415103:\"SATARA\",415004:\"SATARA\",415538:\"SATARA\",415211:\"SATARA\",415509:\"SATARA\",415104:\"SATARA\",415504:\"SATARA\",415111:\"SATARA\",415540:\"SATARA\",415512:\"SATARA\",415105:\"SATARA\",415015:\"SATARA\",415522:\"SATARA\",415530:\"SATARA\",412801:\"SATARA\",415528:\"SATARA\",415312:\"SATARA\",415110:\"SATARA\",415502:\"SATARA\",415516:\"SATARA\",415003:\"SATARA\",415108:\"SATARA\",415115:\"SATARA\",415023:\"SATARA\",415212:\"SATARA\",415102:\"SATARA\",415107:\"SATARA\",415001:\"SATARA\",415517:\"SATARA\",422601:\"Ahmed Nagar\",422620:\"Ahmed Nagar\",422610:\"Ahmed Nagar\",422605:\"Ahmed Nagar\",413715:\"Ahmed Nagar\",413705:\"Ahmed Nagar\",413714:\"Ahmed Nagar\",413738:\"Ahmed Nagar\",423107:\"Ahmed Nagar\",413737:\"Ahmed Nagar\",422602:\"Ahmed Nagar\",422604:\"Ahmed Nagar\",413725:\"Ahmed Nagar\",414603:\"Ahmed Nagar\",413739:\"Ahmed Nagar\",414609:\"Ahmed Nagar\",414605:\"Ahmed Nagar\",413721:\"Ahmed Nagar\",413708:\"Ahmed Nagar\",423601:\"Ahmed Nagar\",413723:\"Ahmed Nagar\",423604:\"Ahmed Nagar\",413706:\"Ahmed Nagar\",413710:\"Ahmed Nagar\",422611:\"Ahmed Nagar\",413736:\"Ahmed Nagar\",423603:\"Ahmed Nagar\",414604:\"Ahmed Nagar\",413716:\"Ahmed Nagar\",423607:\"Ahmed Nagar\",422603:\"Ahmed Nagar\",413719:\"Ahmed Nagar\",413709:\"Ahmed Nagar\",413718:\"Ahmed Nagar\",422622:\"Ahmed Nagar\",423605:\"Ahmed Nagar\",413717:\"Ahmed Nagar\",413720:\"Ahmed Nagar\",423602:\"Ahmed Nagar\",423109:\"Ahmed Nagar\",413712:\"Ahmed Nagar\",413713:\"Ahmed Nagar\",422608:\"Ahmed Nagar\",413722:\"Ahmed Nagar\",413707:\"Ahmed Nagar\",413711:\"Ahmed Nagar\",413228:\"SOLAPUR\",413409:\"SOLAPUR\",413215:\"SOLAPUR\",413216:\"SOLAPUR\",413222:\"SOLAPUR\",413214:\"SOLAPUR\",413219:\"SOLAPUR\",413253:\"SOLAPUR\",413221:\"SOLAPUR\",413002:\"SOLAPUR\",413006:\"SOLAPUR\",413303:\"SOLAPUR\",413248:\"SOLAPUR\",413008:\"SOLAPUR\",413220:\"SOLAPUR\",413218:\"SOLAPUR\",413255:\"SOLAPUR\",413226:\"SOLAPUR\",413401:\"SOLAPUR\",413403:\"SOLAPUR\",413213:\"SOLAPUR\",413406:\"SOLAPUR\",413404:\"SOLAPUR\",413412:\"SOLAPUR\",413005:\"SOLAPUR\",413410:\"SOLAPUR\",413324:\"SOLAPUR\",413402:\"SOLAPUR\",413227:\"SOLAPUR\",413003:\"SOLAPUR\",413004:\"SOLAPUR\",413001:\"SOLAPUR\",413411:\"SOLAPUR\",413224:\"SOLAPUR\",413217:\"SOLAPUR\",413007:\"SOLAPUR\",795002:\"Imphal West\",795006:\"Churachandpur\",795101:\"Thoubal\",795135:\"Thoubal\",795128:\"Churachandpur\",795145:\"Ukhrul\",795141:\"Tamenglong\",795102:\"Chandel\",795149:\"Thoubal\",795130:\"Thoubal\",795132:\"Imphal West\",795103:\"Thoubal\",795125:\"Tamenglong\",795138:\"Thoubal\",795005:\"Imphal East\",795136:\"Imphal West\",795134:\"Bishnupur\",795159:\"Tamenglong\",795139:\"Churachandpur\",795115:\"Imphal West\",795126:\"Bishnupur\",795009:\"Imphal West\",795131:\"Chandel\",795116:\"Imphal West\",795133:\"Bishnupur\",795118:\"Senapati\",795003:\"Imphal West\",795004:\"Imphal West\",795112:\"Senapati\",795142:\"Ukhrul\",795127:\"Chandel\",795122:\"Senapati\",795124:\"Bishnupur\",795104:\"Senapati\",795148:\"Thoubal\",795010:\"Imphal East\",795146:\"Imphal West\",795113:\"Imphal West\",795001:\"Imphal West\",795114:\"Imphal East\",795011:\"Bishnupur\",795129:\"Senapati\",795144:\"Ukhrul\",795008:\"Imphal East\",795107:\"Senapati\",795147:\"Tamenglong\",795007:\"Senapati\",795015:\"Ukhrul\",795117:\"Churachandpur\",795105:\"Senapati\",795140:\"Imphal West\",795150:\"Senapati\",795106:\"Senapati\",796190:\"Aizawl\",796261:\"Aizawl\",796501:\"Mammit\",796571:\"Lunglei\",796001:\"Aizawl\",796770:\"Lunglei\",796007:\"Aizawl\",796008:\"Aizawl\",796081:\"Kolasib\",796161:\"Aizawl\",796891:\"Lawngtlai\",796014:\"Aizawl\",796701:\"NA\",796321:\"Champhai\",796370:\"Champhai\",796091:\"Kolasib\",796470:\"Mammit\",796070:\"Kolasib\",796581:\"Lunglei\",796901:\"Saiha\",796710:\"Lunglei\",796005:\"Aizawl\",796181:\"Serchhip\",796320:\"Champhai\",796310:\"Champhai\",796012:\"Aizawl\",796009:\"Aizawl\",796186:\"NA\",796017:\"Aizawl\",796431:\"Mammit\",796441:\"Mammit\",796410:\"Mammit\",796111:\"Aizawl\",796751:\"Lunglei\",796015:\"Aizawal\",796691:\"Lunglei\",796421:\"Aizawl\",796290:\"Champhai\",796772:\"Lawngtlai\",796184:\"Serchhip\",796004:\"Aizawl\",796101:\"Kolasib\",796810:\"Lawngtlai\",796230:\"Aizawl\",796036:\"Aizawl\",796075:\"Kolasib\",796471:\"Aizawl\",798620:\"Zunhebotto\",797106:\"Dimapur\",797111:\"Wokha\",798627:\"Zunhebotto\",797114:\"Phek\",798607:\"Mokokchung\",798604:\"Mokokchung\",798611:\"Kiphire\",798616:\"Tuensang\",798603:\"Mon\",798601:\"Mokokchung\",797115:\"Dimapur\",798618:\"Mokokchung\",797109:\"Kohima\",798619:\"Zunhebotto\",797110:\"Peren\",798622:\"Mon\",797099:\"Wokha\",798625:\"Longleng\",797105:\"Kohima\",797003:\"Kohima\",798613:\"Mokokchung\",798612:\"Tuensang\",797104:\"Phek\",797107:\"NA\",798614:\"Mokokchung\",798621:\"Mon\",797103:\"Dimapur\",797117:\"Dimapur\",797113:\"Dimapur\",797116:\"Dimapur\",797112:\"Dimapur\",797121:\"Kohima\",798615:\"Mokokchung\",797006:\"Kohima\",797002:\"Kohima\",797108:\"Phek\",797001:\"Kohima\",797120:\"Kohima\",797101:\"Peren\",707004:\"Kohima\",798602:\"Mon\",797004:\"Kohima\",798623:\"Mokokchung\",797118:\"Dimapur\",799013:\"South Tripura\",799155:\"South Tripura\",799005:\"West Tripura\",799009:\"West Tripura\",799001:\"West Tripura\",799004:\"West Tripura\",799014:\"West Tripura\",799010:\"West Tripura\",799002:\"West Tripura\",799103:\"West Tripura\",799101:\"South Tripura\",799143:\"South Tripura\",799130:\"West Tripura\",799157:\"South Tripura\",799003:\"West Tripura\",799045:\"West Tripura\",799115:\"South Tripura\",799144:\"South Tripura\",799113:\"Gomati\",799211:\"West Tripura\",799145:\"South Tripura\",799212:\"West Tripura\",799007:\"West Tripura\",799006:\"West Tripura\",799104:\"South Tripura\",799105:\"South Tripura\",799131:\"West Tripura\",799132:\"Sepahijala\",799102:\"West Tripura\",799210:\"West Tripura\",799035:\"West Tripura\",799142:\"South Tripura\",799141:\"South Tripura\",799114:\"South Tripura\",799012:\"West Tripura\",799125:\"South Tripura\",799156:\"South Tripura\",799011:\"Agartala�\",799150:\"South Tripura\",799008:\"West Tripura\",799015:\"West Tripura\",799046:\"West Tripura\",799120:\"South Tripura\",799153:\"West Tripura\",799022:\"West Tripura\",792110:\"Lower Dibang Valley\",791103:\"East Siang\",792101:\"Dibang Valley\",791001:\"West Siang\",792102:\"Lohit\",791111:\"Papum Pare\",791112:\"Papum Pare\",791104:\"East Siang\",790104:\"Tawang\",791102:\"East Siang\",790002:\"West Kameng\",791123:\"Papum Pare\",791101:\"West Siang\",790102:\"East Kameng\",790114:\"West Kameng\",791120:\"Lower Subansiri\",790001:\"West Kameng\",792056:\"Changlang\",792130:\"Tirap\",792120:\"Changlang\",792104:\"Papum Pare\",791118:\"Kurung Kumey\",792001:\"Lohit\",791113:\"Lower Subansiri\",792122:\"Changlang\",790116:\"West Kameng\",791122:\"Upper Subansiri\",792129:\"Tirap\",790101:\"West Kameng\",792103:\"Lohit\",792055:\"Changlang\",791125:\"West Siang\",791002:\"Upper Siang\",791105:\"Upper Siang\",790106:\"Tawang\",791121:\"Papum Pare\",792121:\"Changlang\",790105:\"Tawang\",792131:\"Tirap\",792105:\"Lohit\",791003:\"West Siang\",791119:\"Papum Pare\",791110:\"Papum Pare\",792123:\"Changlang\",791109:\"Papum Pare\",790003:\"West Kameng\",791114:\"PAPUM PARE\",790103:\"East Kameng\",792111:\"Lohit\",799286:\"Dhalai\",799201:\"West Tripura\",799260:\"North Tripura\",799253:\"North Tripura\",799289:\"Dhalai\",799261:\"North Tripura\",799271:\"North Tripura\",799263:\"North Tripura\",799205:\"West Tripura\",799281:\"North Tripura\",799285:\"Dhalai\",799207:\"West Tripura\",799254:\"North Tripura\",799251:\"North Tripura\",799204:\"Dhalai\",799280:\"North Tripura\",799262:\"North Tripura\",799203:\"West Tripura\",799269:\"North Tripura\",799266:\"Dharmanagar\",799277:\"North Tripura\",799279:\"North Tripura\",799282:\"Dharmanagar\",799284:\"Dhalai\",799264:\"North Tripura\",799273:\"North Tripura\",799275:\"Dhalai\",799288:\"North Tripura\",799250:\"North Tripura\",799290:\"North Tripura\",799270:\"North Tripura\",799256:\"North Tripura\",799278:\"Dhalai\",799287:\"Dhalai\",799202:\"West Tripura\",794002:\"West Garo Hills\",793161:\"Jaintia Hills\",793109:\"Jaintia Hills\",794115:\"West Garo Hills\",794101:\"West Garo Hills\",793011:\"East Khasi Hills\",794102:\"South Garo Hills\",793106:\"East Khasi Hills\",794111:\"East Garo Hills\",794106:\"West Garo Hills\",793150:\"Jaintia Hills\",794103:\"West Garo Hills\",793104:\"Ri Bhoi\",794104:\"West Garo Hills\",793160:\"Jaintia Hills\",794109:\"West Garo Hills\",793116:\"Shillong\",793107:\"East Khasi Hills\",793004:\"East Khasi Hills\",794005:\"West Garo Hills\",793119:\"West Khasi Hills\",793101:\"Ri Bhoi\",793111:\"East Khasi Hills\",793108:\"East Khasi Hills\",793210:\"NA\",794110:\"East Garo Hills\",794003:\"Tura\",794108:\"East Garo Hills\",793112:\"East Khasi Hills\",794105:\"West Garo Hills\",794114:\"South Garo Hills\",793005:\"East Khasi Hills\",793012:\"East Khasi Hills\",793018:\"NA\",793120:\"West Khasi Hills\",793007:\"East Khasi Hills\",793102:\"Ri Bhoi\",793200:\"Jaintia Hills\",793002:\"East Khasi Hills\",793110:\"East Khasi Hills\",794107:\"East Garo Hills\",793114:\"West Khasi Hills\",793015:\"East Khasi Hills\",793151:\"Jaintia Hills\",793115:\"NA\",793021:\"East Khasi Hills\",793022:\"East Khasi Hills\",793103:\"Ri Bhoi\",793105:\"Ri Bhoi\",793010:\"East Khasi Hills\",793003:\"East Khasi Hills\",793126:\"NA\",793113:\"East Khasi Hills\",793121:\"East Khasi Hills\",793016:\"East Khasi Hills\",793009:\"East Khasi Hills\",793017:\"East Khasi Hills\",793008:\"East Khasi Hills\",793001:\"East Khasi Hills\",794112:\"West Garo Hills\",793019:\"East Khasi Hills\",793014:\"East Khasi Hills\",793006:\"East Khasi Hills\",794001:\"West Garo Hills\",793122:\"Ri Bhoi\",793123:\"Ri Bhoi\",751026:\"KHORDA\",756047:\"BALESWAR\",756038:\"BALESWAR\",756049:\"BALESWAR\",756036:\"BALESWAR\",756087:\"BALESWAR\",756043:\"BALESWAR\",756027:\"BALESWAR\",756030:\"BALESWAR\",756034:\"BALESWAR\",756046:\"BALESWAR\",756045:\"BALESWAR\",756028:\"BALESWAR\",756058:\"BALESWAR\",756048:\"BALESWAR\",756019:\"BALESWAR\",756044:\"BALESWAR\",756079:\"BALESWAR\",756033:\"BALESWAR\",756026:\"BALESWAR\",756037:\"BALESWAR\",756051:\"BALESWAR\",756001:\"BALESWAR\",756024:\"BALESWAR\",756083:\"BALESWAR\",756003:\"BALESWAR\",756080:\"BALESWAR\",756060:\"BALESWAR\",756042:\"BALESWAR\",756035:\"BALESWAR\",756029:\"BALESWAR\",756085:\"BALESWAR\",756025:\"BALESWAR\",756056:\"BALESWAR\",756023:\"BALESWAR\",756081:\"BALESWAR\",756021:\"BALESWAR\",756022:\"BALESWAR\",756039:\"BALESWAR\",756086:\"BALESWAR\",756020:\"BALESWAR\",756055:\"BALESWAR\",756084:\"BALESWAR\",756040:\"BALESWAR\",756041:\"BALESWAR\",756059:\"BALESWAR\",756032:\"BALESWAR\",756002:\"BALESWAR\",754223:\"BALESWAR\",756134:\"BALESWAR\",756114:\"BHADRAK\",756125:\"BHADRAK\",756128:\"BHADRAK\",756122:\"BHADRAK\",756113:\"BHADRAK\",756124:\"BHADRAK\",756182:\"BALESWAR\",756118:\"BHADRAK\",756101:\"BHADRAK\",756129:\"BHADRAK\",756116:\"BHADRAK\",756126:\"BALESWAR\",756112:\"BHADRAK\",756123:\"BHADRAK\",756117:\"BHADRAK\",756115:\"BHADRAK\",756144:\"BHADRAK\",756138:\"BHADRAK\",756131:\"BHADRAK\",756139:\"BHADRAK\",756168:\"BHADRAK\",756137:\"BHADRAK\",756121:\"BHADRAK\",756165:\"BHADRAK\",756135:\"BHADRAK\",756130:\"BHADRAK\",756164:\"BHADRAK\",756111:\"BHADRAK\",756133:\"BHADRAK\",756166:\"BHADRAK\",756119:\"BHADRAK\",756167:\"BHADRAK\",756100:\"BHADRAK\",756181:\"BHADRAK\",756120:\"BHADRAK\",756163:\"BHADRAK\",756132:\"BHADRAK\",756171:\"BHADRAK\",756127:\"BHADRAK\",756162:\"BHADRAK\",751001:\"KHORDA\",752103:\"KHORDA\",752021:\"KHORDA\",751022:\"KHORDA\",751020:\"KHORDA\",751019:\"KHORDA\",752060:\"KHORDA\",751003:\"KHORDA\",752054:\"KHORDA\",752030:\"KHORDA\",752031:\"KHORDA\",752066:\"KHORDA\",752064:\"KHORDA\",752050:\"KHORDA\",751009:\"KHORDA\",752102:\"KHORDA\",752035:\"KHORDA\",751014:\"KHORDA\",752061:\"KHORDA\",751018:\"KHORDA\",752023:\"KHORDA\",752057:\"KHORDA\",752019:\"KHORDA\",752100:\"KHORDA\",752101:\"KHORDA\",752056:\"KHORDA\",751002:\"KHORDA\",752034:\"KHORDA\",752027:\"KHORDA\",752062:\"KHORDA\",752115:\"KHORDA\",754012:\"KHORDA\",752020:\"KHORDA\",752038:\"KHORDA\",752018:\"KHORDA\",751006:\"KHORDA\",751011:\"KHORDA\",751016:\"KHORDA\",751025:\"KHORDA\",751015:\"KHORDA\",751027:\"KHORDA\",752022:\"KHORDA\",751024:\"KHORDA\",751030:\"KHORDA\",752055:\"KHORDA\",751029:\"KHORDA\",751017:\"KHORDA\",752037:\"KHORDA\",751012:\"KHORDA\",751031:\"KHORDA\",751008:\"KHORDA\",751010:\"KHORDA\",751013:\"KHORDA\",751023:\"KHORDA\",751007:\"KHORDA\",751021:\"KHORDA\",751005:\"KHORDA\",751028:\"KHORDA\",751004:\"KHORDA\",753012:\"CUTTACK\",754011:\"CUTTACK\",754209:\"CUTTACK\",754130:\"CUTTACK\",752120:\"CUTTACK\",754010:\"CUTTACK\",753014:\"CUTTACK\",754131:\"CUTTACK\",754004:\"CUTTACK\",754005:\"CUTTACK\",754221:\"CUTTACK\",754018:\"CUTTACK\",753001:\"CUTTACK\",754001:\"CUTTACK\",754006:\"CUTTACK\",754204:\"CUTTACK\",754112:\"CUTTACK\",754293:\"CUTTACK\",753011:\"CUTTACK\",753002:\"CUTTACK\",754100:\"CUTTACK\",754202:\"CUTTACK\",754207:\"CUTTACK\",754003:\"CUTTACK\",753006:\"CUTTACK\",754206:\"CUTTACK\",753004:\"CUTTACK\",753003:\"CUTTACK\",754013:\"CUTTACK\",754105:\"CUTTACK\",754203:\"CUTTACK\",753010:\"CUTTACK\",754021:\"CUTTACK\",753013:\"CUTTACK\",753008:\"CUTTACK\",754002:\"CUTTACK\",753007:\"CUTTACK\",753009:\"CUTTACK\",753015:\"CUTTACK\",755016:\"JAJAPUR\",755005:\"JAJAPUR\",754205:\"KENDRAPARA\",754220:\"KENDRAPARA\",755051:\"JAJAPUR\",755036:\"JAJAPUR\",754215:\"KENDRAPARA\",754228:\"KENDRAPARA\",754212:\"KENDRAPARA\",755013:\"JAJAPUR\",754214:\"KENDRAPARA\",754250:\"KENDRAPARA\",754217:\"KENDRAPARA\",755018:\"JAJAPUR\",754218:\"KENDRAPARA\",754240:\"KENDRAPARA\",755019:\"JAJAPUR\",755004:\"JAJAPUR\",755010:\"JAJAPUR\",755001:\"JAJAPUR\",755023:\"JAJAPUR\",755061:\"JAJAPUR\",754296:\"JAJAPUR\",755007:\"JAJAPUR\",755027:\"JAJAPUR\",755008:\"JAJAPUR\",754231:\"KENDRAPARA\",755024:\"JAJAPUR\",754213:\"KENDRAPARA\",754219:\"KENDRAPARA\",754245:\"KENDRAPARA\",754134:\"KENDRAPARA\",755012:\"JAJAPUR\",754244:\"KENDRAPARA\",755009:\"JAJAPUR\",755015:\"JAJAPUR\",754225:\"KENDRAPARA\",754208:\"KENDRAPARA\",754227:\"KENDRAPARA\",755017:\"JAJAPUR\",754023:\"JAJAPUR\",754224:\"KENDRAPARA\",754289:\"KENDRAPARA\",755003:\"JAJAPUR\",754153:\"KENDRAPARA\",755014:\"JAJAPUR\",755062:\"JAJAPUR\",754246:\"KENDRAPARA\",754024:\"JAJAPUR\",755025:\"JAJAPUR\",754082:\"JAJAPUR\",754222:\"KENDRAPARA\",754253:\"KENDRAPARA\",754292:\"KENDRAPARA\",755043:\"JAJAPUR\",754239:\"KENDRAPARA\",754210:\"KENDRAPARA\",755044:\"JAJAPUR\",755028:\"JAJAPUR\",755026:\"JAJAPUR\",754248:\"KENDRAPARA\",755006:\"KENDRAPARA\",755022:\"JAJAPUR\",755011:\"JAJAPUR\",755020:\"JAJAPUR\",754216:\"KENDRAPARA\",755050:\"JAJAPUR\",755049:\"JAJAPUR\",754211:\"KENDRAPARA\",754035:\"CUTTACK\",754030:\"CUTTACK\",754119:\"JAGATSINGHAPUR\",754102:\"JAGATSINGHAPUR\",754037:\"CUTTACK\",754132:\"JAGATSINGHAPUR\",754028:\"CUTTACK\",754108:\"JAGATSINGHAPUR\",754107:\"JAGATSINGHAPUR\",754032:\"CUTTACK\",754294:\"JAGATSINGHAPUR\",754162:\"JAGATSINGHAPUR\",754139:\"JAGATSINGHAPUR\",754113:\"JAGATSINGHAPUR\",754009:\"CUTTACK\",754140:\"JAGATSINGHAPUR\",754295:\"CUTTACK\",754138:\"JAGATSINGHAPUR\",754109:\"JAGATSINGHAPUR\",754029:\"CUTTACK\",754120:\"JAGATSINGHAPUR\",754008:\"CUTTACK\",754114:\"JAGATSINGHAPUR\",754031:\"CUTTACK\",754200:\"CUTTACK\",754106:\"JAGATSINGHAPUR\",754022:\"CUTTACK\",754141:\"JAGATSINGHAPUR\",754142:\"JAGATSINGHAPUR\",754136:\"JAGATSINGHAPUR\",754290:\"CUTTACK\",754201:\"CUTTACK\",754111:\"JAGATSINGHAPUR\",754025:\"CUTTACK\",754135:\"JAGATSINGHAPUR\",754110:\"JAGATSINGHAPUR\",754027:\"CUTTACK\",754160:\"JAGATSINGHAPUR\",754137:\"JAGATSINGHAPUR\",754026:\"CUTTACK\",754104:\"JAGATSINGHAPUR\",754007:\"CUTTACK\",754159:\"JAGATSINGHAPUR\",754103:\"CUTTACK\",754133:\"JAGATSINGHAPUR\",754071:\"CUTTACK\",754297:\"Cuttack\",754034:\"Cuttack\",754145:\"JAGATSINGHAPUR\",754143:\"JAGATSINGHAPUR\",757025:\"MAYURBHANJ\",757050:\"MAYURBHANJ\",757082:\"MAYURBHANJ\",757052:\"MAYURBHANJ\",757034:\"MAYURBHANJ\",757055:\"MAYURBHANJ\",757075:\"MAYURBHANJ\",757041:\"MAYURBHANJ\",757048:\"MAYURBHANJ\",757028:\"MAYURBHANJ\",757030:\"MAYURBHANJ\",757087:\"MAYURBHANJ\",757001:\"MAYURBHANJ\",757035:\"MAYURBHANJ\",757105:\"MAYURBHANJ\",757043:\"MAYURBHANJ\",757042:\"MAYURBHANJ\",757021:\"MAYURBHANJ\",757018:\"MAYURBHANJ\",757039:\"MAYURBHANJ\",757083:\"MAYURBHANJ\",757032:\"MAYURBHANJ\",757033:\"MAYURBHANJ\",757054:\"MAYURBHANJ\",757029:\"MAYURBHANJ\",757019:\"MAYURBHANJ\",757026:\"MAYURBHANJ\",757016:\"MAYURBHANJ\",757047:\"MAYURBHANJ\",757020:\"MAYURBHANJ\",757084:\"MAYURBHANJ\",757086:\"MAYURBHANJ\",757100:\"MAYURBHANJ\",757053:\"MAYURBHANJ\",757074:\"MAYURBHANJ\",757023:\"MAYURBHANJ\",757092:\"MAYURBHANJ\",757036:\"MAYURBHANJ\",757040:\"MAYURBHANJ\",757077:\"MAYURBHANJ\",757045:\"MAYURBHANJ\",757051:\"MAYURBHANJ\",757022:\"MAYURBHANJ\",757003:\"MAYURBHANJ\",757014:\"MAYURBHANJ\",757031:\"MAYURBHANJ\",757046:\"MAYURBHANJ\",757104:\"MAYURBHANJ\",757101:\"MAYURBHANJ\",757024:\"MAYURBHANJ\",757091:\"MAYURBHANJ\",757049:\"MAYURBHANJ\",757107:\"MAYURBHANJ\",757085:\"MAYURBHANJ\",757038:\"MAYURBHANJ\",757002:\"MAYURBHANJ\",757073:\"MAYURBHANJ\",757037:\"MAYURBHANJ\",757017:\"MAYURBHANJ\",757081:\"MAYURBHANJ\",757102:\"MAYURBHANJ\",757079:\"MAYURBHANJ\",757093:\"MAYURBHANJ\",757103:\"MAYURBHANJ\",757027:\"MAYURBHANJ\",757106:\"MAYURBHANJ\",752016:\"PURI\",752093:\"NAYAGARH\",752014:\"PURI\",752109:\"PURI\",752012:\"PURI\",752017:\"PURI\",752110:\"PURI\",752106:\"PURI\",752011:\"PURI\",752010:\"PURI\",752024:\"NAYAGARH\",752002:\"PURI\",752078:\"NAYAGARH\",752025:\"NAYAGARH\",752094:\"NAYAGARH\",752032:\"PURI\",752065:\"NAYAGARH\",752121:\"PURI\",752063:\"NAYAGARH\",752084:\"NAYAGARH\",752068:\"NAYAGARH\",752082:\"NAYAGARH\",752077:\"NAYAGARH\",752105:\"PURI\",752026:\"NAYAGARH\",752046:\"PURI\",752085:\"NAYAGARH\",752045:\"PURI\",752111:\"PURI\",752001:\"PURI\",752070:\"NAYAGARH\",752118:\"PURI\",752089:\"NAYAGARH\",752104:\"PURI\",752081:\"NAYAGARH\",752080:\"NAYAGARH\",752013:\"PURI\",752107:\"PURI\",752092:\"NAYAGARH\",752108:\"PURI\",752114:\"PURI\",752113:\"PURI\",752091:\"NAYAGARH\",752116:\"PURI\",752090:\"NAYAGARH\",752079:\"NAYAGARH\",752015:\"PURI\",752119:\"PURI\",752083:\"NAYAGARH\",752069:\"PURI\",752003:\"PURI\",761111:\"GANJAM\",761144:\"GANJAM\",761118:\"GANJAM\",761120:\"GANJAM\",761121:\"GANJAM\",761104:\"GANJAM\",761119:\"GANJAM\",761108:\"GANJAM\",761117:\"GANJAM\",761110:\"GANJAM\",761151:\"GANJAM\",761143:\"GANJAM\",761131:\"GANJAM\",761124:\"GANJAM\",761109:\"GANJAM\",761101:\"GANJAM\",761116:\"GANJAM\",761125:\"GANJAM\",761141:\"GANJAM\",761114:\"GANJAM\",761107:\"GANJAM\",761115:\"GANJAM\",761106:\"GANJAM\",761123:\"GANJAM\",761133:\"GANJAM\",761122:\"GANJAM\",761126:\"GANJAM\",761132:\"GANJAM\",761103:\"GANJAM\",761146:\"GANJAM\",761102:\"GANJAM\",761140:\"GANJAM\",761013:\"GANJAM\",761026:\"GANJAM\",761029:\"GANJAM\",761217:\"GAJAPATI\",761019:\"GANJAM\",761012:\"GANJAM\",760011:\"GANJAM\",761005:\"GANJAM\",761035:\"GANJAM\",760010:\"GANJAM\",761100:\"GANJAM\",761043:\"GANJAM\",761041:\"GANJAM\",761105:\"GANJAM\",761011:\"GANJAM\",761032:\"GANJAM\",761006:\"GANJAM\",761007:\"GANJAM\",761045:\"GANJAM\",761018:\"GANJAM\",761004:\"GANJAM\",761042:\"GANJAM\",760001:\"GANJAM\",760007:\"GANJAM\",761010:\"GANJAM\",761002:\"GANJAM\",761030:\"GANJAM\",761054:\"GANJAM\",761003:\"GANJAM\",760004:\"GANJAM\",760002:\"GANJAM\",761055:\"GANJAM\",761031:\"GANJAM\",761001:\"GANJAM\",761209:\"GANJAM\",761028:\"GANJAM\",761008:\"GANJAM\",761014:\"GANJAM\",761020:\"GANJAM\",760003:\"GANJAM\",761009:\"GANJAM\",761052:\"GANJAM\",761037:\"GANJAM\",761027:\"GANJAM\",760005:\"GANJAM\",760008:\"GANJAM\",761025:\"GANJAM\",760009:\"GANJAM\",760006:\"GANJAM\",766011:\"KALAHANDI\",766106:\"NUAPADA\",766018:\"KALAHANDI\",766015:\"KALAHANDI\",766019:\"KALAHANDI\",766102:\"KALAHANDI\",766111:\"NUAPADA\",766105:\"NUAPADA\",766028:\"KALAHANDI\",766104:\"NUAPADA\",766017:\"KALAHANDI\",766036:\"KALAHANDI\",766014:\"KALAHANDI\",766118:\"NUAPADA\",766002:\"KALAHANDI\",766037:\"KALAHANDI\",766107:\"NUAPADA\",766100:\"KALAHANDI\",766023:\"KALAHANDI\",766029:\"KALAHANDI\",766013:\"KALAHANDI\",766020:\"KALAHANDI\",766027:\"KALAHANDI\",766103:\"KALAHANDI\",766012:\"KALAHANDI\",766108:\"NUAPADA\",766001:\"KALAHANDI\",766101:\"KALAHANDI\",766016:\"KALAHANDI\",766031:\"KALAHANDI\",766110:\"KALAHANDI\",766026:\"KALAHANDI\",766032:\"KALAHANDI\",764021:\"KORAPUT\",764073:\"NABARANGAPUR\",764059:\"NABARANGAPUR\",764027:\"KORAPUT\",764063:\"NABARANGAPUR\",764044:\"MALKANGIRI\",764055:\"KORAPUT\",764049:\"NABARANGAPUR\",764039:\"KORAPUT\",764077:\"NABARANGAPUR\",764087:\"MALKANGIRI\",764056:\"KORAPUT\",764052:\"MALKANGIRI\",764005:\"KORAPUT\",764002:\"KORAPUT\",764041:\"KORAPUT\",764075:\"NABARANGAPUR\",764001:\"KORAPUT\",764037:\"KORAPUT\",764051:\"MALKANGIRI\",764061:\"NABARANGAPUR\",764076:\"NABARANGAPUR\",764040:\"MALKANGIRI\",764045:\"MALKANGIRI\",764072:\"NABARANGAPUR\",764038:\"KORAPUT\",764043:\"KORAPUT\",764014:\"KORAPUT\",764047:\"MALKANGIRI\",764006:\"KORAPUT\",764058:\"KORAPUT\",764057:\"KORAPUT\",764074:\"NABARANGAPUR\",764070:\"NABARANGAPUR\",763008:\"KORAPUT\",765013:\"KORAPUT\",764071:\"NABARANGAPUR\",764086:\"MALKANGIRI\",764028:\"KORAPUT\",764036:\"KORAPUT\",763003:\"KORAPUT\",764003:\"KORAPUT\",764088:\"NABARANGAPUR\",764011:\"KORAPUT\",764078:\"NABARANGAPUR\",764081:\"KORAPUT\",764004:\"KORAPUT\",764046:\"MALKANGIRI\",764085:\"NABARANGAPUR\",764020:\"KORAPUT\",764048:\"MALKANGIRI\",763004:\"KORAPUT\",764042:\"MALKANGIRI\",763002:\"KORAPUT\",763001:\"KORAPUT\",762112:\"KANDHAMAL\",762029:\"KANDHAMAL\",762023:\"BOUDH\",762015:\"BOUDH\",762021:\"KANDHAMAL\",762018:\"BOUDH\",762010:\"KANDHAMAL\",762020:\"BOUDH\",762012:\"KANDHAMAL\",762013:\"BOUDH\",762104:\"KANDHAMAL\",762017:\"BOUDH\",762103:\"KANDHAMAL\",762026:\"BOUDH\",762030:\"BOUDH\",762101:\"KANDHAMAL\",762110:\"KANDHAMAL\",762002:\"KANDHAMAL\",762014:\"BOUDH\",762109:\"KANDHAMAL\",762102:\"KANDHAMAL\",762022:\"KANDHAMAL\",762024:\"BOUDH\",762106:\"KANDHAMAL\",762105:\"KANDHAMAL\",762011:\"KANDHAMAL\",762027:\"KANDHAMAL\",762016:\"BOUDH\",762107:\"KANDHAMAL\",762028:\"KANDHAMAL\",762100:\"KANDHAMAL\",762019:\"KANDHAMAL\",762001:\"KANDHAMAL\",765015:\"RAYAGADA\",761215:\"GAJAPATI\",761211:\"GAJAPATI\",765020:\"RAYAGADA\",761207:\"GAJAPATI\",765025:\"RAYAGADA\",765021:\"RAYAGADA\",761016:\"GAJAPATI\",765017:\"RAYAGADA\",761017:\"GAJAPATI\",765026:\"RAYAGADA\",765019:\"RAYAGADA\",765002:\"RAYAGADA\",761201:\"GAJAPATI\",761015:\"GAJAPATI\",761214:\"GAJAPATI\",761206:\"GAJAPATI\",765033:\"RAYAGADA\",765029:\"RAYAGADA\",761208:\"GAJAPATI\",765024:\"RAYAGADA\",761210:\"GAJAPATI\",764062:\"RAYAGADA\",761213:\"GAJAPATI\",765018:\"RAYAGADA\",765023:\"RAYAGADA\",765022:\"RAYAGADA\",761200:\"GAJAPATI\",765016:\"RAYAGADA\",761212:\"GAJAPATI\",765034:\"RAYAGADA\",765001:\"RAYAGADA\",767066:\"BALANGIR\",767020:\"BALANGIR\",767022:\"BALANGIR\",767033:\"BALANGIR\",767018:\"SONAPUR\",767032:\"BALANGIR\",767002:\"BALANGIR\",767016:\"BALANGIR\",767067:\"BALANGIR\",767045:\"SONAPUR\",767030:\"BALANGIR\",767029:\"BALANGIR\",767060:\"BALANGIR\",767038:\"BALANGIR\",767037:\"BALANGIR\",767026:\"BALANGIR\",767025:\"BALANGIR\",767024:\"BALANGIR\",767017:\"SONAPUR\",767021:\"BALANGIR\",767001:\"BALANGIR\",767040:\"BALANGIR\",767023:\"SONAPUR\",767027:\"BALANGIR\",767041:\"BALANGIR\",767019:\"SONAPUR\",767048:\"BALANGIR\",767028:\"BALANGIR\",767061:\"BALANGIR\",767042:\"BALANGIR\",767035:\"BALANGIR\",767039:\"BALANGIR\",767071:\"BALANGIR\",767062:\"SONAPUR\",767065:\"BALANGIR\",767046:\"BALANGIR\",767068:\"BALANGIR\",767070:\"BALANGIR\",759125:\"ANGUL\",759146:\"ANGUL\",759026:\"DHENKANAL\",759126:\"ANGUL\",759029:\"DHENKANAL\",759024:\"DHENKANAL\",759017:\"DHENKANAL\",759122:\"ANGUL\",759132:\"ANGUL\",759128:\"ANGUL\",759100:\"ANGUL\",759019:\"DHENKANAL\",759117:\"ANGUL\",759103:\"ANGUL\",759120:\"DHENKANAL\",759129:\"ANGUL\",759020:\"DHENKANAL\",759014:\"DHENKANAL\",759118:\"ANGUL\",759039:\"DHENKANAL\",759143:\"ANGUL\",759141:\"ANGUL\",759013:\"DHENKANAL\",759105:\"ANGUL\",759027:\"DHENKANAL\",759116:\"ANGUL\",759025:\"DHENKANAL\",759124:\"ANGUL\",759104:\"ANGUL\",759028:\"DHENKANAL\",759119:\"ANGUL\",759023:\"DHENKANAL\",759016:\"DHENKANAL\",759018:\"DHENKANAL\",759022:\"DHENKANAL\",759121:\"DHENKANAL\",759015:\"DHENKANAL\",759127:\"ANGUL\",759130:\"ANGUL\",759021:\"DHENKANAL\",759147:\"ANGUL\",759102:\"ANGUL\",759001:\"DHENKANAL\",759111:\"ANGUL\",759145:\"ANGUL\",759123:\"ANGUL\",759148:\"ANGUL\",759037:\"ANGUL\",759101:\"ANGUL\",759107:\"ANGUL\",759040:\"DHENKANAL\",759106:\"ANGUL\",758076:\"KENDUJHAR\",758043:\"KENDUJHAR\",758082:\"KENDUJHAR\",758047:\"KENDUJHAR\",758022:\"KENDUJHAR\",758021:\"KENDUJHAR\",758031:\"KENDUJHAR\",758032:\"KENDUJHAR\",758015:\"KENDUJHAR\",758016:\"KENDUJHAR\",758017:\"KENDUJHAR\",758027:\"KENDUJHAR\",758044:\"KENDUJHAR\",758028:\"KENDUJHAR\",758087:\"KENDUJHAR\",758014:\"KENDUJHAR\",758083:\"KENDUJHAR\",758045:\"KENDUJHAR\",758020:\"KENDUJHAR\",758086:\"KENDUJHAR\",758037:\"KENDUJHAR\",758025:\"KENDUJHAR\",758023:\"KENDUJHAR\",758026:\"KENDUJHAR\",758081:\"KENDUJHAR\",758038:\"KENDUJHAR\",758034:\"KENDUJHAR\",758085:\"KENDUJHAR\",758035:\"KENDUJHAR\",758018:\"KENDUJHAR\",758078:\"KENDUJHAR\",758013:\"KENDUJHAR\",758079:\"KENDUJHAR\",758080:\"KENDUJHAR\",758029:\"KENDUJHAR\",758084:\"KENDUJHAR\",758002:\"KENDUJHAR\",758030:\"KENDUJHAR\",758046:\"KENDUJHAR\",758041:\"KENDUJHAR\",758019:\"KENDUJHAR\",758040:\"KENDUJHAR\",758001:\"KENDUJHAR\",758036:\"KENDUJHAR\",768006:\"SAMBALPUR\",768040:\"BARGARH\",768029:\"BARGARH\",768104:\"BARGARH\",768215:\"JHARSUGUDA\",768004:\"SAMBALPUR\",768031:\"BARGARH\",768110:\"DEBAGARH\",768113:\"SAMBALPUR\",768042:\"BARGARH\",768202:\"JHARSUGUDA\",768222:\"SAMBALPUR\",768103:\"BARGARH\",768226:\"JHARSUGUDA\",768027:\"BARGARH\",768109:\"DEBAGARH\",768038:\"BARGARH\",768228:\"SAMBALPUR\",768221:\"SAMBALPUR\",768032:\"BARGARH\",768112:\"SAMBALPUR\",768227:\"SAMBALPUR\",768036:\"BARGARH\",768107:\"SAMBALPUR\",768220:\"JHARSUGUDA\",768219:\"JHARSUGUDA\",768108:\"DEBAGARH\",768211:\"JHARSUGUDA\",768217:\"JHARSUGUDA\",768052:\"BARGARH\",768105:\"SAMBALPUR\",768045:\"BARGARH\",768028:\"BARGARH\",768121:\"DEBAGARH\",768039:\"BARGARH\",768025:\"SAMBALPUR\",768212:\"SAMBALPUR\",768005:\"SAMBALPUR\",768106:\"SAMBALPUR\",768033:\"BARGARH\",768218:\"JHARSUGUDA\",768213:\"JHARSUGUDA\",768030:\"BARGARH\",768214:\"SAMBALPUR\",768034:\"BARGARH\",768200:\"SAMBALPUR\",768216:\"JHARSUGUDA\",768001:\"SAMBALPUR\",768017:\"SAMBALPUR\",768035:\"BARGARH\",768050:\"BARGARH\",768026:\"SAMBALPUR\",768037:\"BARGARH\",768224:\"SAMBALPUR\",768102:\"BARGARH\",768111:\"BARGARH\",768204:\"JHARSUGUDA\",768018:\"SAMBALPUR\",768049:\"BARGARH\",768115:\"BARGARH\",768016:\"SAMBALPUR\",768203:\"JHARSUGUDA\",768234:\"JHARSUGUDA\",768020:\"SAMBALPUR\",768201:\"JHARSUGUDA\",768048:\"BARGARH\",768019:\"SAMBALPUR\",768119:\"DEBAGARH\",768225:\"JHARSUGUDA\",768003:\"SAMBALPUR\",768002:\"SAMBALPUR\",768118:\"SAMBALPUR\",768233:\"JHARSUGUDA\",768210:\"JHARSUGUDA\",770033:\"SUNDERGARH\",770036:\"SUNDERGARH\",770017:\"SUNDERGARH\",770012:\"SUNDERGARH\",770020:\"SUNDERGARH\",770016:\"SUNDERGARH\",770018:\"SUNDERGARH\",769043:\"SUNDERGARH\",770021:\"SUNDERGARH\",770015:\"SUNDERGARH\",770014:\"SUNDERGARH\",770037:\"SUNDERGARH\",770040:\"SUNDERGARH\",770019:\"SUNDERGARH\",770072:\"SUNDERGARH\",770038:\"SUNDERGARH\",770022:\"SUNDERGARH\",770073:\"SUNDERGARH\",770031:\"SUNDERGARH\",770076:\"SUNDERGARH\",770074:\"SUNDERGARH\",770051:\"SUNDERGARH\",770002:\"SUNDERGARH\",770032:\"SUNDERGARH\",770035:\"SUNDERGARH\",770041:\"SUNDERGARH\",769012:\"SUNDERGARH\",770075:\"SUNDERGARH\",770011:\"SUNDERGARH\",770024:\"SUNDERGARH\",769001:\"SUNDERGARH\",770043:\"SUNDERGARH\",769004:\"SUNDERGARH\",770034:\"SUNDERGARH\",770044:\"SUNDERGARH\",770001:\"SUNDERGARH\",770048:\"SUNDERGARH\",770013:\"SUNDERGARH\",769007:\"SUNDERGARH\",770039:\"SUNDERGARH\",770023:\"SUNDERGARH\",770046:\"SUNDERGARH\",769042:\"SUNDERGARH\",770070:\"SUNDERGARH\",769003:\"SUNDERGARH\",769015:\"SUNDERGARH\",770052:\"SUNDERGARH\",769009:\"SUNDERGARH\",770025:\"SUNDERGARH\",769010:\"SUNDERGARH\",769011:\"SUNDERGARH\",769013:\"SUNDERGARH\",769014:\"SUNDERGARH\",769002:\"SUNDERGARH\",769005:\"SUNDERGARH\",769006:\"SUNDERGARH\",769008:\"SUNDERGARH\",769016:\"SUNDERGARH\",770042:\"SUNDERGARH\",140119:\"ROPAR\",160003:\"CHANDIGHAR\",140118:\"ROPAR\",160004:\"CHANDIGHAR\",140125:\"ROPAR\",140103:\"ROPAR\",140111:\"ROPAR\",160036:\"CHANDIGHAR\",140413:\"ROPAR\",140108:\"ROPAR\",160055:\"MOHALI\",140604:\"MOHALI\",140110:\"MOHALI\",140507:\"MOHALI\",140102:\"MOHALI\",140117:\"RUPNAGAR\",140126:\"ROPAR\",140112:\"ROPAR\",160014:\"MOHALI\",140307:\"MOHALI\",140127:\"ROPAR\",140101:\"MOHALI\",140201:\"MOHALI\",140133:\"ROPAR\",140114:\"ROPAR\",160047:\"CHANDIGHAR\",160017:\"CHANDIGHAR\",160059:\"MOHALI\",160062:\"MOHALI\",160071:\"MOHALI\",140603:\"MOHALI\",140301:\"ROPAR\",140506:\"MOHALI\",160101:\"CHANDIGHAR\",160104:\"MOHALI\",140306:\"MOHALI\",140501:\"MOHALI\",140124:\"ROPAR\",140128:\"ROPAR\",160012:\"CHANDIGHAR\",140123:\"ROPAR\",140113:\"ROPAR\",160018:\"CHANDIGHAR\",160002:\"CHANDIGHAR\",160001:\"CHANDIGHAR\",140001:\"ROPAR\",160005:\"CHANDIGHAR\",140901:\"MOHALI\",140116:\"ROPAR\",140109:\"MOHALI\",140115:\"MOHALI\",140308:\"MOHALI\",160025:\"CHANDIGHAR\",160102:\"CHANDIGHAR\",160103:\"MOHALI\",160016:\"CHANDIGHAR\",160019:\"CHANDIGHAR\",160011:\"CHANDIGHAR\",160015:\"CHANDIGHAR\",160020:\"CHANDIGHAR\",160022:\"CHANDIGHAR\",160023:\"CHANDIGHAR\",160030:\"CHANDIGHAR\",160009:\"CHANDIGHAR\",160043:\"MOHALI\",141003:\"LUDHIANA\",141008:\"LUDHIANA\",141013:\"LUDHIANA\",141007:\"LUDHIANA\",141001:\"LUDHIANA\",141014:\"LUDHIANA\",141010:\"LUDHIANA\",141006:\"LUDHIANA\",141017:\"LUDHIANA\",141015:\"LUDHIANA\",141016:\"LUDHIANA\",141002:\"LUDHIANA\",141004:\"LUDHIANA\",141012:\"LUDHIANA\",141105:\"LUDHIANA\",141104:\"LUDHIANA\",142034:\"LUDHIANA\",141116:\"LUDHIANA\",141414:\"LUDHIANA\",141401:\"LUDHIANA\",141108:\"LUDHIANA\",141203:\"LUDHIANA\",141107:\"LUDHIANA\",142027:\"LUDHIANA\",141119:\"LUDHIANA\",142021:\"LUDHIANA\",141412:\"LUDHIANA\",141205:\"LUDHIANA\",141202:\"LUDHIANA\",142033:\"LUDHIANA\",141416:\"LUDHIANA\",142024:\"LUDHIANA\",141110:\"LUDHIANA\",142032:\"LUDHIANA\",141418:\"LUDHIANA\",141121:\"LUDHIANA\",141112:\"LUDHIANA\",141114:\"LUDHIANA\",141109:\"LUDHIANA\",141102:\"LUDHIANA\",142025:\"LUDHIANA\",141415:\"LUDHIANA\",141206:\"LUDHIANA\",141421:\"LUDHIANA\",141120:\"LUDHIANA\",141422:\"LUDHIANA\",141127:\"LUDHIANA\",141118:\"LUDHIANA\",142030:\"LUDHIANA\",141417:\"LUDHIANA\",142035:\"LUDHIANA\",141113:\"LUDHIANA\",141204:\"LUDHIANA\",142022:\"LUDHIANA\",141101:\"LUDHIANA\",142029:\"LUDHIANA\",141413:\"LUDHIANA\",142036:\"LUDHIANA\",141419:\"LUDHIANA\",142023:\"LUDHIANA\",141106:\"LUDHIANA\",141115:\"LUDHIANA\",142031:\"LUDHIANA\",142026:\"LUDHIANA\",141122:\"LUDHIANA\",141117:\"LUDHIANA\",141126:\"LUDHIANA\",141125:\"LUDHIANA\",141103:\"LUDHIANA\",141201:\"LUDHIANA\",142028:\"LUDHIANA\",141123:\"LUDHIANA\",140406:\"FATEHGARH SAHIB\",147111:\"PATIALA\",147202:\"PATIALA\",147201:\"PATIALA\",140701:\"PATIALA\",147006:\"PATIALA\",147203:\"PATIALA\",140802:\"FATEHGARH SAHIB\",147105:\"PATIALA\",140408:\"FATEHGARH SAHIB\",140405:\"FATEHGARH SAHIB\",147102:\"PATIALA\",140412:\"FATEHGARH SAHIB\",147001:\"PATIALA\",147101:\"PATIALA\",140601:\"PATIALA\",141411:\"FATEHGARH SAHIB\",140402:\"PATIALA\",140602:\"PATIALA\",147103:\"PATIALA\",147021:\"PATIALA\",141801:\"FATEHGARH SAHIB\",147104:\"FATEHGARH SAHIB\",147003:\"PATIALA\",147007:\"PATIALA\",147004:\"PATIALA\",140407:\"FATEHGARH SAHIB\",140417:\"PATIALA\",140702:\"PATIALA\",140401:\"PATIALA\",147005:\"PATIALA\",147301:\"FATEHGARH SAHIB\",147002:\"PATIALA\",148021:\"SANGRUR\",148026:\"SANGRUR\",148022:\"SANGRUR\",148027:\"SANGRUR\",148105:\"SANGRUR\",148106:\"SANGRUR\",148002:\"SANGRUR\",148024:\"SANGRUR\",148018:\"SANGRUR\",148025:\"SANGRUR\",148100:\"SANGRUR\",148031:\"SANGRUR\",148028:\"SANGRUR\",148033:\"SANGRUR\",148101:\"SANGRUR\",148034:\"SANGRUR\",148109:\"SANGRUR\",148102:\"SANGRUR\",148030:\"SANGRUR\",148017:\"SANGRUR\",148019:\"SANGRUR\",148023:\"SANGRUR\",148104:\"SANGRUR\",148103:\"SANGRUR\",148029:\"SANGRUR\",148035:\"SANGRUR\",148108:\"SANGRUR\",148107:\"SANGRUR\",148020:\"SANGRUR\",148001:\"SANGRUR\",143502:\"AMRITSAR\",143101:\"AMRITSAR\",143301:\"TARN TARAN\",143102:\"AMRITSAR\",143116:\"AMRITSAR\",143411:\"AMRITSAR\",143419:\"TARN TARAN\",143412:\"TARN TARAN\",143111:\"AMRITSAR\",143001:\"AMRITSAR\",143114:\"AMRITSAR\",143108:\"AMRITSAR\",143202:\"AMRITSAR\",143119:\"AMRITSAR\",143402:\"TARN TARAN\",143416:\"TARN TARAN\",143303:\"TARN TARAN\",143302:\"TARN TARAN\",143601:\"AMRITSAR\",143204:\"AMRITSAR\",143606:\"AMRITSAR\",143117:\"TARN TARAN\",143305:\"TARN TARAN\",143105:\"AMRITSAR\",143006:\"AMRITSAR\",143406:\"TARN TARAN\",143201:\"AMRITSAR\",143407:\"TARN TARAN\",143118:\"TARN TARAN\",143304:\"TARN TARAN\",143107:\"AMRITSAR\",143149:\"AMRITSAR\",143409:\"TARN TARAN\",143504:\"AMRITSAR\",143109:\"AMRITSAR\",143112:\"AMRITSAR\",143009:\"AMRITSAR\",143413:\"TARN TARAN\",143203:\"AMRITSAR\",143205:\"AMRITSAR\",143022:\"AMRITSAR\",143414:\"TARN TARAN\",143408:\"TARN TARAN\",143103:\"AMRITSAR\",143410:\"TARN TARAN\",143603:\"AMRITSAR\",143115:\"AMRITSAR\",143422:\"TARN TARAN\",143008:\"AMRITSAR\",143501:\"AMRITSAR\",143113:\"AMRITSAR\",143415:\"TARN TARAN\",143005:\"AMRITSAR\",143002:\"AMRITSAR\",143003:\"AMRITSAR\",143401:\"TARN TARAN\",151201:\"BATHINDA\",151506:\"MANSA\",151507:\"MANSA\",151502:\"MANSA\",151505:\"MANSA\",151510:\"MANSA\",151108:\"BATHINDA\",151503:\"MANSA\",151104:\"BATHINDA\",151504:\"MANSA\",151501:\"MANSA\",151102:\"BATHINDA\",151103:\"BATHINDA\",151005:\"BATHINDA\",151401:\"BATHINDA\",151301:\"BATHINDA\",151004:\"BATHINDA\",151001:\"BATHINDA\",151302:\"BATHINDA\",151206:\"BATHINDA\",151106:\"BATHINDA\",151508:\"MANSA\",151105:\"BATHINDA\",151101:\"BATHINDA\",151509:\"BATHINDA\",151002:\"BATHINDA\",151111:\"BATHINDA\",151003:\"BATHINDA\",152114:\"MUKTSAR\",142053:\"MOGA\",152026:\"MUKTSAR\",142038:\"MOGA\",151210:\"MUKTSAR\",151213:\"FARIDKOT\",152025:\"MUKTSAR\",151207:\"FARIDKOT\",152113:\"MUKTSAR\",142037:\"MOGA\",152112:\"FARIDKOT\",142011:\"MOGA\",151205:\"FARIDKOT\",152032:\"MUKTSAR\",151208:\"FARIDKOT\",142039:\"MOGA\",152107:\"MUKTSAR\",152115:\"MUKTSAR\",152101:\"MUKTSAR\",152031:\"MUKTSAR\",151212:\"FARIDKOT\",151202:\"FARIDKOT\",151211:\"MUKTSAR\",142002:\"MOGA\",142048:\"MOGA\",142040:\"MOGA\",142054:\"MOGA\",151204:\"FARIDKOT\",142003:\"MOGA\",151209:\"FARIDKOT\",142055:\"MOGA\",142046:\"MOGA\",151203:\"FARIDKOT\",142057:\"MOGA\",142056:\"MOGA\",142001:\"MOGA\",142049:\"MOGA\",142045:\"MOGA\",152116:\"FAZILKA\",152022:\"FIROZPUR\",142042:\"MOGA\",152024:\"FIROZPUR\",152021:\"FIROZPUR\",152124:\"FAZILKA\",152028:\"FIROZPUR\",152121:\"FAZILKA\",152117:\"FAZILKA\",152128:\"FAZILKA\",152002:\"FIROZPUR\",152118:\"FAZILKA\",152004:\"FIROZPUR\",152122:\"FAZILKA\",152020:\"FAZILKA\",142044:\"FIROZPUR\",142052:\"FIROZPUR\",152132:\"FAZILKA\",152005:\"FIROZPUR\",142041:\"FIROZPUR\",152003:\"FIROZPUR\",152001:\"FIROZPUR\",152033:\"FAZILKA\",152123:\"FAZILKA\",142058:\"MOGA\",152023:\"FIROZPUR\",142047:\"FIROZPUR\",142043:\"MOGA\",142050:\"FIROZPUR\",142060:\"FIROZPUR\",145001:\"PATHANKOT\",143511:\"GURDASPUR\",143507:\"GURDASPUR\",143517:\"GURDASPUR\",143527:\"GURDASPUR\",143531:\"GURDASPUR\",143530:\"GURDASPUR\",143529:\"GURDASPUR\",143520:\"GURDASPUR\",143534:\"PATHANKOT\",143515:\"GURDASPUR\",145027:\"PATHANKOT\",143512:\"GURDASPUR\",143505:\"GURDASPUR\",143506:\"GURDASPUR\",143532:\"GURDASPUR\",145023:\"PATHANKOT\",143604:\"GURDASPUR\",145022:\"PATHANKOT\",143525:\"PATHANKOT\",145025:\"PATHANKOT\",143513:\"GURDASPUR\",143514:\"GURDASPUR\",143533:\"PATHANKOT\",143528:\"GURDASPUR\",145026:\"PATHANKOT\",143518:\"GURDASPUR\",143516:\"GURDASPUR\",143519:\"GURDASPUR\",143605:\"GURDASPUR\",143526:\"GURDASPUR\",143602:\"GURDASPUR\",145101:\"PATHANKOT\",143521:\"GURDASPUR\",145029:\"PATHANKOT\",145024:\"PATHANKOT\",144214:\"HOSHIARPUR\",146024:\"HOSHIARPUR\",144521:\"HOSHIARPUR\",146112:\"HOSHIARPUR\",144520:\"HOSHIARPUR\",144404:\"HOSHIARPUR\",146111:\"HOSHIARPUR\",144202:\"HOSHIARPUR\",144207:\"HOSHIARPUR\",144224:\"HOSHIARPUR\",144526:\"HOSHIARPUR\",146102:\"HOSHIARPUR\",144406:\"HOSHIARPUR\",144528:\"HOSHIARPUR\",144223:\"HOSHIARPUR\",144105:\"HOSHIARPUR\",144208:\"HOSHIARPUR\",144522:\"HOSHIARPUR\",146001:\"HOSHIARPUR\",144206:\"HOSHIARPUR\",146105:\"HOSHIARPUR\",144204:\"HOSHIARPUR\",146104:\"HOSHIARPUR\",146023:\"HOSHIARPUR\",146101:\"HOSHIARPUR\",144306:\"HOSHIARPUR\",144527:\"HOSHIARPUR\",146021:\"HOSHIARPUR\",144524:\"HOSHIARPUR\",146115:\"HOSHIARPUR\",144519:\"HOSHIARPUR\",144305:\"HOSHIARPUR\",146113:\"HOSHIARPUR\",144221:\"HOSHIARPUR\",146103:\"HOSHIARPUR\",144213:\"HOSHIARPUR\",144529:\"HOSHIARPUR\",144523:\"HOSHIARPUR\",144210:\"HOSHIARPUR\",144212:\"HOSHIARPUR\",146110:\"HOSHIARPUR\",144532:\"HOSHIARPUR\",144525:\"HOSHIARPUR\",144209:\"HOSHIARPUR\",146022:\"HOSHIARPUR\",144205:\"HOSHIARPUR\",144222:\"HOSHIARPUR\",144530:\"HOSHIARPUR\",146109:\"HOSHIARPUR\",146106:\"HOSHIARPUR\",146116:\"HOSHIARPUR\",146107:\"HOSHIARPUR\",144211:\"HOSHIARPUR\",146114:\"HOSHIARPUR\",146108:\"HOSHIARPUR\",144531:\"HOSHIARPUR\",144216:\"HOSHIARPUR\",144103:\"JALANDHAR\",144102:\"JALANDHAR\",144106:\"JALANDHAR\",144301:\"JALANDHAR\",144514:\"NAWANSHAHR\",144513:\"NAWANSHAHR\",144416:\"JALANDHAR\",144002:\"JALANDHAR\",144418:\"NAWANSHAHR\",144417:\"JALANDHAR\",144505:\"NAWANSHAHR\",144508:\"NAWANSHAHR\",144517:\"NAWANSHAHR\",144004:\"JALANDHAR\",144021:\"JALANDHAR\",144008:\"JALANDHAR\",144001:\"JALANDHAR\",144518:\"NAWANSHAHR\",144302:\"JALANDHAR\",144201:\"JALANDHAR\",144504:\"JALANDHAR\",144516:\"NAWANSHAHR\",144422:\"JALANDHAR\",144003:\"JALANDHAR\",144503:\"NAWANSHAHR\",144419:\"JALANDHAR\",144506:\"NAWANSHAHR\",144512:\"NAWANSHAHR\",144101:\"JALANDHAR\",144409:\"JALANDHAR\",144421:\"NAWANSHAHR\",144006:\"JALANDHAR\",144025:\"JALANDHAR\",144507:\"NAWANSHAHR\",144029:\"JALANDHAR\",144028:\"JALANDHAR\",144009:\"JALANDHAR\",144023:\"JALANDHAR\",144104:\"JALANDHAR\",144502:\"JALANDHAR\",144515:\"NAWANSHAHR\",144010:\"JALANDHAR\",144022:\"JALANDHAR\",144511:\"JALANDHAR\",144410:\"JALANDHAR\",144510:\"NAWANSHAHR\",144005:\"JALANDHAR\",144303:\"JALANDHAR\",144020:\"JALANDHAR\",144501:\"NAWANSHAHR\",144030:\"JALANDHAR\",144026:\"JALANDHAR\",144509:\"JALANDHAR\",144024:\"JALANDHAR\",144007:\"JALANDHAR\",144415:\"JALANDHAR\",144011:\"JALANDHAR\",144027:\"JALANDHAR\",144041:\"JALANDHAR\",144623:\"KAPURTHALA\",144603:\"KAPURTHALA\",144621:\"KAPURTHALA\",144622:\"KAPURTHALA\",144402:\"KAPURTHALA\",144703:\"JALANDHAR\",144702:\"JALANDHAR\",144401:\"KAPURTHALA\",144629:\"JALANDHAR\",144040:\"JALANDHAR\",144403:\"JALANDHAR\",144044:\"JALANDHAR\",144407:\"JALANDHAR\",144405:\"JALANDHAR\",144039:\"JALANDHAR\",144804:\"KAPURTHALA\",144033:\"JALANDHAR\",144620:\"KAPURTHALA\",144034:\"JALANDHAR\",144606:\"KAPURTHALA\",144036:\"JALANDHAR\",144632:\"KAPURTHALA\",144043:\"JALANDHAR\",144630:\"JALANDHAR\",144628:\"KAPURTHALA\",144701:\"KAPURTHALA\",144042:\"JALANDHAR\",144624:\"KAPURTHALA\",144411:\"KAPURTHALA\",144805:\"JALANDHAR\",144032:\"JALANDHAR\",144626:\"KAPURTHALA\",144633:\"JALANDHAR\",144311:\"JALANDHAR\",144803:\"JALANDHAR\",144819:\"KAPURTHALA\",144802:\"KAPURTHALA\",144801:\"JALANDHAR\",144035:\"JALANDHAR\",144601:\"KAPURTHALA\",144806:\"JALANDHAR\",144625:\"KAPURTHALA\",144631:\"KAPURTHALA\",144037:\"JALANDHAR\",144408:\"JALANDHAR\",144602:\"KAPURTHALA\",144031:\"JALANDHAR\",301401:\"ALWAR\",301035:\"ALWAR\",301027:\"ALWAR\",301024:\"ALWAR\",301001:\"ALWAR\",301703:\"ALWAR\",301405:\"ALWAR\",301412:\"ALWAR\",301026:\"ALWAR\",301713:\"ALWAR\",321605:\"ALWAR\",301403:\"ALWAR\",301411:\"ALWAR\",301028:\"ALWAR\",301030:\"ALWAR\",301414:\"ALWAR\",301404:\"ALWAR\",301701:\"ALWAR\",301714:\"ALWAR\",301406:\"ALWAR\",301410:\"ALWAR\",301408:\"ALWAR\",301407:\"ALWAR\",301402:\"ALWAR\",301413:\"ALWAR\",321607:\"ALWAR\",301021:\"ALWAR\",301020:\"ALWAR\",301709:\"ALWAR\",321633:\"ALWAR\",301025:\"ALWAR\",301702:\"ALWAR\",301409:\"ALWAR\",301022:\"ALWAR\",301019:\"ALWAR\",301707:\"ALWAR\",301427:\"ALWAR\",301415:\"ALWAR\",301023:\"ALWAR\",301706:\"ALWAR\",301704:\"ALWAR\",321606:\"ALWAR\",301604:\"ALWAR\",301705:\"ALWAR\",301018:\"ALWAR\",301708:\"ALWAR\",301002:\"ALWAR\",301416:\"ALWAR\",321202:\"BHARATPUR\",321001:\"BHARATPUR\",321025:\"BHARATPUR\",321303:\"BHARATPUR\",321022:\"BHARATPUR\",321614:\"BHARATPUR\",321024:\"BHARATPUR\",321615:\"BHARATPUR\",321602:\"BHARATPUR\",321302:\"BHARATPUR\",321201:\"BHARATPUR\",321028:\"BHARATPUR\",321203:\"BHARATPUR\",321026:\"BHARATPUR\",321407:\"BHARATPUR\",321023:\"BHARATPUR\",321409:\"BHARATPUR\",321301:\"BHARATPUR\",321021:\"BHARATPUR\",321406:\"BHARATPUR\",321206:\"BHARATPUR\",321205:\"BHARATPUR\",321204:\"BHARATPUR\",321642:\"BHARATPUR\",321601:\"BHARATPUR\",321411:\"BHARATPUR\",328041:\"DHOLPUR\",328021:\"DHOLPUR\",328025:\"DHOLPUR\",328031:\"DHOLPUR\",328022:\"DHOLPUR\",328024:\"DHOLPUR\",321408:\"BHARATPUR\",321405:\"BHARATPUR\",321403:\"BHARATPUR\",328001:\"DHOLPUR\",321402:\"BHARATPUR\",328029:\"DHOLPUR\",328023:\"DHOLPUR\",328030:\"DHOLPUR\",328028:\"DHOLPUR\",321401:\"BHARATPUR\",328026:\"DHOLPUR\",328027:\"DHOLPUR\",321410:\"BHARATPUR\",321404:\"BHARATPUR\",302029:\"JAIPUR\",302006:\"JAIPUR\",302013:\"JAIPUR\",302039:\"JAIPUR\",302018:\"JAIPUR\",302002:\"JAIPUR\",302028:\"JAIPUR\",302004:\"JAIPUR\",302042:\"JAIPUR\",302016:\"JAIPUR\",302015:\"JAIPUR\",302026:\"JAIPUR\",302022:\"JAIPUR\",302041:\"JAIPUR\",302001:\"JAIPUR\",302027:\"JAIPUR\",302003:\"JAIPUR\",302012:\"JAIPUR\",302021:\"JAIPUR\",302005:\"JAIPUR\",302017:\"JAIPUR\",302036:\"JAIPUR\",302031:\"JAIPUR\",302038:\"JAIPUR\",302037:\"JAIPUR\",302020:\"JAIPUR\",302043:\"JAIPUR\",302040:\"JAIPUR\",302034:\"JAIPUR\",302033:\"JAIPUR\",302019:\"JAIPUR\",303329:\"JAIPUR\",303326:\"DAUSA\",303908:\"JAIPUR\",303502:\"DAUSA\",303002:\"JAIPUR\",303007:\"JAIPUR\",303338:\"JAIPUR\",303901:\"JAIPUR\",303315:\"DAUSA\",303801:\"JAIPUR\",303303:\"DAUSA\",303804:\"JAIPUR\",303601:\"JAIPUR\",303120:\"JAIPUR\",303510:\"DAUSA\",303313:\"DAUSA\",303302:\"DAUSA\",303704:\"JAIPUR\",303712:\"JAIPUR\",303323:\"DAUSA\",303001:\"JAIPUR\",303119:\"JAIPUR\",303604:\"JAIPUR\",303602:\"JAIPUR\",322240:\"DAUSA\",303903:\"JAIPUR\",303103:\"JAIPUR\",303325:\"DAUSA\",303305:\"DAUSA\",303603:\"JAIPUR\",303503:\"DAUSA\",303805:\"JAIPUR\",321608:\"DAUSA\",303105:\"JAIPUR\",321609:\"DAUSA\",303109:\"JAIPUR\",303304:\"DAUSA\",303806:\"JAIPUR\",303507:\"DAUSA\",321613:\"DAUSA\",303106:\"JAIPUR\",303301:\"JAIPUR\",303706:\"JAIPUR\",303327:\"DAUSA\",303102:\"JAIPUR\",303501:\"DAUSA\",303328:\"JAIPUR\",303107:\"JAIPUR\",303110:\"JAIPUR\",303003:\"JAIPUR\",303006:\"JAIPUR\",303904:\"JAIPUR\",303004:\"DAUSA\",303701:\"JAIPUR\",303807:\"JAIPUR\",303803:\"JAIPUR\",303504:\"DAUSA\",303104:\"JAIPUR\",303124:\"JAIPUR\",303012:\"JAIPUR\",303348:\"JAIPUR\",303005:\"JAIPUR\",303509:\"DAUSA\",303108:\"JAIPUR\",303505:\"DAUSA\",303702:\"JAIPUR\",303905:\"JAIPUR\",303008:\"JAIPUR\",303009:\"JAIPUR\",303511:\"DAUSA\",321612:\"DAUSA\",303506:\"DAUSA\",303508:\"DAUSA\",303123:\"JAIPUR\",303121:\"JAIPUR\",303122:\"JAIPUR\",322701:\"SAWAI MADHOPUR\",322001:\"SAWAI MADHOPUR\",322201:\"SAWAI MADHOPUR\",321611:\"KARAULI\",322027:\"SAWAI MADHOPUR\",322025:\"SAWAI MADHOPUR\",322021:\"SAWAI MADHOPUR\",322218:\"KARAULI\",322212:\"SAWAI MADHOPUR\",322703:\"SAWAI MADHOPUR\",322251:\"KARAULI\",322241:\"KARAULI\",322243:\"KARAULI\",322034:\"SAWAI MADHOPUR\",322216:\"KARAULI\",322702:\"SAWAI MADHOPUR\",322204:\"KARAULI\",322211:\"SAWAI MADHOPUR\",322238:\"KARAULI\",322023:\"SAWAI MADHOPUR\",322205:\"SAWAI MADHOPUR\",322249:\"KARAULI\",322214:\"SAWAI MADHOPUR\",322230:\"KARAULI\",322202:\"KARAULI\",322215:\"KARAULI\",322255:\"KARAULI\",322203:\"KARAULI\",322219:\"SAWAI MADHOPUR\",322028:\"SAWAI MADHOPUR\",322029:\"SAWAI MADHOPUR\",322024:\"SAWAI MADHOPUR\",321610:\"KARAULI\",322242:\"KARAULI\",322033:\"SAWAI MADHOPUR\",322252:\"KARAULI\",322213:\"KARAULI\",322220:\"KARAULI\",322026:\"SAWAI MADHOPUR\",322030:\"SAWAI MADHOPUR\",322254:\"KARAULI\",322236:\"KARAULI\",322234:\"KARAULI\",322704:\"SAWAI MADHOPUR\",305002:\"AJMER\",305801:\"AJMER\",305003:\"AJMER\",305005:\"AJMER\",305001:\"AJMER\",305813:\"AJMER\",305819:\"AJMER\",305206:\"AJMER\",305811:\"AJMER\",305004:\"AJMER\",305025:\"AJMER\",305814:\"AJMER\",305022:\"AJMER\",305023:\"AJMER\",305205:\"AJMER\",305812:\"AJMER\",305817:\"AJMER\",305802:\"AJMER\",305007:\"AJMER\",305012:\"AJMER\",305021:\"AJMER\",305815:\"AJMER\",305024:\"AJMER\",305009:\"AJMER\",305816:\"AJMER\",305404:\"AJMER\",305207:\"AJMER\",305405:\"AJMER\",305922:\"AJMER\",305901:\"AJMER\",305203:\"AJMER\",305601:\"AJMER\",305926:\"AJMER\",305925:\"AJMER\",305624:\"AJMER\",305415:\"AJMER\",305401:\"AJMER\",305407:\"AJMER\",305621:\"AJMER\",305628:\"AJMER\",305412:\"AJMER\",305630:\"AJMER\",305403:\"AJMER\",305622:\"AJMER\",305408:\"AJMER\",305204:\"AJMER\",305629:\"AJMER\",305631:\"AJMER\",305623:\"AJMER\",305927:\"AJMER\",305202:\"AJMER\",305201:\"AJMER\",305625:\"AJMER\",305406:\"AJMER\",305402:\"AJMER\",305627:\"AJMER\",305923:\"AJMER\",305924:\"AJMER\",311402:\"BHILWARA\",311022:\"BHILWARA\",311204:\"BHILWARA\",311603:\"BHILWARA\",311026:\"BHILWARA\",311025:\"BHILWARA\",311605:\"BHILWARA\",311804:\"BHILWARA\",311201:\"BHILWARA\",311801:\"BHILWARA\",311404:\"BHILWARA\",311011:\"BHILWARA\",311602:\"BHILWARA\",311023:\"BHILWARA\",311301:\"BHILWARA\",311802:\"BHILWARA\",311001:\"BHILWARA\",311401:\"BHILWARA\",311021:\"BHILWARA\",311302:\"BHILWARA\",311202:\"BHILWARA\",311203:\"BHILWARA\",311604:\"BHILWARA\",311408:\"BHILWARA\",311024:\"BHILWARA\",311403:\"BHILWARA\",311030:\"BHILWARA\",311803:\"BHILWARA\",311601:\"BHILWARA\",311606:\"BHILWARA\",311805:\"BHILWARA\",311407:\"BHILWARA\",311806:\"BHILWARA\",312626:\"PRATAPGHAR\",312022:\"CHITTORGARH\",312615:\"PRATAPGHAR\",312605:\"PRATAPGHAR\",312203:\"CHITTORGARH\",312622:\"CHITTORGARH\",312024:\"CHITTORGARH\",312027:\"CHITTORGARH\",312205:\"CHITTORGARH\",312404:\"CHITTORGARH\",312604:\"PRATAPGHAR\",312619:\"PRATAPGHAR\",312202:\"JAIPUR\",323303:\"CHITTORGARH\",312402:\"CHITTORGARH\",312620:\"CHITTORGARH\",312612:\"CHITTORGARH\",312602:\"CHITTORGARH\",312601:\"CHITTORGARH\",323307:\"CHITTORGARH\",312401:\"CHITTORGARH\",312023:\"CHITTORGARH\",312614:\"CHITTORGARH\",312207:\"CHITTORGARH\",312606:\"CHITTORGARH\",312616:\"CHITTORGARH\",312623:\"PRATAPGHAR\",312403:\"CHITTORGARH\",312021:\"CHITTORGARH\",312901:\"CHITTORGARH\",312206:\"CHITTORGARH\",312603:\"CHITTORGARH\",323304:\"CHITTORGARH\",312625:\"PRATAPGHAR\",312204:\"CHITTORGARH\",312624:\"PRATAPGHAR\",312613:\"CHITTORGARH\",312025:\"CHITTORGARH\",312001:\"CHITTORGARH\",312201:\"CHITTORGARH\",313611:\"PRATAPGHAR\",312617:\"CHITTORGARH\",323306:\"CHITTORGARH\",323305:\"CHITTORGARH\",312627:\"CHITTORGARH\",327034:\"BANSWARA\",327022:\"BANSWARA\",327032:\"BANSWARA\",314024:\"DUNGARPUR\",327605:\"BANSWARA\",327021:\"BANSWARA\",314021:\"DUNGARPUR\",327023:\"BANSWARA\",314027:\"DUNGARPUR\",314030:\"DUNGARPUR\",327031:\"BANSWARA\",314801:\"DUNGARPUR\",327602:\"BANSWARA\",314037:\"DUNGARPUR\",314025:\"DUNGARPUR\",314036:\"DUNGARPUR\",314035:\"DUNGARPUR\",327025:\"BANSWARA\",327001:\"BANSWARA\",327026:\"BANSWARA\",314403:\"DUNGARPUR\",327801:\"BANSWARA\",314031:\"DUNGARPUR\",327601:\"BANSWARA\",327603:\"BANSWARA\",314804:\"DUNGARPUR\",314406:\"DUNGARPUR\",314023:\"DUNGARPUR\",314402:\"DUNGARPUR\",314011:\"DUNGARPUR\",314401:\"DUNGARPUR\",314038:\"DUNGARPUR\",327604:\"BANSWARA\",314029:\"DUNGARPUR\",314404:\"DUNGARPUR\",314022:\"DUNGARPUR\",314034:\"DUNGARPUR\",314001:\"DUNGARPUR\",327606:\"BANSWARA\",327027:\"BANSWARA\",314032:\"DUNGARPUR\",314026:\"DUNGARPUR\",314028:\"DUNGARPUR\",327024:\"BANSWARA\",325001:\"KOTA\",326520:\"KOTA\",325217:\"BARAN\",326022:\"JHALAWAR\",325221:\"BARAN\",326035:\"JHALAWAR\",326033:\"JHALAWAR\",326038:\"JHALAWAR\",326518:\"KOTA\",325204:\"KOTA\",325218:\"BARAN\",325209:\"BARAN\",325202:\"BARAN\",326037:\"JHALAWAR\",326502:\"JHALAWAR\",325602:\"KOTA\",324002:\"KOTA\",326039:\"JHALAWAR\",325215:\"BARAN\",326021:\"JHALAWAR\",325223:\"BARAN\",326512:\"JHALAWAR\",325214:\"KOTA\",325222:\"BARAN\",326023:\"JHALAWAR\",325206:\"BARAN\",325224:\"BARAN\",326001:\"JHALAWAR\",325009:\"KOTA\",325216:\"BARAN\",325004:\"KOTA\",325207:\"KOTA\",325208:\"KOTA\",326036:\"JHALAWAR\",325220:\"BARAN\",325205:\"BARAN\",326515:\"JHALAWAR\",325203:\"KOTA\",325003:\"KOTA\",326501:\"JHALAWAR\",326513:\"JHALAWAR\",324010:\"KOTA\",325601:\"KOTA\",324007:\"KOTA\",328216:\"BARAN\",326034:\"JHALAWAR\",324009:\"KOTA\",326514:\"JHALAWAR\",326519:\"KOTA\",325201:\"KOTA\",325219:\"BARAN\",326516:\"JHALAWAR\",324008:\"KOTA\",326529:\"KOTA\",324003:\"KOTA\",324006:\"KOTA\",326517:\"KOTA\",324001:\"KOTA\",324005:\"KOTA\",326530:\"KOTA\",324004:\"KOTA\",323024:\"BUNDI\",323603:\"BUNDI\",323803:\"BUNDI\",323026:\"BUNDI\",304023:\"TONK\",304502:\"TONK\",323021:\"BUNDI\",304804:\"TONK\",323022:\"BUNDI\",323614:\"BUNDI\",323616:\"BUNDI\",304503:\"TONK\",304802:\"TONK\",323301:\"BUNDI\",304001:\"TONK\",304501:\"TONK\",323613:\"BUNDI\",323801:\"BUNDI\",323001:\"BUNDI\",304801:\"TONK\",304025:\"TONK\",304024:\"TONK\",304026:\"TONK\",304022:\"TONK\",304505:\"TONK\",323802:\"BUNDI\",304021:\"TONK\",323025:\"BUNDI\",304507:\"TONK\",304504:\"TONK\",323602:\"BUNDI\",304803:\"TONK\",323023:\"BUNDI\",323601:\"BUNDI\",323615:\"BUNDI\",313332:\"RAJSAMAND\",313804:\"UDAIPUR\",313027:\"UDAIPUR\",313702:\"UDAIPUR\",313703:\"UDAIPUR\",313604:\"UDAIPUR\",313334:\"UDAIPUR\",305921:\"RAJSAMAND\",313323:\"RAJSAMAND\",313031:\"UDAIPUR\",313602:\"UDAIPUR\",313701:\"UDAIPUR\",313038:\"UDAIPUR\",313331:\"UDAIPUR\",313325:\"RAJSAMAND\",313601:\"UDAIPUR\",313704:\"UDAIPUR\",313026:\"UDAIPUR\",313205:\"UDAIPUR\",313603:\"UDAIPUR\",313905:\"UDAIPUR\",313011:\"UDAIPUR\",313803:\"UDAIPUR\",313324:\"UDAIPUR\",313705:\"UDAIPUR\",313341:\"RAJSAMAND\",313301:\"RAJSAMAND\",307025:\"UDAIPUR\",313322:\"UDAIPUR\",313001:\"UDAIPUR\",313706:\"UDAIPUR\",313802:\"UDAIPUR\",313329:\"RAJSAMAND\",313902:\"UDAIPUR\",313333:\"RAJSAMAND\",313801:\"UDAIPUR\",313906:\"UDAIPUR\",313708:\"UDAIPUR\",313321:\"RAJSAMAND\",313024:\"UDAIPUR\",313204:\"UDAIPUR\",313342:\"RAJSAMAND\",313203:\"UDAIPUR\",313003:\"UDAIPUR\",313201:\"UDAIPUR\",313202:\"RAJSAMAND\",313327:\"UDAIPUR\",313903:\"UDAIPUR\",313015:\"UDAIPUR\",313211:\"RAJSAMAND\",313904:\"UDAIPUR\",313022:\"UDAIPUR\",313901:\"UDAIPUR\",313206:\"UDAIPUR\",313330:\"UDAIPUR\",313207:\"UDAIPUR\",313328:\"UDAIPUR\",313002:\"UDAIPUR\",313004:\"UDAIPUR\",344502:\"BARMER\",344011:\"BARMER\",344033:\"BARMER\",344702:\"BARMER\",344021:\"BARMER\",344034:\"BARMER\",344012:\"BARMER\",344704:\"BARMER\",344031:\"BARMER\",344701:\"BARMER\",344706:\"BARMER\",344022:\"BARMER\",344026:\"BARMER\",344001:\"BARMER\",344708:\"BARMER\",344032:\"BARMER\",344501:\"BARMER\",344035:\"BARMER\",344043:\"BARMER\",344801:\"BARMER\",344703:\"BARMER\",344044:\"BARMER\",344037:\"BARMER\",344705:\"BARMER\",344024:\"BARMER\",344027:\"BARMER\",344025:\"BARMER\",334023:\"BIKANER\",331801:\"BIKANER\",334001:\"BIKANER\",334402:\"BIKANER\",334802:\"BIKANER\",334604:\"BIKANER\",331803:\"BIKANER\",334202:\"BIKANER\",334305:\"BIKANER\",331811:\"BIKANER\",334601:\"BIKANER\",334022:\"BIKANER\",334804:\"BIKANER\",334803:\"BIKANER\",334004:\"BIKANER\",334801:\"BIKANER\",334303:\"BIKANER\",334302:\"BIKANER\",334603:\"BIKANER\",334403:\"BIKANER\",334006:\"BIKANER\",334021:\"BIKANER\",334808:\"BIKANER\",334201:\"BIKANER\",334401:\"BIKANER\",334602:\"BIKANER\",334003:\"BIKANER\",331802:\"CHURU\",331505:\"CHURU\",331403:\"CHURU\",331504:\"CHURU\",331304:\"CHURU\",331517:\"CHURU\",331001:\"CHURU\",331022:\"CHURU\",331507:\"CHURU\",331518:\"CHURU\",331303:\"CHURU\",331023:\"CHURU\",331503:\"CHURU\",331506:\"CHURU\",331411:\"CHURU\",331301:\"CHURU\",331305:\"CHURU\",331302:\"CHURU\",331701:\"CHURU\",331501:\"CHURU\",331031:\"CHURU\",331502:\"CHURU\",331021:\"CHURU\",331402:\"CHURU\",331029:\"CHURU\",333001:\"JHUJHUNU\",333023:\"JHUJHUNU\",333026:\"JHUJHUNU\",333029:\"JHUJHUNU\",333021:\"JHUJHUNU\",331025:\"JHUJHUNU\",333027:\"JHUJHUNU\",333033:\"JHUJHUNU\",333501:\"JHUJHUNU\",333503:\"JHUJHUNU\",333035:\"JHUJHUNU\",333502:\"JHUJHUNU\",331026:\"JHUJHUNU\",333801:\"JHUJHUNU\",333307:\"JHUJHUNU\",333704:\"JHUJHUNU\",333025:\"JHUJHUNU\",333705:\"JHUJHUNU\",333022:\"JHUJHUNU\",333031:\"JHUJHUNU\",333304:\"JHUJHUNU\",333042:\"JHUJHUNU\",333516:\"JHUJHUNU\",333305:\"JHUJHUNU\",333515:\"JHUJHUNU\",333041:\"JHUJHUNU\",333024:\"JHUJHUNU\",331030:\"JHUJHUNU\",333030:\"JHUJHUNU\",333308:\"JHUJHUNU\",333032:\"JHUJHUNU\",333034:\"JHUJHUNU\",331027:\"JHUJHUNU\",333053:\"JHUJHUNU\",333302:\"JHUJHUNU\",333012:\"JHUJHUNU\",333303:\"JHUJHUNU\",333701:\"JHUJHUNU\",333707:\"JHUJHUNU\",332716:\"JHUJHUNU\",332746:\"JHUJHUNU\",333504:\"JHUJHUNU\",333514:\"JHUJHUNU\",333011:\"JHUJHUNU\",333702:\"JHUJHUNU\",333028:\"JHUJHUNU\",331028:\"JHUJHUNU\",333036:\"JHUJHUNU\",342311:\"JODHPUR\",345001:\"JAISALMER\",342001:\"JODHPUR\",345023:\"JAISALMER\",342308:\"JODHPUR\",342037:\"JODHPUR\",342606:\"JODHPUR\",342025:\"JODHPUR\",345028:\"JAISALMER\",342901:\"JODHPUR\",342014:\"JODHPUR\",345021:\"JAISALMER\",342603:\"JODHPUR\",345027:\"JAISALMER\",342605:\"JODHPUR\",342306:\"JODHPUR\",342023:\"JODHPUR\",345024:\"JAISALMER\",342027:\"JODHPUR\",345025:\"JAISALMER\",342307:\"JODHPUR\",342303:\"JODHPUR\",342301:\"JODHPUR\",342602:\"JODHPUR\",342309:\"JODHPUR\",342312:\"JODHPUR\",345034:\"JAISALMER\",342024:\"JODHPUR\",342801:\"JODHPUR\",345031:\"JAISALMER\",342601:\"JODHPUR\",345026:\"JAISALMER\",342305:\"JODHPUR\",342022:\"JODHPUR\",342310:\"JAISALMER\",342012:\"JODHPUR\",342604:\"JODHPUR\",342314:\"JODHPUR\",342021:\"JODHPUR\",342029:\"JODHPUR\",342802:\"JODHPUR\",342302:\"JODHPUR\",342015:\"JODHPUR\",345033:\"JAISALMER\",342003:\"JODHPUR\",342013:\"JODHPUR\",342011:\"JODHPUR\",342026:\"JODHPUR\",342006:\"JODHPUR\",342005:\"JODHPUR\",342007:\"JODHPUR\",342028:\"JODHPUR\",342304:\"JODHPUR\",342008:\"JODHPUR\",345022:\"JAISALMER\",341025:\"NAGAUR\",341305:\"NAGAUR\",341303:\"NAGAUR\",341510:\"NAGAUR\",341024:\"NAGAUR\",341506:\"NAGAUR\",341022:\"NAGAUR\",341001:\"NAGAUR\",341513:\"NAGAUR\",341504:\"NAGAUR\",341508:\"NAGAUR\",341514:\"NAGAUR\",341519:\"NAGAUR\",341319:\"NAGAUR\",342902:\"NAGAUR\",341306:\"NAGAUR\",341302:\"NAGAUR\",341518:\"NAGAUR\",305026:\"NAGAUR\",341501:\"NAGAUR\",341512:\"NAGAUR\",341503:\"NAGAUR\",341316:\"NAGAUR\",341304:\"NAGAUR\",341533:\"NAGAUR\",341021:\"NAGAUR\",341551:\"NAGAUR\",341301:\"NAGAUR\",341023:\"NAGAUR\",341505:\"NAGAUR\",341520:\"NAGAUR\",341026:\"NAGAUR\",341516:\"NAGAUR\",341517:\"NAGAUR\",341028:\"NAGAUR\",341509:\"NAGAUR\",341031:\"NAGAUR\",341502:\"NAGAUR\",341542:\"NAGAUR\",341027:\"NAGAUR\",341511:\"NAGAUR\",341029:\"NAGAUR\",341030:\"NAGAUR\",341507:\"NAGAUR\",341317:\"NAGAUR\",341515:\"NAGAUR\",341318:\"NAGAUR\",306302:\"PALI\",306103:\"PALI\",306504:\"PALI\",306102:\"PALI\",306703:\"PALI\",306301:\"PALI\",306602:\"PALI\",306303:\"PALI\",306104:\"PALI\",306001:\"PALI\",306021:\"PALI\",306902:\"PALI\",306708:\"PALI\",306101:\"PALI\",306305:\"PALI\",306502:\"PALI\",306105:\"PALI\",306114:\"PALI\",306709:\"PALI\",306912:\"PALI\",306701:\"PALI\",306422:\"PALI\",306308:\"PALI\",306901:\"PALI\",306307:\"PALI\",306503:\"PALI\",306702:\"PALI\",306706:\"PALI\",306306:\"PALI\",306022:\"PALI\",306421:\"PALI\",306707:\"PALI\",306115:\"PALI\",306126:\"PALI\",306401:\"PALI\",306705:\"PALI\",306601:\"PALI\",306023:\"PALI\",306304:\"PALI\",306603:\"PALI\",306116:\"PALI\",306501:\"PALI\",306119:\"PALI\",306704:\"PALI\",332402:\"SIKAR\",332602:\"SIKAR\",332701:\"SIKAR\",332315:\"SIKAR\",332312:\"SIKAR\",332303:\"SIKAR\",332002:\"SIKAR\",332021:\"SIKAR\",332603:\"SIKAR\",332709:\"SIKAR\",332401:\"SIKAR\",332023:\"SIKAR\",332317:\"SIKAR\",332311:\"SIKAR\",332715:\"SIKAR\",332001:\"SIKAR\",332601:\"SIKAR\",332403:\"SIKAR\",332718:\"SIKAR\",332305:\"SIKAR\",332301:\"SIKAR\",332411:\"SIKAR\",332405:\"SIKAR\",332708:\"SIKAR\",332316:\"SIKAR\",332031:\"SIKAR\",332024:\"SIKAR\",332714:\"SIKAR\",332742:\"SIKAR\",332028:\"SIKAR\",332025:\"SIKAR\",332318:\"SIKAR\",332404:\"SIKAR\",332713:\"SIKAR\",332703:\"SIKAR\",332042:\"SIKAR\",332029:\"SIKAR\",332027:\"SIKAR\",332710:\"SIKAR\",332706:\"SIKAR\",332705:\"SIKAR\",332702:\"SIKAR\",332711:\"SIKAR\",331024:\"SIKAR\",332302:\"SIKAR\",332406:\"SIKAR\",332721:\"SIKAR\",332712:\"SIKAR\",332719:\"SIKAR\",332026:\"SIKAR\",332722:\"SIKAR\",332707:\"SIKAR\",332304:\"SIKAR\",332041:\"SIKAR\",332030:\"SIKAR\",332307:\"SIKAR\",307026:\"SIROHI\",307501:\"SIROHI\",343041:\"JALOR\",307510:\"SIROHI\",307030:\"JALOR\",307029:\"JALOR\",307022:\"SIROHI\",343040:\"JALOR\",343039:\"JALOR\",343025:\"JALOR\",343001:\"JALOR\",307028:\"SIROHI\",343049:\"JALOR\",307512:\"SIROHI\",343027:\"JALOR\",307031:\"SIROHI\",307511:\"SIROHI\",307043:\"SIROHI\",343042:\"JALOR\",343022:\"JALOR\",307027:\"SIROHI\",343032:\"JALOR\",307001:\"SIROHI\",307513:\"SIROHI\",307801:\"SIROHI\",307514:\"SIROHI\",307019:\"SIROHI\",343028:\"JALOR\",343029:\"JALOR\",307032:\"SIROHI\",307023:\"SIROHI\",343024:\"JALOR\",307024:\"SIROHI\",307803:\"JALOR\",307802:\"SIROHI\",343021:\"JALOR\",307515:\"JALOR\",343048:\"JALOR\",343023:\"JALOR\",343030:\"JALOR\",343002:\"JALOR\",335061:\"SRI GANGANAGAR\",335707:\"SRI GANGANAGAR\",335001:\"SRI GANGANAGAR\",335039:\"SRI GANGANAGAR\",335051:\"SRI GANGANAGAR\",335704:\"SRI GANGANAGAR\",335711:\"SRI GANGANAGAR\",335040:\"SRI GANGANAGAR\",335073:\"SRI GANGANAGAR\",335024:\"SRI GANGANAGAR\",335524:\"HANUMANGARH\",335703:\"SRI GANGANAGAR\",335041:\"SRI GANGANAGAR\",335027:\"SRI GANGANAGAR\",335038:\"SRI GANGANAGAR\",335701:\"SRI GANGANAGAR\",335705:\"SRI GANGANAGAR\",335021:\"SRI GANGANAGAR\",335702:\"SRI GANGANAGAR\",335025:\"SRI GANGANAGAR\",335803:\"HANUMANGARH\",335501:\"HANUMANGARH\",335062:\"SRI GANGANAGAR\",335063:\"HANUMANGARH\",335513:\"HANUMANGARH\",335802:\"HANUMANGARH\",335523:\"HANUMANGARH\",335503:\"HANUMANGARH\",335504:\"HANUMANGARH\",335804:\"SRI GANGANAGAR\",335801:\"HANUMANGARH\",335511:\"HANUMANGARH\",335805:\"SRI GANGANAGAR\",335502:\"HANUMANGARH\",335022:\"SRI GANGANAGAR\",335002:\"SRI GANGANAGAR\",335526:\"SRI GANGANAGAR\",335023:\"SRI GANGANAGAR\",335512:\"HANUMANGARH\",335065:\"HANUMANGARH\",335064:\"SRI GANGANAGAR\",335901:\"SRI GANGANAGAR\",335037:\"SRI GANGANAGAR\",335708:\"SRIGANGANAGAR\",335525:\"HANUMANGARH\",607802:\"CUDDALORE\",608801:\"CUDDALORE\",607302:\"CUDDALORE\",608702:\"CUDDALORE\",608502:\"CUDDALORE\",607205:\"CUDDALORE\",607003:\"CUDDALORE\",607101:\"CUDDALORE\",607109:\"CUDDALORE\",608305:\"CUDDALORE\",607301:\"CUDDALORE\",608704:\"CUDDALORE\",608401:\"CUDDALORE\",607106:\"CUDDALORE\",608002:\"CUDDALORE\",608301:\"CUDDALORE\",607103:\"CUDDALORE\",608306:\"CUDDALORE\",608201:\"CUDDALORE\",608601:\"CUDDALORE\",608501:\"CUDDALORE\",607102:\"CUDDALORE\",607108:\"CUDDALORE\",607801:\"CUDDALORE\",607803:\"CUDDALORE\",607807:\"CUDDALORE\",608302:\"CUDDALORE\",608102:\"CUDDALORE\",608602:\"CUDDALORE\",607005:\"CUDDALORE\",608304:\"CUDDALORE\",608001:\"CUDDALORE\",607001:\"CUDDALORE\",608303:\"CUDDALORE\",607104:\"CUDDALORE\",607308:\"CUDDALORE\",607105:\"CUDDALORE\",607006:\"CUDDALORE\",607805:\"CUDDALORE\",608701:\"CUDDALORE\",607303:\"CUDDALORE\",608703:\"CUDDALORE\",607112:\"CUDDALORE\",607004:\"CUDDALORE\",607401:\"CUDDALORE\",607002:\"CUDDALORE\",639207:\"KARUR\",621308:\"TIRUCHIRAPPALLI\",621311:\"KARUR\",621314:\"TIRUCHIRAPPALLI\",621310:\"TIRUCHIRAPPALLI\",621313:\"KARUR\",621306:\"TIRUCHIRAPPALLI\",621307:\"TIRUCHIRAPPALLI\",639203:\"KARUR\",621312:\"TIRUCHIRAPPALLI\",639202:\"TIRUPPUR\",639008:\"KARUR\",639003:\"KARUR\",639201:\"KARUR\",639111:\"KARUR\",639118:\"KARUR\",639206:\"KARUR\",639120:\"KARUR\",639105:\"KARUR\",621301:\"KARUR\",639113:\"KARUR\",621302:\"TIRUCHIRAPPALLI\",639007:\"KARUR\",639004:\"KARUR\",639107:\"KARUR\",621315:\"TIRUCHIRAPPALLI\",639110:\"KARUR\",639205:\"KARUR\",639006:\"KARUR\",639136:\"KARUR\",621305:\"KARUR\",639108:\"KARUR\",639001:\"KARUR\",639119:\"KARUR\",639102:\"KARUR\",639114:\"KARUR\",639104:\"KARUR\",639116:\"KARUR\",639005:\"KARUR\",639109:\"KARUR\",639002:\"KARUR\",639117:\"KARUR\",613705:\"TIRUVARUR\",612101:\"THANJAVUR\",612601:\"TIRUVARUR\",609801:\"NAGAPATTINAM\",612103:\"THANJAVUR\",612202:\"THANJAVUR\",612105:\"THANJAVUR\",612104:\"THANJAVUR\",612401:\"THANJAVUR\",612201:\"NAGAPATTINAM\",612106:\"THANJAVUR\",612603:\"TIRUVARUR\",612501:\"THANJAVUR\",609204:\"THANJAVUR\",612503:\"THANJAVUR\",613702:\"TIRUVARUR\",612204:\"THANJAVUR\",612302:\"THANJAVUR\",612703:\"THANJAVUR\",612702:\"THANJAVUR\",609805:\"NAGAPATTINAM\",612303:\"THANJAVUR\",609501:\"NAGAPATTINAM\",613703:\"TIRUVARUR\",612605:\"THANJAVUR\",609811:\"NAGAPATTINAM\",609807:\"THANJAVUR\",612604:\"TIRUVARUR\",609804:\"NAGAPATTINAM\",612203:\"NAGAPATTINAM\",612610:\"TIRUVARUR\",612602:\"THANJAVUR\",612504:\"THANJAVUR\",612402:\"THANJAVUR\",612001:\"THANJAVUR\",612502:\"THANJAVUR\",609806:\"NAGAPATTINAM\",612002:\"THANJAVUR\",609802:\"NAGAPATTINAM\",610107:\"TIRUVARUR\",612102:\"THANJAVUR\",609808:\"NAGAPATTINAM\",609810:\"NAGAPATTINAM\",609803:\"NAGAPATTINAM\",609403:\"NAGAPATTINAM\",609101:\"NAGAPATTINAM\",609503:\"TIRUVARUR\",609301:\"NAGAPATTINAM\",609405:\"TIRUVARUR\",609118:\"NAGAPATTINAM\",609102:\"NAGAPATTINAM\",609103:\"NAGAPATTINAM\",609109:\"NAGAPATTINAM\",609302:\"NAGAPATTINAM\",609111:\"NAGAPATTINAM\",609203:\"NAGAPATTINAM\",609309:\"NAGAPATTINAM\",609117:\"NAGAPATTINAM\",609303:\"NAGAPATTINAM\",609312:\"NAGAPATTINAM\",609307:\"NAGAPATTINAM\",609003:\"NAGAPATTINAM\",609001:\"NAGAPATTINAM\",609115:\"NAGAPATTINAM\",609401:\"NAGAPATTINAM\",609116:\"NAGAPATTINAM\",609108:\"NAGAPATTINAM\",609201:\"NAGAPATTINAM\",609308:\"NAGAPATTINAM\",609104:\"NAGAPATTINAM\",609304:\"NAGAPATTINAM\",609112:\"NAGAPATTINAM\",609105:\"NAGAPATTINAM\",609107:\"NAGAPATTINAM\",609106:\"NAGAPATTINAM\",609402:\"NAGAPATTINAM\",609202:\"NAGAPATTINAM\",609314:\"NAGAPATTINAM\",609113:\"NAGAPATTINAM\",609404:\"NAGAPATTINAM\",609313:\"NAGAPATTINAM\",609114:\"NAGAPATTINAM\",609305:\"NAGAPATTINAM\",609306:\"NAGAPATTINAM\",609205:\"NAGAPATTINAM\",609310:\"NAGAPATTINAM\",609110:\"NAGAPATTINAM\",609311:\"NAGAPATTINAM\",610105:\"TIRUVARUR\",611101:\"TIRUVARUR\",609703:\"NAGAPATTINAM\",611106:\"NAGAPATTINAM\",609604:\"KARAIKAL\",609502:\"TIRUVARUR\",610203:\"TIRUVARUR\",610106:\"TIRUVARUR\",611104:\"NAGAPATTINAM\",609601:\"KARAIKAL\",610201:\"TIRUVARUR\",613701:\"TIRUVARUR\",610101:\"TIRUVARUR\",611102:\"NAGAPATTINAM\",611105:\"NAGAPATTINAM\",610103:\"TIRUVARUR\",611108:\"NAGAPATTINAM\",610102:\"TIRUVARUR\",610001:\"TIRUVARUR\",609602:\"KARAIKAL\",611002:\"NAGAPATTINAM\",610104:\"TIRUVARUR\",609701:\"NAGAPATTINAM\",611109:\"NAGAPATTINAM\",609702:\"NAGAPATTINAM\",610204:\"NAGAPATTINAM\",613704:\"TIRUVARUR\",611110:\"NAGAPATTINAM\",609605:\"KARAIKAL\",609607:\"KARAIKAL\",611103:\"NAGAPATTINAM\",610205:\"TIRUVARUR\",610003:\"TIRUVARUR\",610109:\"TIRUVARUR\",610207:\"TIRUVARUR\",611112:\"NAGAPATTINAM\",609608:\"TIRUVARUR\",610202:\"TIRUVARUR\",609609:\"KARAIKAL\",609603:\"KARAIKAL\",610005:\"Nagapattinam\",611001:\"NAGAPATTINAM\",611003:\"NAGAPATTINAM\",609504:\"TIRUVARUR\",609704:\"NAGAPATTINAM\",611111:\"NAGAPATTINAM\",609606:\"KARAIKAL\",610004:\"TIRUVARUR\",614602:\"THANJAVUR\",614707:\"THANJAVUR\",614701:\"THANJAVUR\",614810:\"NAGAPATTINAM\",614614:\"THANJAVUR\",614615:\"THANJAVUR\",614723:\"THANJAVUR\",614901:\"THANJAVUR\",614704:\"TIRUVARUR\",614626:\"THANJAVUR\",614623:\"THANJAVUR\",614612:\"THANJAVUR\",614903:\"THANJAVUR\",614714:\"NAGAPATTINAM\",614702:\"THANJAVUR\",614809:\"NAGAPATTINAM\",614711:\"NAGAPATTINAM\",614902:\"PUDUKKOTTAI\",614906:\"THANJAVUR\",614613:\"THANJAVUR\",614806:\"THANJAVUR\",614904:\"THANJAVUR\",614803:\"THANJAVUR\",614715:\"TIRUVARUR\",614628:\"THANJAVUR\",614703:\"TIRUVARUR\",614738:\"TIRUVARUR\",614625:\"THANJAVUR\",614804:\"THANJAVUR\",614802:\"THANJAVUR\",614808:\"NAGAPATTINAM\",614716:\"TIRUVARUR\",614807:\"NAGAPATTINAM\",614706:\"TIRUVARUR\",614712:\"NAGAPATTINAM\",614601:\"THANJAVUR\",614905:\"THANJAVUR\",614713:\"TIRUVARUR\",614629:\"PUDUKKOTTAI\",622203:\"PUDUKKOTTAI\",622003:\"PUDUKKOTTAI\",613301:\"PUDUKKOTTAI\",622301:\"PUDUKKOTTAI\",622401:\"PUDUKKOTTAI\",614618:\"PUDUKKOTTAI\",614616:\"PUDUKKOTTAI\",614805:\"PUDUKKOTTAI\",622005:\"PUDUKKOTTAI\",622302:\"PUDUKKOTTAI\",622504:\"PUDUKKOTTAI\",614617:\"PUDUKKOTTAI\",622304:\"PUDUKKOTTAI\",622101:\"PUDUKKOTTAI\",622402:\"PUDUKKOTTAI\",614621:\"PUDUKKOTTAI\",614801:\"PUDUKKOTTAI\",614622:\"PUDUKKOTTAI\",622201:\"PUDUKKOTTAI\",622506:\"PUDUKKOTTAI\",622503:\"PUDUKKOTTAI\",614630:\"PUDUKKOTTAI\",614624:\"PUDUKKOTTAI\",622515:\"PUDUKKOTTAI\",614619:\"PUDUKKOTTAI\",622001:\"PUDUKKOTTAI\",622501:\"PUDUKKOTTAI\",614620:\"PUDUKKOTTAI\",622102:\"PUDUKKOTTAI\",621316:\"PUDUKKOTTAI\",622412:\"PUDUKKOTTAI\",622505:\"PUDUKKOTTAI\",622002:\"PUDUKKOTTAI\",622204:\"PUDUKKOTTAI\",622303:\"PUDUKKOTTAI\",622502:\"PUDUKKOTTAI\",622209:\"PUDUKKOTTAI\",622409:\"PUDUKKOTTAI\",622411:\"PUDUKKOTTAI\",622202:\"PUDUKKOTTAI\",622404:\"PUDUKKOTTAI\",622104:\"PUDUKKOTTAI\",622507:\"PUDUKKOTTAI\",622403:\"PUDUKKOTTAI\",622103:\"PUDUKKOTTAI\",622004:\"PUDUKKOTTAI\",622422:\"PUDUKKOTTAI\",622407:\"PUDUKKOTTAI\",621211:\"TIRUCHIRAPPALLI\",621103:\"TIRUCHIRAPPALLI\",621007:\"TIRUCHIRAPPALLI\",621118:\"TIRUCHIRAPPALLI\",621014:\"TIRUCHIRAPPALLI\",621708:\"TIRUCHIRAPPALLI\",621108:\"PERAMBALUR\",621210:\"TIRUCHIRAPPALLI\",621209:\"TIRUCHIRAPPALLI\",621005:\"TIRUCHIRAPPALLI\",621107:\"PERAMBALUR\",621003:\"TIRUCHIRAPPALLI\",621109:\"TIRUCHIRAPPALLI\",620006:\"TIRUCHIRAPPALLI\",621208:\"TIRUCHIRAPPALLI\",621101:\"PERAMBALUR\",621204:\"TIRUCHIRAPPALLI\",621717:\"PERAMBALUR\",621102:\"TIRUCHIRAPPALLI\",621219:\"PERAMBALUR\",621214:\"TIRUCHIRAPPALLI\",621220:\"PERAMBALUR\",621215:\"TIRUCHIRAPPALLI\",621203:\"TIRUCHIRAPPALLI\",621115:\"PERAMBALUR\",621113:\"PERAMBALUR\",621202:\"TIRUCHIRAPPALLI\",621001:\"TIRUCHIRAPPALLI\",621216:\"TIRUCHIRAPPALLI\",621104:\"TIRUCHIRAPPALLI\",621207:\"TIRUCHIRAPPALLI\",621213:\"TIRUCHIRAPPALLI\",621206:\"TIRUCHIRAPPALLI\",621112:\"TIRUCHIRAPPALLI\",621133:\"PERAMBALUR\",620005:\"TIRUCHIRAPPALLI\",621106:\"TIRUCHIRAPPALLI\",621008:\"TIRUCHIRAPPALLI\",621105:\"TIRUCHIRAPPALLI\",621205:\"TIRUCHIRAPPALLI\",621110:\"TIRUCHIRAPPALLI\",621716:\"PERAMBALUR\",621117:\"PERAMBALUR\",621114:\"TIRUCHIRAPPALLI\",621009:\"TIRUCHIRAPPALLI\",621004:\"TIRUCHIRAPPALLI\",621002:\"TIRUCHIRAPPALLI\",621012:\"TIRUCHIRAPPALLI\",621116:\"PERAMBALUR\",621212:\"PERAMBALUR\",621006:\"TIRUCHIRAPPALLI\",621011:\"TIRUCHIRAPPALLI\",621111:\"TIRUCHIRAPPALLI\",621217:\"TIRUCHIRAPPALLI\",621010:\"TIRUCHIRAPPALLI\",613402:\"THANJAVUR\",614103:\"TIRUVARUR\",612301:\"THANJAVUR\",614403:\"TIRUVARUR\",612804:\"TIRUVARUR\",614717:\"TIRUVARUR\",614303:\"THANJAVUR\",613101:\"THANJAVUR\",613602:\"THANJAVUR\",613601:\"THANJAVUR\",612801:\"TIRUVARUR\",614018:\"TIRUVARUR\",614401:\"THANJAVUR\",613204:\"THANJAVUR\",613003:\"THANJAVUR\",614019:\"TIRUVARUR\",614404:\"TIRUVARUR\",613001:\"THANJAVUR\",613205:\"THANJAVUR\",613504:\"THANJAVUR\",614402:\"THANJAVUR\",614016:\"TIRUVARUR\",612802:\"TIRUVARUR\",612701:\"THANJAVUR\",614211:\"THANJAVUR\",614201:\"THANJAVUR\",613403:\"THANJAVUR\",613009:\"THANJAVUR\",612803:\"TIRUVARUR\",614204:\"THANJAVUR\",613104:\"THANJAVUR\",614017:\"TIRUVARUR\",614202:\"THANJAVUR\",613007:\"THANJAVUR\",614001:\"TIRUVARUR\",610206:\"TIRUVARUR\",614302:\"THANJAVUR\",614013:\"TIRUVARUR\",614203:\"THANJAVUR\",613005:\"THANJAVUR\",613102:\"THANJAVUR\",614708:\"TIRUVARUR\",613502:\"THANJAVUR\",613002:\"THANJAVUR\",613201:\"THANJAVUR\",613202:\"THANJAVUR\",614014:\"TIRUVARUR\",614705:\"TIRUVARUR\",614015:\"TIRUVARUR\",613103:\"THANJAVUR\",614208:\"THANJAVUR\",614101:\"TIRUVARUR\",614301:\"THANJAVUR\",613105:\"THANJAVUR\",614102:\"THANJAVUR\",613501:\"THANJAVUR\",613303:\"THANJAVUR\",614206:\"THANJAVUR\",614710:\"TIRUVARUR\",613004:\"THANJAVUR\",613006:\"THANJAVUR\",613203:\"THANJAVUR\",614210:\"THANJAVUR\",614020:\"TIRUVARUR\",614205:\"THANJAVUR\",614207:\"THANJAVUR\",613503:\"THANJAVUR\",613010:\"THANJAVUR\",613008:\"THANJAVUR\",613401:\"THANJAVUR\",620102:\"TIRUCHIRAPPALLI\",621719:\"ARIYALUR\",621714:\"ARIYALUR\",620014:\"TIRUCHIRAPPALLI\",621712:\"TIRUCHIRAPPALLI\",608901:\"ARIYALUR\",621715:\"ARIYALUR\",621722:\"TIRUCHIRAPPALLI\",621711:\"TIRUCHIRAPPALLI\",621702:\"TIRUCHIRAPPALLI\",612903:\"ARIYALUR\",620011:\"TIRUCHIRAPPALLI\",621713:\"ARIYALUR\",620101:\"TIRUCHIRAPPALLI\",621651:\"TIRUCHIRAPPALLI\",621701:\"ARIYALUR\",620004:\"TIRUCHIRAPPALLI\",612902:\"ARIYALUR\",621718:\"ARIYALUR\",639101:\"TIRUCHIRAPPALLI\",621801:\"ARIYALUR\",621709:\"ARIYALUR\",621703:\"TIRUCHIRAPPALLI\",621802:\"ARIYALUR\",621803:\"ARIYALUR\",620026:\"TIRUCHIRAPPALLI\",621851:\"ARIYALUR\",620013:\"TIRUCHIRAPPALLI\",621704:\"ARIYALUR\",621729:\"ARIYALUR\",620010:\"TIRUCHIRAPPALLI\",620009:\"TIRUCHIRAPPALLI\",621707:\"ARIYALUR\",620015:\"TIRUCHIRAPPALLI\",621705:\"ARIYALUR\",612901:\"ARIYALUR\",620024:\"TIRUCHIRAPPALLI\",620001:\"TIRUCHIRAPPALLI\",621730:\"ARIYALUR\",620008:\"TIRUCHIRAPPALLI\",620012:\"TIRUCHIRAPPALLI\",621806:\"ARIYALUR\",621804:\"ARIYALUR\",621218:\"TIRUCHIRAPPALLI\",639103:\"TIRUCHIRAPPALLI\",620007:\"TIRUCHIRAPPALLI\",620025:\"TIRUCHIRAPPALLI\",612904:\"ARIYALUR\",620020:\"TIRUCHIRAPPALLI\",621653:\"TIRUCHIRAPPALLI\",621652:\"TIRUCHIRAPPALLI\",621706:\"TIRUCHIRAPPALLI\",620023:\"TIRUCHIRAPPALLI\",621710:\"ARIYALUR\",621805:\"ARIYALUR\",620021:\"TIRUCHIRAPPALLI\",639115:\"TIRUCHIRAPPALLI\",621601:\"TIRUCHIRAPPALLI\",620016:\"TIRUCHIRAPPALLI\",620019:\"TIRUCHIRAPPALLI\",639112:\"TIRUCHIRAPPALLI\",620017:\"TIRUCHIRAPPALLI\",621731:\"Ariyalur\",620002:\"TIRUCHIRAPPALLI\",620003:\"TIRUCHIRAPPALLI\",620027:\"TIRUCHIRAPPALLI\",620018:\"TIRUCHIRAPPALLI\",620022:\"TIRUCHIRAPPALLI\",612905:\"ARIYALUR\",607201:\"VILLUPURAM\",606109:\"CUDDALORE\",606102:\"VILLUPURAM\",605758:\"VILLUPURAM\",606213:\"VILLUPURAM\",606106:\"CUDDALORE\",606115:\"VILLUPURAM\",606108:\"CUDDALORE\",605701:\"VILLUPURAM\",606208:\"VILLUPURAM\",606303:\"CUDDALORE\",606201:\"VILLUPURAM\",606204:\"VILLUPURAM\",607209:\"VILLUPURAM\",605803:\"VILLUPURAM\",606107:\"VILLUPURAM\",606301:\"VILLUPURAM\",605752:\"VILLUPURAM\",606209:\"VILLUPURAM\",606401:\"VILLUPURAM\",607107:\"VILLUPURAM\",605755:\"VILLUPURAM\",605801:\"VILLUPURAM\",605751:\"VILLUPURAM\",606402:\"VILLUPURAM\",605766:\"VILLUPURAM\",606305:\"VILLUPURAM\",606111:\"CUDDALORE\",605702:\"VILLUPURAM\",606003:\"CUDDALORE\",606110:\"CUDDALORE\",606207:\"VILLUPURAM\",606104:\"CUDDALORE\",605754:\"VILLUPURAM\",606103:\"CUDDALORE\",606302:\"CUDDALORE\",605802:\"VILLUPURAM\",607202:\"VILLUPURAM\",607203:\"VILLUPURAM\",607204:\"VILLUPURAM\",606202:\"VILLUPURAM\",606304:\"CUDDALORE\",606105:\"CUDDALORE\",606205:\"VILLUPURAM\",606203:\"VILLUPURAM\",605756:\"VILLUPURAM\",607804:\"CUDDALORE\",605759:\"VILLUPURAM\",606206:\"VILLUPURAM\",605757:\"VILLUPURAM\",606001:\"CUDDALORE\",600002:\"Chennai\",632506:\"VELLORE\",632510:\"VELLORE\",632508:\"VELLORE\",631002:\"VELLORE\",632501:\"VELLORE\",632519:\"VELLORE\",632507:\"VELLORE\",631003:\"VELLORE\",632513:\"VELLORE\",632511:\"VELLORE\",632502:\"VELLORE\",631001:\"VELLORE\",632517:\"VELLORE\",632503:\"VELLORE\",631151:\"VELLORE\",632509:\"VELLORE\",631051:\"VELLORE\",632505:\"VELLORE\",632531:\"VELLORE\",631102:\"VELLORE\",632406:\"VELLORE\",632520:\"VELLORE\",632504:\"VELLORE\",632512:\"VELLORE\",632405:\"VELLORE\",631004:\"VELLORE\",632515:\"VELLORE\",631101:\"VELLORE\",631006:\"VELLORE\",631052:\"VELLORE\",632404:\"VELLORE\",632514:\"VELLORE\",632516:\"VELLORE\",632318:\"VELLORE\",632401:\"VELLORE\",632518:\"VELLORE\",632403:\"VELLORE\",632521:\"VELLORE\",631152:\"VELLORE\",631005:\"VELLORE\",603301:\"KANCHIPURAM\",603202:\"Kanchipuram\",603110:\"KANCHIPURAM\",603109:\"KANCHIPURAM\",603004:\"KANCHIPURAM\",603312:\"KANCHIPURAM\",603107:\"KANCHIPURAM\",603307:\"KANCHIPURAM\",603401:\"KANCHIPURAM\",603204:\"KANCHIPURAM\",603211:\"KANCHIPURAM\",603127:\"KANCHIPURAM\",603405:\"KANCHIPURAM\",603106:\"KANCHIPURAM\",603306:\"KANCHIPURAM\",603101:\"KANCHIPURAM\",603310:\"KANCHIPURAM\",603102:\"KANCHIPURAM\",603308:\"KANCHIPURAM\",603002:\"KANCHIPURAM\",603001:\"KANCHIPURAM\",603302:\"KANCHIPURAM\",603313:\"KANCHIPURAM\",603309:\"KANCHIPURAM\",603201:\"KANCHIPURAM\",603108:\"KANCHIPURAM\",603303:\"KANCHIPURAM\",603305:\"KANCHIPURAM\",603104:\"KANCHIPURAM\",603203:\"KANCHIPURAM\",603314:\"KANCHIPURAM\",603304:\"KANCHIPURAM\",603105:\"KANCHIPURAM\",603111:\"KANCHIPURAM\",603209:\"KANCHIPURAM\",603003:\"KANCHIPURAM\",603319:\"KANCHIPURAM\",603311:\"KANCHIPURAM\",603210:\"KANCHIPURAM\",600005:\"CHENNAI\",600094:\"CHENNAI\",600006:\"CHENNAI\",600086:\"CHENNAI\",600017:\"CHENNAI\",600014:\"CHENNAI\",600034:\"CHENNAI\",600004:\"CHENNAI\",600018:\"CHENNAI\",600030:\"CHENNAI\",600102:\"CHENNAI\",600040:\"CHENNAI\",600101:\"CHENNAI\",600106:\"CHENNAI\",600023:\"CHENNAI\",600031:\"CHENNAI\",600008:\"CHENNAI\",600001:\"CHENNAI\",600084:\"CHENNAI\",600009:\"CHENNAI\",600082:\"CHENNAI\",600104:\"CHENNAI\",600038:\"CHENNAI\",600010:\"CHENNAI\",600107:\"CHENNAI\",600003:\"CHENNAI\",600012:\"CHENNAI\",600011:\"CHENNAI\",600013:\"CHENNAI\",600081:\"CHENNAI\",600007:\"CHENNAI\",600039:\"CHENNAI\",600021:\"CHENNAI\",600088:\"KANCHIPURAM\",600020:\"CHENNAI\",600016:\"KANCHIPURAM\",600087:\"TIRUVALLUR\",600083:\"CHENNAI\",600090:\"CHENNAI\",600032:\"CHENNAI\",600025:\"CHENNAI\",600015:\"CHENNAI\",600036:\"CHENNAI\",600115:\"KANCHIPURAM\",600078:\"CHENNAI\",600097:\"KANCHIPURAM\",600024:\"CHENNAI\",600085:\"CHENNAI\",600091:\"KANCHIPURAM\",600033:\"CHENNAI\",600089:\"KANCHIPURAM\",600035:\"CHENNAI\",600061:\"KANCHIPURAM\",600041:\"KANCHIPURAM\",600096:\"KANCHIPURAM\",600028:\"CHENNAI\",600022:\"CHENNAI\",600093:\"CHENNAI\",600119:\"KANCHIPURAM\",600113:\"CHENNAI\",600026:\"CHENNAI\",600042:\"CHENNAI\",600092:\"CHENNAI\",631303:\"TIRUVALLUR\",603406:\"KANCHIPURAM\",631209:\"TIRUVALLUR\",631213:\"TIRUVALLUR\",603402:\"KANCHIPURAM\",602023:\"TIRUVALLUR\",631301:\"TIRUVALLUR\",602025:\"TIRUVALLUR\",631204:\"TIRUVALLUR\",631603:\"KANCHIPURAM\",631201:\"TIRUVALLUR\",631605:\"KANCHIPURAM\",631202:\"TIRUVALLUR\",631210:\"TIRUVALLUR\",601102:\"TIRUVALLUR\",631561:\"KANCHIPURAM\",631601:\"KANCHIPURAM\",631502:\"KANCHIPURAM\",631551:\"KANCHIPURAM\",631205:\"TIRUVALLUR\",631208:\"TIRUVALLUR\",631206:\"TIRUVALLUR\",631302:\"TIRUVALLUR\",631553:\"KANCHIPURAM\",601103:\"TIRUVALLUR\",631207:\"TIRUVALLUR\",631604:\"KANCHIPURAM\",631203:\"TIRUVALLUR\",631304:\"TIRUVALLUR\",602026:\"TIRUVALLUR\",602105:\"KANCHIPURAM\",602021:\"TIRUVALLUR\",602002:\"TIRUVALLUR\",602117:\"KANCHIPURAM\",602003:\"TIRUVALLUR\",631501:\"KANCHIPURAM\",602108:\"KANCHIPURAM\",631552:\"KANCHIPURAM\",602024:\"TIRUVALLUR\",631211:\"TIRUVALLUR\",631402:\"TIRUVALLUR\",631606:\"KANCHIPURAM\",602106:\"KANCHIPURAM\",603403:\"KANCHIPURAM\",631212:\"TIRUVALLUR\",602001:\"TIRUVALLUR\",605007:\"PONDICHERRY\",605402:\"VILLUPURAM\",604301:\"VILLUPURAM\",604207:\"VILLUPURAM\",604101:\"VILLUPURAM\",604302:\"VILLUPURAM\",604151:\"VILLUPURAM\",604303:\"VILLUPURAM\",605201:\"VILLUPURAM\",605103:\"VILLUPURAM\",604203:\"VILLUPURAM\",604202:\"VILLUPURAM\",605651:\"VILLUPURAM\",604210:\"VILLUPURAM\",605202:\"VILLUPURAM\",605102:\"PONDICHERRY\",605108:\"VILLUPURAM\",605110:\"PONDICHERRY\",605203:\"VILLUPURAM\",605652:\"VILLUPURAM\",604152:\"VILLUPURAM\",605401:\"VILLUPURAM\",604307:\"VILLUPURAM\",605101:\"VILLUPURAM\",604201:\"VILLUPURAM\",605601:\"VILLUPURAM\",607402:\"PONDICHERRY\",605104:\"VILLUPURAM\",605014:\"PONDICHERRY\",605106:\"CUDDALORE\",605502:\"PONDICHERRY\",604208:\"VILLUPURAM\",605006:\"PONDICHERRY\",604102:\"VILLUPURAM\",604304:\"VILLUPURAM\",604204:\"VILLUPURAM\",605111:\"VILLUPURAM\",604206:\"VILLUPURAM\",605105:\"VILLUPURAM\",605302:\"VILLUPURAM\",605602:\"VILLUPURAM\",605301:\"VILLUPURAM\",604205:\"VILLUPURAM\",604154:\"VILLUPURAM\",605109:\"VILLUPURAM\",604305:\"VILLUPURAM\",607403:\"PONDICHERRY\",605501:\"VILLUPURAM\",604306:\"VILLUPURAM\",605107:\"VILLUPURAM\",605008:\"PONDICHERRY\",605004:\"PONDICHERRY\",605009:\"PONDICHERRY\",605003:\"PONDICHERRY\",605005:\"PONDICHERRY\",605010:\"PONDICHERRY\",604153:\"VILLUPURAM\",605001:\"PONDICHERRY\",605013:\"PONDICHERRY\",605002:\"PONDICHERRY\",604001:\"VILLUPURAM\",605011:\"PONDICHERRY\",601204:\"TIRUVALLUR\",600052:\"TIRUVALLUR\",600116:\"TIRUVALLUR\",600067:\"TIRUVALLUR\",600053:\"KANCHIPURAM\",600058:\"TIRUVALLUR\",600070:\"KANCHIPURAM\",600103:\"TIRUVALLUR\",601203:\"TIRUVALLUR\",601201:\"TIRUVALLUR\",600072:\"TIRUVALLUR\",601101:\"TIRUVALLUR\",600054:\"TIRUVALLUR\",600055:\"TIRUVALLUR\",600095:\"TIRUVALLUR\",600077:\"TIRUVALLUR\",600044:\"KANCHIPURAM\",601206:\"TIRUVALLUR\",600064:\"KANCHIPURAM\",600059:\"KANCHIPURAM\",600132:\"KANCHIPURAM\",600057:\"TIRUVALLUR\",600118:\"TIRUVALLUR\",600128:\"KANCHIPURAM\",600073:\"KANCHIPURAM\",600045:\"KANCHIPURAM\",600047:\"KANCHIPURAM\",600019:\"TIRUVALLUR\",600071:\"TIRUVALLUR\",601202:\"TIRUVALLUR\",600056:\"TIRUVALLUR\",600117:\"KANCHIPURAM\",603103:\"KANCHIPURAM\",600127:\"KANCHIPURAM\",600048:\"KANCHIPURAM\",600099:\"CHENNAI\",601205:\"TIRUVALLUR\",600076:\"TIRUVALLUR\",600050:\"TIRUVALLUR\",603112:\"KANCHIPURAM\",600129:\"KANCHIPURAM\",600062:\"TIRUVALLUR\",600069:\"KANCHIPURAM\",600124:\"TIRUVALLUR\",600126:\"KANCHIPURAM\",600051:\"TIRUVALLUR\",600060:\"TIRUVALLUR\",601301:\"KANCHIPURAM\",600123:\"TIRUVALLUR\",600068:\"TIRUVALLUR\",600125:\"KANCHIPURAM\",600122:\"KANCHIPURAM\",600100:\"KANCHIPURAM\",600037:\"TIRUVALLUR\",600120:\"TIRUVALLUR\",600130:\"KANCHIPURAM\",600063:\"KANCHIPURAM\",600043:\"KANCHIPURAM\",600075:\"KANCHIPURAM\",600074:\"KANCHIPURAM\",600110:\"TIRUVALLUR\",600066:\"TIRUVALLUR\",600049:\"TIRUVALLUR\",600131:\"KANCHIPURAM\",600046:\"KANCHIPURAM\",606905:\"TIRUVANNAMALAI\",606604:\"TIRUVANNAMALAI\",606901:\"TIRUVANNAMALAI\",632317:\"TIRUVANNAMALAI\",604403:\"TIRUVANNAMALAI\",632314:\"TIRUVANNAMALAI\",631701:\"TIRUVANNAMALAI\",604408:\"TIRUVANNAMALAI\",606702:\"TIRUVANNAMALAI\",604402:\"TIRUVANNAMALAI\",606904:\"TIRUVANNAMALAI\",606753:\"TIRUVANNAMALAI\",604503:\"TIRUVANNAMALAI\",632315:\"TIRUVANNAMALAI\",604405:\"TIRUVANNAMALAI\",604401:\"TIRUVANNAMALAI\",606804:\"TIRUVANNAMALAI\",606703:\"TIRUVANNAMALAI\",604504:\"TIRUVANNAMALAI\",606808:\"TIRUVANNAMALAI\",606807:\"TIRUVANNAMALAI\",631702:\"TIRUVANNAMALAI\",606709:\"TIRUVANNAMALAI\",632326:\"TIRUVANNAMALAI\",632301:\"TIRUVANNAMALAI\",606752:\"TIRUVANNAMALAI\",606806:\"TIRUVANNAMALAI\",604407:\"TIRUVANNAMALAI\",604501:\"TIRUVANNAMALAI\",606803:\"TIRUVANNAMALAI\",606708:\"TIRUVANNAMALAI\",606902:\"TIRUVANNAMALAI\",606907:\"TIRUVANNAMALAI\",606755:\"TIRUVANNAMALAI\",604505:\"TIRUVANNAMALAI\",606603:\"TIRUVANNAMALAI\",606601:\"TIRUVANNAMALAI\",606908:\"TIRUVANNAMALAI\",606701:\"TIRUVANNAMALAI\",606801:\"TIRUVANNAMALAI\",632316:\"TIRUVANNAMALAI\",604410:\"TIRUVANNAMALAI\",606802:\"TIRUVANNAMALAI\",604404:\"TIRUVANNAMALAI\",606707:\"TIRUVANNAMALAI\",606906:\"TIRUVANNAMALAI\",604406:\"TIRUVANNAMALAI\",604502:\"TIRUVANNAMALAI\",606704:\"TIRUVANNAMALAI\",604601:\"TIRUVANNAMALAI\",632313:\"TIRUVANNAMALAI\",606903:\"TIRUVANNAMALAI\",632311:\"TIRUVANNAMALAI\",606751:\"TIRUVANNAMALAI\",606805:\"TIRUVANNAMALAI\",606710:\"TIRUVANNAMALAI\",606754:\"TIRUVANNAMALAI\",632319:\"VELLORE\",606611:\"TIRUVANNAMALAI\",606705:\"TIRUVANNAMALAI\",632312:\"VELLORE\",606706:\"TIRUVANNAMALAI\",604409:\"TIRUVANNAMALAI\",606811:\"TIRUVANNAMALAI\",632011:\"VELLORE\",632010:\"VELLORE\",632009:\"VELLORE\",632101:\"VELLORE\",632102:\"VELLORE\",632204:\"VELLORE\",632202:\"VELLORE\",632107:\"VELLORE\",632055:\"VELLORE\",632106:\"VELLORE\",632002:\"VELLORE\",632004:\"VELLORE\",632014:\"VELLORE\",632105:\"VELLORE\",632113:\"VELLORE\",632059:\"VELLORE\",632104:\"VELLORE\",632103:\"VELLORE\",632006:\"VELLORE\",632013:\"VELLORE\",632001:\"VELLORE\",632007:\"VELLORE\",632058:\"VELLORE\",632057:\"VELLORE\",632114:\"VELLORE\",632012:\"VELLORE\",632008:\"VELLORE\",632115:\"VELLORE\",624614:\"DINDIGUL\",624702:\"DINDIGUL\",624212:\"DINDIGUL\",624003:\"DINDIGUL\",624101:\"DINDIGUL\",624709:\"DINDIGUL\",624710:\"DINDIGUL\",624303:\"DINDIGUL\",624620:\"DINDIGUL\",624703:\"DINDIGUL\",624613:\"DINDIGUL\",624302:\"DINDIGUL\",624612:\"DINDIGUL\",624206:\"DINDIGUL\",624622:\"DINDIGUL\",624201:\"DINDIGUL\",624219:\"DINDIGUL\",624621:\"DINDIGUL\",624001:\"DINDIGUL\",624308:\"DINDIGUL\",624617:\"DINDIGUL\",624616:\"DINDIGUL\",624619:\"DINDIGUL\",624701:\"DINDIGUL\",624401:\"DINDIGUL\",624304:\"DINDIGUL\",624801:\"DINDIGUL\",624211:\"DINDIGUL\",624005:\"DINDIGUL\",624610:\"DINDIGUL\",624202:\"DINDIGUL\",624002:\"DINDIGUL\",624708:\"DINDIGUL\",624802:\"DINDIGUL\",624402:\"DINDIGUL\",624615:\"DINDIGUL\",624712:\"DINDIGUL\",624301:\"DINDIGUL\",624204:\"DINDIGUL\",624711:\"DINDIGUL\",624705:\"DINDIGUL\",624004:\"DINDIGUL\",624704:\"DINDIGUL\",624216:\"DINDIGUL\",624306:\"DINDIGUL\",624215:\"DINDIGUL\",624103:\"DINDIGUL\",624403:\"DINDIGUL\",624618:\"DINDIGUL\",624706:\"DINDIGUL\",624220:\"DINDIGUL\",624707:\"DINDIGUL\",624210:\"DINDIGUL\",624307:\"DINDIGUL\",624208:\"DINDIGUL\",624601:\"DINDIGUL\",629153:\"KANYAKUMARI\",629701:\"KANYAKUMARI\",629167:\"KANYAKUMARI\",629170:\"KANYAKUMARI\",629159:\"KANYAKUMARI\",629101:\"KANYAKUMARI\",629802:\"KANYAKUMARI\",629801:\"KANYAKUMARI\",629204:\"KANYAKUMARI\",629201:\"KANYAKUMARI\",629851:\"KANYAKUMARI\",629168:\"KANYAKUMARI\",629401:\"KANYAKUMARI\",629301:\"KANYAKUMARI\",629151:\"KANYAKUMARI\",629177:\"KANYAKUMARI\",629704:\"KANYAKUMARI\",629252:\"KANYAKUMARI\",629202:\"KANYAKUMARI\",629803:\"KANYAKUMARI\",629852:\"KANYAKUMARI\",629001:\"KANYAKUMARI\",629166:\"KANYAKUMARI\",629804:\"KANYAKUMARI\",629161:\"KANYAKUMARI\",629152:\"KANYAKUMARI\",629003:\"KANYAKUMARI\",629251:\"KANYAKUMARI\",629501:\"KANYAKUMARI\",629002:\"KANYAKUMARI\",629171:\"KANYAKUMARI\",629193:\"KANYAKUMARI\",629901:\"KANYAKUMARI\",629158:\"KANYAKUMARI\",629402:\"KANYAKUMARI\",629004:\"KANYAKUMARI\",629160:\"KANYAKUMARI\",629203:\"KANYAKUMARI\",629502:\"KANYAKUMARI\",629165:\"KANYAKUMARI\",629162:\"KANYAKUMARI\",629810:\"KANYAKUMARI\",629154:\"KANYAKUMARI\",629169:\"KANYAKUMARI\",629155:\"KANYAKUMARI\",629702:\"KANYAKUMARI\",629156:\"KANYAKUMARI\",629809:\"KANYAKUMARI\",629157:\"KANYAKUMARI\",629174:\"KANYAKUMARI\",629102:\"KANYAKUMARI\",629703:\"KANYAKUMARI\",629403:\"KANYAKUMARI\",629180:\"KANYAKUMARI\",629164:\"KANYAKUMARI\",629163:\"KANYAKUMARI\",629302:\"KANYAKUMARI\",629178:\"KANYAKUMARI\",629601:\"KANYAKUMARI\",629602:\"KANYAKUMARI\",629172:\"KANYAKUMARI\",629175:\"KANYAKUMARI\",629173:\"KANYAKUMARI\",629176:\"KANYAKUMARI\",629179:\"KANYAKUMARI\",630201:\"SIVAGANGA\",630107:\"SIVAGANGA\",630003:\"SIVAGANGA\",630307:\"SIVAGANGA\",630301:\"SIVAGANGA\",630303:\"SIVAGANGA\",630202:\"SIVAGANGA\",630207:\"SIVAGANGA\",630101:\"SIVAGANGA\",630205:\"SIVAGANGA\",630102:\"SIVAGANGA\",630501:\"SIVAGANGA\",630302:\"SIVAGANGA\",630005:\"SIVAGANGA\",630309:\"SIVAGANGA\",630212:\"SIVAGANGA\",630108:\"SIVAGANGA\",630106:\"SIVAGANGA\",630001:\"SIVAGANGA\",630306:\"SIVAGANGA\",630103:\"SIVAGANGA\",630314:\"SIVAGANGA\",630104:\"SIVAGANGA\",630502:\"SIVAGANGA\",630002:\"SIVAGANGA\",630410:\"SIVAGANGA\",630312:\"SIVAGANGA\",630405:\"SIVAGANGA\",630206:\"SIVAGANGA\",630105:\"SIVAGANGA\",630208:\"SIVAGANGA\",630311:\"SIVAGANGA\",628718:\"TUTICORIN\",627861:\"TIRUNELVELI\",627803:\"TIRUNELVELI\",627808:\"TIRUNELVELI\",628712:\"TUTICORIN\",627852:\"TIRUNELVELI\",628714:\"TUTICORIN\",628721:\"TUTICORIN\",627719:\"TIRUNELVELI\",627754:\"TIRUNELVELI\",628503:\"TUTICORIN\",627851:\"TIRUNELVELI\",627862:\"TIRUNELVELI\",627859:\"TIRUNELVELI\",628901:\"TUTICORIN\",627758:\"TIRUNELVELI\",627757:\"TIRUNELVELI\",628952:\"TUTICORIN\",627760:\"TIRUNELVELI\",628904:\"TUTICORIN\",628502:\"TUTICORIN\",627814:\"TIRUNELVELI\",627853:\"TIRUNELVELI\",627855:\"TIRUNELVELI\",627805:\"TIRUNELVELI\",627953:\"TIRUNELVELI\",627751:\"TIRUNELVELI\",628907:\"TUTICORIN\",628905:\"TUTICORIN\",628552:\"TUTICORIN\",628902:\"TUTICORIN\",627951:\"TIRUNELVELI\",627802:\"TIRUNELVELI\",627764:\"TIRUNELVELI\",627761:\"TIRUNELVELI\",627857:\"TIRUNELVELI\",627804:\"TIRUNELVELI\",628716:\"TUTICORIN\",627713:\"TIRUNELVELI\",628720:\"TUTICORIN\",627807:\"TIRUNELVELI\",627753:\"TIRUNELVELI\",627813:\"TIRUNELVELI\",627860:\"TIRUNELVELI\",627854:\"TIRUNELVELI\",628908:\"TUTICORIN\",627806:\"TIRUNELVELI\",628903:\"TUTICORIN\",628501:\"TUTICORIN\",627759:\"TIRUNELVELI\",628722:\"TUTICORIN\",627755:\"TIRUNELVELI\",627818:\"TIRUNELVELI\",627809:\"TIRUNELVELI\",628906:\"TUTICORIN\",627856:\"TIRUNELVELI\",627756:\"TIRUNELVELI\",627858:\"TIRUNELVELI\",627811:\"TIRUNELVELI\",627812:\"TIRUNELVELI\",625706:\"MADURAI\",625501:\"MADURAI\",625514:\"MADURAI\",625003:\"MADURAI\",625301:\"MADURAI\",625109:\"MADURAI\",625704:\"MADURAI\",625017:\"MADURAI\",625020:\"MADURAI\",625218:\"MADURAI\",625009:\"MADURAI\",625016:\"MADURAI\",625106:\"MADURAI\",625105:\"MADURAI\",625104:\"MADURAI\",625108:\"MADURAI\",625008:\"MADURAI\",625701:\"MADURAI\",625012:\"MADURAI\",625221:\"MADURAI\",625207:\"MADURAI\",625103:\"MADURAI\",625014:\"MADURAI\",625503:\"MADURAI\",625707:\"MADURAI\",625122:\"MADURAI\",625703:\"MADURAI\",625019:\"MADURAI\",625708:\"MADURAI\",625005:\"MADURAI\",625201:\"MADURAI\",625205:\"MADURAI\",625011:\"MADURAI\",625702:\"MADURAI\",625102:\"MADURAI\",625101:\"MADURAI\",625234:\"MADURAI\",625107:\"MADURAI\",625001:\"MADURAI\",625007:\"MADURAI\",625022:\"MADURAI\",625018:\"MADURAI\",625002:\"MADURAI\",625023:\"MADURAI\",625021:\"MADURAI\",625006:\"MADURAI\",625402:\"MADURAI\",625004:\"MADURAI\",625110:\"MADURAI\",625214:\"MADURAI\",625015:\"MADURAI\",623601:\"RAMANATHAPURAM\",623502:\"RAMANATHAPURAM\",623521:\"RAMANATHAPURAM\",623705:\"RAMANATHAPURAM\",623512:\"RAMANATHAPURAM\",623712:\"RAMANATHAPURAM\",623701:\"RAMANATHAPURAM\",623401:\"RAMANATHAPURAM\",623308:\"RAMANATHAPURAM\",623407:\"RAMANATHAPURAM\",623703:\"RAMANATHAPURAM\",623527:\"RAMANATHAPURAM\",623529:\"RAMANATHAPURAM\",623525:\"RAMANATHAPURAM\",623538:\"RAMANATHAPURAM\",623513:\"RAMANATHAPURAM\",623707:\"RAMANATHAPURAM\",623402:\"RAMANATHAPURAM\",623704:\"RAMANATHAPURAM\",623514:\"RAMANATHAPURAM\",623533:\"RAMANATHAPURAM\",623605:\"RAMANATHAPURAM\",623566:\"RAMANATHAPURAM\",623515:\"RAMANATHAPURAM\",623115:\"RAMANATHAPURAM\",623516:\"RAMANATHAPURAM\",623711:\"RAMANATHAPURAM\",623523:\"RAMANATHAPURAM\",623536:\"RAMANATHAPURAM\",623608:\"RAMANATHAPURAM\",623603:\"RAMANATHAPURAM\",623517:\"RAMANATHAPURAM\",623135:\"RAMANATHAPURAM\",623403:\"RAMANATHAPURAM\",623504:\"RAMANATHAPURAM\",623530:\"RAMANATHAPURAM\",623528:\"RAMANATHAPURAM\",623706:\"RAMANATHAPURAM\",623531:\"RAMANATHAPURAM\",623604:\"RAMANATHAPURAM\",623409:\"RAMANATHAPURAM\",623120:\"RAMANATHAPURAM\",623532:\"RAMANATHAPURAM\",623519:\"RAMANATHAPURAM\",623518:\"RAMANATHAPURAM\",623534:\"RAMANATHAPURAM\",623520:\"RAMANATHAPURAM\",623406:\"RAMANATHAPURAM\",623404:\"RAMANATHAPURAM\",623537:\"RAMANATHAPURAM\",623315:\"RAMANATHAPURAM\",623526:\"RAMANATHAPURAM\",623522:\"RAMANATHAPURAM\",623503:\"RAMANATHAPURAM\",623708:\"RAMANATHAPURAM\",623524:\"RAMANATHAPURAM\",623501:\"RAMANATHAPURAM\",623806:\"RAMANATHAPURAM\",630321:\"SIVAGANGA\",630713:\"SIVAGANGA\",630553:\"SIVAGANGA\",630556:\"SIVAGANGA\",630211:\"SIVAGANGA\",630611:\"SIVAGANGA\",630612:\"SIVAGANGA\",630551:\"SIVAGANGA\",630566:\"SIVAGANGA\",630702:\"SIVAGANGA\",630305:\"SIVAGANGA\",630562:\"SIVAGANGA\",630210:\"SIVAGANGA\",630561:\"SIVAGANGA\",630609:\"SIVAGANGA\",630313:\"SIVAGANGA\",630602:\"SIVAGANGA\",630709:\"SIVAGANGA\",630710:\"SIVAGANGA\",630555:\"SIVAGANGA\",630557:\"SIVAGANGA\",630559:\"SIVAGANGA\",630203:\"SIVAGANGA\",630204:\"SIVAGANGA\",630606:\"SIVAGANGA\",630610:\"SIVAGANGA\",630408:\"SIVAGANGA\",630552:\"SIVAGANGA\",630411:\"SIVAGANGA\",630554:\"SIVAGANGA\",630558:\"SIVAGANGA\",625602:\"THENI\",625605:\"THENI\",625523:\"THENI\",625527:\"THENI\",625531:\"THENI\",625512:\"THENI\",625582:\"THENI\",625526:\"THENI\",625518:\"THENI\",625515:\"THENI\",625532:\"THENI\",625517:\"THENI\",625705:\"THENI\",625537:\"THENI\",625528:\"THENI\",625536:\"THENI\",625513:\"THENI\",625556:\"THENI\",625516:\"THENI\",625520:\"THENI\",625535:\"THENI\",625604:\"THENI\",625203:\"THENI\",625534:\"THENI\",625562:\"THENI\",625533:\"THENI\",625519:\"THENI\",625603:\"THENI\",625579:\"THENI\",625529:\"THENI\",625521:\"THENI\",625522:\"THENI\",625530:\"THENI\",625524:\"THENI\",625540:\"THENI\",625601:\"THENI\",625525:\"THENI\",627113:\"TIRUNELVELI\",627117:\"TIRUNELVELI\",627413:\"TIRUNELVELI\",627428:\"TIRUNELVELI\",627421:\"TIRUNELVELI\",627652:\"TIRUNELVELI\",627201:\"TIRUNELVELI\",627354:\"TIRUNELVELI\",627412:\"TIRUNELVELI\",627425:\"TIRUNELVELI\",627401:\"TIRUNELVELI\",627651:\"TIRUNELVELI\",627654:\"TIRUNELVELI\",627423:\"TIRUNELVELI\",627120:\"TIRUNELVELI\",627151:\"TIRUNELVELI\",627426:\"TIRUNELVELI\",627133:\"TIRUNELVELI\",627418:\"TIRUNELVELI\",627358:\"TIRUNELVELI\",627108:\"TIRUNELVELI\",627351:\"TIRUNELVELI\",627414:\"TIRUNELVELI\",627501:\"TIRUNELVELI\",627111:\"TIRUNELVELI\",627355:\"TIRUNELVELI\",627101:\"TIRUNELVELI\",627116:\"TIRUNELVELI\",627502:\"TIRUNELVELI\",627102:\"TIRUNELVELI\",627112:\"TIRUNELVELI\",627110:\"TIRUNELVELI\",627106:\"TIRUNELVELI\",627103:\"TIRUNELVELI\",627008:\"TIRUNELVELI\",627352:\"TIRUNELVELI\",627451:\"TIRUNELVELI\",627424:\"TIRUNELVELI\",627602:\"TIRUNELVELI\",627104:\"TIRUNELVELI\",627010:\"TIRUNELVELI\",627114:\"TIRUNELVELI\",627007:\"TIRUNELVELI\",627011:\"TIRUNELVELI\",627415:\"TIRUNELVELI\",627202:\"TIRUNELVELI\",627109:\"TIRUNELVELI\",627657:\"TIRUNELVELI\",627416:\"TIRUNELVELI\",627127:\"TIRUNELVELI\",627357:\"TIRUNELVELI\",627417:\"TIRUNELVELI\",627152:\"TIRUNELVELI\",627453:\"TIRUNELVELI\",627356:\"TIRUNELVELI\",627105:\"TIRUNELVELI\",627353:\"TIRUNELVELI\",627427:\"TIRUNELVELI\",627107:\"TIRUNELVELI\",627002:\"TIRUNELVELI\",627006:\"TIRUNELVELI\",627420:\"TIRUNELVELI\",627012:\"TIRUNELVELI\",627005:\"TIRUNELVELI\",627452:\"TIRUNELVELI\",627601:\"TIRUCHIRAPPALLI\",627115:\"TIRUNELVELI\",627604:\"TIRUNELVELI\",627359:\"TIRUNELVELI\",627422:\"TIRUNELVELI\",627118:\"TIRUNELVELI\",627001:\"TIRUNELVELI\",627009:\"TIRUNELVELI\",627004:\"TIRUNELVELI\",627603:\"TIRUNELVELI\",627003:\"TIRUNELVELI\",627119:\"TIRUNELVELI\",628217:\"TUTICORIN\",628152:\"TUTICORIN\",628401:\"TUTICORIN\",628303:\"TUTICORIN\",628703:\"TUTICORIN\",628002:\"TUTICORIN\",628704:\"TUTICORIN\",628206:\"TUTICORIN\",628619:\"TUTICORIN\",628612:\"TUTICORIN\",628215:\"TUTICORIN\",628701:\"TUTICORIN\",628201:\"TUTICORIN\",628210:\"TUTICORIN\",628809:\"TUTICORIN\",628702:\"TUTICORIN\",628851:\"TUTICORIN\",628621:\"TUTICORIN\",628802:\"TUTICORIN\",628202:\"TUTICORIN\",628613:\"TUTICORIN\",628005:\"TUTICORIN\",628151:\"TUTICORIN\",628614:\"TUTICORIN\",628622:\"TUTICORIN\",628008:\"TUTICORIN\",628617:\"TUTICORIN\",628104:\"TUTICORIN\",628001:\"TUTICORIN\",628301:\"TUTICORIN\",628105:\"TUTICORIN\",628801:\"TUTICORIN\",628007:\"TUTICORIN\",628656:\"TUTICORIN\",628211:\"TUTICORIN\",628251:\"TUTICORIN\",628402:\"TUTICORIN\",628218:\"TUTICORIN\",628203:\"TUTICORIN\",628252:\"TUTICORIN\",628615:\"TUTICORIN\",628618:\"TUTICORIN\",628204:\"TUTICORIN\",628205:\"TUTICORIN\",628304:\"TUTICORIN\",628302:\"TUTICORIN\",628653:\"TUTICORIN\",628103:\"TUTICORIN\",628101:\"TUTICORIN\",628623:\"TUTICORIN\",628207:\"TUTICORIN\",628213:\"TUTICORIN\",628208:\"TUTICORIN\",628209:\"TUTICORIN\",628102:\"TUTICORIN\",628616:\"TUTICORIN\",628751:\"TUTICORIN\",628003:\"TUTICORIN\",628212:\"TUTICORIN\",628620:\"TUTICORIN\",628752:\"TUTICORIN\",628219:\"TUTICORIN\",628229:\"TUTICORIN\",628753:\"TUTICORIN\",628601:\"TUTICORIN\",628006:\"TUTICORIN\",628004:\"TUTICORIN\",628216:\"TUTICORIN\",626204:\"VIRUDHUNAGAR\",626141:\"VIRUDHUNAGAR\",626137:\"VIRUDHUNAGAR\",626129:\"VIRUDHUNAGAR\",626607:\"VIRUDHUNAGAR\",626109:\"VIRUDHUNAGAR\",626130:\"VIRUDHUNAGAR\",626127:\"VIRUDHUNAGAR\",626106:\"VIRUDHUNAGAR\",626112:\"VIRUDHUNAGAR\",626005:\"VIRUDHUNAGAR\",626124:\"VIRUDHUNAGAR\",626189:\"VIRUDHUNAGAR\",626203:\"VIRUDHUNAGAR\",626101:\"VIRUDHUNAGAR\",626135:\"VIRUDHUNAGAR\",626161:\"VIRUDHUNAGAR\",626115:\"VIRUDHUNAGAR\",626138:\"VIRUDHUNAGAR\",626142:\"VIRUDHUNAGAR\",626102:\"VIRUDHUNAGAR\",626002:\"VIRUDHUNAGAR\",626134:\"VIRUDHUNAGAR\",626202:\"VIRUDHUNAGAR\",626108:\"VIRUDHUNAGAR\",626121:\"VIRUDHUNAGAR\",626139:\"VIRUDHUNAGAR\",626188:\"VIRUDHUNAGAR\",626612:\"VIRUDHUNAGAR\",626131:\"VIRUDHUNAGAR\",626201:\"VIRUDHUNAGAR\",626103:\"VIRUDHUNAGAR\",626136:\"VIRUDHUNAGAR\",626140:\"VIRUDHUNAGAR\",626149:\"VIRUDHUNAGAR\",626125:\"VIRUDHUNAGAR\",626003:\"VIRUDHUNAGAR\",626105:\"VIRUDHUNAGAR\",626104:\"VIRUDHUNAGAR\",626001:\"VIRUDHUNAGAR\",626205:\"VIRUDHUNAGAR\",626107:\"VIRUDHUNAGAR\",626114:\"VIRUDHUNAGAR\",626133:\"VIRUDHUNAGAR\",626113:\"VIRUDHUNAGAR\",626004:\"VIRUDHUNAGAR\",626126:\"VIRUDHUNAGAR\",626118:\"VIRUDHUNAGAR\",626111:\"VIRUDHUNAGAR\",626110:\"VIRUDHUNAGAR\",626119:\"VIRUDHUNAGAR\",626117:\"VIRUDHUNAGAR\",626128:\"VIRUDHUNAGAR\",626116:\"VIRUDHUNAGAR\",626132:\"VIRUDHUNAGAR\",626122:\"VIRUDHUNAGAR\",626123:\"VIRUDHUNAGAR\",641110:\"COIMBATORE\",641101:\"COIMBATORE\",641112:\"COIMBATORE\",641108:\"COIMBATORE\",641032:\"COIMBATORE\",641046:\"COIMBATORE\",641019:\"COIMBATORE\",641105:\"COIMBATORE\",641018:\"COIMBATORE\",641201:\"COIMBATORE\",641049:\"COIMBATORE\",641014:\"COIMBATORE\",641001:\"COIMBATORE\",641021:\"COIMBATORE\",641008:\"COIMBATORE\",641109:\"COIMBATORE\",641016:\"COIMBATORE\",641025:\"COIMBATORE\",641006:\"COIMBATORE\",641004:\"COIMBATORE\",641012:\"COIMBATORE\",641107:\"COIMBATORE\",641029:\"COIMBATORE\",641013:\"COIMBATORE\",641047:\"COIMBATORE\",641022:\"COIMBATORE\",641114:\"COIMBATORE\",641010:\"COIMBATORE\",641048:\"COIMBATORE\",641030:\"COIMBATORE\",641035:\"COIMBATORE\",641026:\"COIMBATORE\",641023:\"COIMBATORE\",641042:\"COIMBATORE\",641045:\"COIMBATORE\",641038:\"COIMBATORE\",641003:\"COIMBATORE\",641050:\"COIMBATORE\",641062:\"COIMBATORE\",641020:\"COIMBATORE\",641036:\"COIMBATORE\",641031:\"COIMBATORE\",641033:\"COIMBATORE\",641028:\"COIMBATORE\",641017:\"COIMBATORE\",641037:\"COIMBATORE\",641041:\"COIMBATORE\",641009:\"COIMBATORE\",641027:\"COIMBATORE\",641002:\"COIMBATORE\",641043:\"COIMBATORE\",641011:\"COIMBATORE\",641007:\"COIMBATORE\",641044:\"COIMBATORE\",641005:\"COIMBATORE\",641024:\"COIMBATORE\",641039:\"COIMBATORE\",641034:\"COIMBATORE\",641015:\"COIMBATORE\",641111:\"COIMBATORE\",636704:\"DHARMAPURI\",636807:\"DHARMAPURI\",636905:\"DHARMAPURI\",635205:\"DHARMAPURI\",636903:\"DHARMAPURI\",636803:\"DHARMAPURI\",636810:\"DHARMAPURI\",636904:\"DHARMAPURI\",636806:\"DHARMAPURI\",636906:\"DHARMAPURI\",636813:\"DHARMAPURI\",636811:\"DHARMAPURI\",635201:\"KRISHNAGIRI\",636805:\"DHARMAPURI\",635301:\"DHARMAPURI\",636808:\"DHARMAPURI\",636804:\"DHARMAPURI\",635302:\"DHARMAPURI\",636809:\"DHARMAPURI\",635202:\"DHARMAPURI\",635305:\"DHARMAPURI\",636705:\"DHARMAPURI\",636701:\"DHARMAPURI\",636902:\"DHARMAPURI\",635303:\"DHARMAPURI\",636352:\"DHARMAPURI\",636812:\"DHARMAPURI\",638454:\"ERODE\",638501:\"ERODE\",638455:\"ERODE\",638457:\"ERODE\",638453:\"ERODE\",638109:\"ERODE\",638311:\"ERODE\",638752:\"TIRUPPUR\",638462:\"ERODE\",638151:\"ERODE\",638315:\"ERODE\",638101:\"ERODE\",638506:\"ERODE\",638502:\"ERODE\",638103:\"TIRUPPUR\",638115:\"ERODE\",638503:\"ERODE\",638051:\"ERODE\",638301:\"ERODE\",638007:\"NAMAKKAL\",638504:\"ERODE\",638004:\"ERODE\",638102:\"ERODE\",638751:\"TIRUPPUR\",638312:\"ERODE\",638009:\"ERODE\",638458:\"ERODE\",638316:\"ERODE\",638104:\"ERODE\",638505:\"ERODE\",638011:\"ERODE\",638001:\"ERODE\",638002:\"ERODE\",638153:\"ERODE\",638110:\"ERODE\",638112:\"ERODE\",638452:\"ERODE\",638476:\"ERODE\",638056:\"ERODE\",638052:\"ERODE\",638107:\"ERODE\",638314:\"ERODE\",638116:\"ERODE\",638003:\"ERODE\",638154:\"ERODE\",638456:\"ERODE\",638152:\"ERODE\",638313:\"ERODE\",638055:\"ERODE\",638057:\"ERODE\",638006:\"NAMAKKAL\",638005:\"ERODE\",638053:\"ERODE\",638054:\"ERODE\",638010:\"NAMAKKAL\",638012:\"ERODE\",638060:\"ERODE\",635105:\"KRISHNAGIRI\",635108:\"KRISHNAGIRI\",635110:\"KRISHNAGIRI\",635118:\"KRISHNAGIRI\",635119:\"KRISHNAGIRI\",635204:\"KRISHNAGIRI\",635122:\"KRISHNAGIRI\",635002:\"KRISHNAGIRI\",635203:\"KRISHNAGIRI\",635104:\"KRISHNAGIRI\",635206:\"KRISHNAGIRI\",635304:\"KRISHNAGIRI\",635102:\"KRISHNAGIRI\",635306:\"KRISHNAGIRI\",635107:\"KRISHNAGIRI\",635307:\"KRISHNAGIRI\",635109:\"KRISHNAGIRI\",635103:\"KRISHNAGIRI\",635113:\"KRISHNAGIRI\",635121:\"KRISHNAGIRI\",635116:\"KRISHNAGIRI\",635123:\"KRISHNAGIRI\",635106:\"KRISHNAGIRI\",635115:\"KRISHNAGIRI\",635126:\"KRISHNAGIRI\",635124:\"KRISHNAGIRI\",635120:\"KRISHNAGIRI\",635111:\"KRISHNAGIRI\",635130:\"KRISHNAGIRI\",635117:\"KRISHNAGIRI\",635114:\"KRISHNAGIRI\",635112:\"KRISHNAGIRI\",635001:\"KRISHNAGIRI\",635101:\"KRISHNAGIRI\",635207:\"KRISHNAGIRI\",637411:\"NAMAKKAL\",637202:\"NAMAKKAL\",637103:\"SALEM\",637212:\"NAMAKKAL\",637301:\"SALEM\",637503:\"NAMAKKAL\",637409:\"NAMAKKAL\",637101:\"SALEM\",638008:\"NAMAKKAL\",637020:\"NAMAKKAL\",637013:\"NAMAKKAL\",637303:\"SALEM\",637304:\"NAMAKKAL\",637214:\"NAMAKKAL\",638182:\"NAMAKKAL\",637017:\"NAMAKKAL\",637015:\"NAMAKKAL\",637210:\"NAMAKKAL\",637019:\"NAMAKKAL\",637402:\"NAMAKKAL\",637405:\"NAMAKKAL\",637105:\"SALEM\",637003:\"NAMAKKAL\",637002:\"NAMAKKAL\",637410:\"NAMAKKAL\",637209:\"NAMAKKAL\",637201:\"NAMAKKAL\",637021:\"NAMAKKAL\",637018:\"NAMAKKAL\",637205:\"NAMAKKAL\",637102:\"SALEM\",637204:\"NAMAKKAL\",637213:\"NAMAKKAL\",637014:\"NAMAKKAL\",637404:\"NAMAKKAL\",638183:\"NAMAKKAL\",637203:\"NAMAKKAL\",637302:\"NAMAKKAL\",637104:\"SALEM\",637207:\"NAMAKKAL\",637208:\"NAMAKKAL\",637107:\"SALEM\",637206:\"NAMAKKAL\",637215:\"NAMAKKAL\",637001:\"NAMAKKAL\",638181:\"NAMAKKAL\",637415:\"Salem\",637211:\"NAMAKKAL\",643102:\"NILGIRIS\",643240:\"NILGIRIS\",643206:\"NILGIRIS\",643216:\"NILGIRIS\",643221:\"NILGIRIS\",643201:\"NILGIRIS\",643202:\"NILGIRIS\",643003:\"NILGIRIS\",643241:\"NILGIRIS\",643212:\"NILGIRIS\",643209:\"NILGIRIS\",643203:\"NILGIRIS\",643224:\"NILGIRIS\",643204:\"NILGIRIS\",643231:\"NILGIRIS\",643214:\"NILGIRIS\",643001:\"NILGIRIS\",643205:\"NILGIRIS\",643220:\"NILGIRIS\",643211:\"NILGIRIS\",643101:\"NILGIRIS\",643270:\"Nilgiris\",643207:\"NILGIRIS\",643007:\"NILGIRIS\",643002:\"NILGIRIS\",643219:\"NILGIRIS\",643217:\"NILGIRIS\",643005:\"NILGIRIS\",643004:\"NILGIRIS\",643006:\"NILGIRIS\",643237:\"NILGIRIS\",643226:\"NILGIRIS\",643103:\"NILGIRIS\",643236:\"NILGIRIS\",643225:\"NILGIRIS\",643213:\"NILGIRIS\",643215:\"NILGIRIS\",643253:\"NILGIRIS\",643239:\"NILGIRIS\",643218:\"NILGIRIS\",643242:\"NILGIRIS\",643223:\"NILGIRIS\",643238:\"NILGIRIS\",643105:\"NILGIRIS\",643233:\"NILGIRIS\",643243:\"NILGIRIS\",642205:\"TIRUPPUR\",642002:\"COIMBATORE\",642111:\"TIRUPPUR\",642004:\"COIMBATORE\",642127:\"COIMBATORE\",642110:\"COIMBATORE\",642101:\"COIMBATORE\",642201:\"TIRUPPUR\",642102:\"COIMBATORE\",642103:\"COIMBATORE\",642104:\"COIMBATORE\",642154:\"TIRUPPUR\",642120:\"COIMBATORE\",642007:\"COIMBATORE\",642109:\"COIMBATORE\",642206:\"TIRUPPUR\",642207:\"TIRUPPUR\",642106:\"COIMBATORE\",642202:\"COIMBATORE\",642132:\"TIRUPPUR\",642005:\"COIMBATORE\",642112:\"TIRUPPUR\",642126:\"COIMBATORE\",642122:\"TIRUPPUR\",642107:\"COIMBATORE\",642108:\"COIMBATORE\",642203:\"TIRUPPUR\",642129:\"COIMBATORE\",642003:\"COIMBATORE\",642130:\"COIMBATORE\",642204:\"TIRUPPUR\",641202:\"COIMBATORE\",642113:\"COIMBATORE\",642114:\"COIMBATORE\",642105:\"COIMBATORE\",642117:\"COIMBATORE\",642125:\"COIMBATORE\",642001:\"COIMBATORE\",642134:\"COIMBATORE\",642123:\"COIMBATORE\",642133:\"COIMBATORE\",642006:\"COIMBATORE\",642128:\"COIMBATORE\",636117:\"SALEM\",636122:\"SALEM\",636204:\"SALEM\",636106:\"SALEM\",636308:\"SALEM\",636104:\"SALEM\",636004:\"SALEM\",636017:\"SALEM\",636141:\"SALEM\",636114:\"SALEM\",636003:\"SALEM\",636105:\"SALEM\",636002:\"SALEM\",636139:\"SALEM\",636108:\"SALEM\",636101:\"SALEM\",636107:\"SALEM\",636119:\"SALEM\",636602:\"SALEM\",636115:\"SALEM\",637501:\"SALEM\",636102:\"SALEM\",636103:\"SALEM\",636111:\"SALEM\",636008:\"SALEM\",636006:\"SALEM\",636109:\"SALEM\",636201:\"SALEM\",636112:\"SALEM\",636015:\"SALEM\",636203:\"SALEM\",636016:\"SALEM\",636007:\"SALEM\",636116:\"SALEM\",636113:\"SALEM\",636014:\"SALEM\",636140:\"SALEM\",636138:\"SALEM\",636121:\"SALEM\",636601:\"SALEM\",636010:\"SALEM\",636110:\"SALEM\",636001:\"SALEM\",636142:\"SALEM\",636118:\"NAMAKKAL\",637403:\"NAMAKKAL\",636501:\"SALEM\",637505:\"NAMAKKAL\",636503:\"SALEM\",636451:\"SALEM\",637401:\"NAMAKKAL\",636404:\"SALEM\",636307:\"SALEM\",636009:\"SALEM\",637406:\"NAMAKKAL\",636502:\"SALEM\",636301:\"NAMAKKAL\",636304:\"SALEM\",636202:\"NAMAKKAL\",636302:\"SALEM\",637412:\"NAMAKKAL\",636351:\"SALEM\",636012:\"SALEM\",636455:\"SALEM\",636303:\"SALEM\",636354:\"SALEM\",636306:\"SALEM\",636309:\"SALEM\",637502:\"SALEM\",636011:\"SALEM\",636453:\"SALEM\",637504:\"SALEM\",637408:\"NAMAKKAL\",636454:\"SALEM\",636305:\"SALEM\",636013:\"SALEM\",636403:\"SALEM\",636452:\"SALEM\",636458:\"SALEM\",637407:\"NAMAKKAL\",636030:\"SALEM\",636406:\"SALEM\",636402:\"SALEM\",636401:\"SALEM\",636457:\"SALEM\",636456:\"SALEM\",636005:\"SALEM\",635651:\"VELLORE\",635602:\"VELLORE\",635804:\"VELLORE\",635653:\"VELLORE\",632604:\"VELLORE\",635701:\"VELLORE\",635814:\"VELLORE\",635801:\"VELLORE\",635802:\"VELLORE\",635806:\"VELLORE\",635702:\"VELLORE\",635652:\"VELLORE\",635811:\"VELLORE\",635810:\"VELLORE\",635601:\"VELLORE\",635703:\"TIRUVANNAMALAI\",635852:\"VELLORE\",635815:\"VELLORE\",635854:\"VELLORE\",632602:\"VELLORE\",635805:\"VELLORE\",632209:\"VELLORE\",635751:\"VELLORE\",635901:\"VELLORE\",635754:\"VELLORE\",635813:\"VELLORE\",635655:\"VELLORE\",632603:\"VELLORE\",635853:\"VELLORE\",632601:\"VELLORE\",635809:\"VELLORE\",635803:\"VELLORE\",635851:\"VELLORE\",635654:\"VELLORE\",635812:\"VELLORE\",632201:\"VELLORE\",635752:\"VELLORE\",635808:\"VELLORE\",635710:\"VELLORE\",632203:\"VELLORE\",635807:\"VELLORE\",641652:\"TIRUPPUR\",641663:\"TIRUPPUR\",638673:\"TIRUPPUR\",638111:\"TIRUPPUR\",641603:\"TIRUPPUR\",641302:\"COIMBATORE\",641665:\"TIRUPPUR\",638701:\"TIRUPPUR\",638105:\"TIRUPPUR\",638661:\"TIRUPPUR\",638657:\"TIRUPPUR\",638401:\"ERODE\",641655:\"TIRUPPUR\",641653:\"COIMBATORE\",638459:\"ERODE\",641687:\"TIRUPPUR\",641664:\"TIRUPPUR\",641402:\"COIMBATORE\",638461:\"ERODE\",641604:\"TIRUPPUR\",641407:\"COIMBATORE\",638402:\"ERODE\",641103:\"COIMBATORE\",641104:\"COIMBATORE\",641654:\"TIRUPPUR\",638660:\"TIRUPPUR\",638702:\"TIRUPPUR\",638451:\"ERODE\",641113:\"COIMBATORE\",641658:\"TIRUPPUR\",641669:\"TIRUPPUR\",638812:\"TIRUPPUR\",641659:\"COIMBATORE\",638106:\"TIRUPPUR\",638656:\"TIRUPPUR\",638672:\"TIRUPPUR\",641305:\"COIMBATORE\",641667:\"TIRUPPUR\",641697:\"TIRUPPUR\",638460:\"ERODE\",641605:\"TIRUPPUR\",641401:\"COIMBATORE\",641668:\"COIMBATORE\",641666:\"TIRUPPUR\",641671:\"TIRUPPUR\",641662:\"TIRUPPUR\",641602:\"TIRUPPUR\",638706:\"TIRUPPUR\",641670:\"TIRUPPUR\",638108:\"TIRUPPUR\",638703:\"TIRUPPUR\",641607:\"TIRUPPUR\",641606:\"TIRUPPUR\",641301:\"COIMBATORE\",641601:\"TIRUPPUR\",500004:\"HYDERABAD\",500045:\"HYDERABAD\",500075:\"RANGAREDDY\",500034:\"HYDERABAD\",500018:\"RANGAREDDY\",500022:\"HYDERABAD\",500104:\"Rangareddy\",500046:\"RANGAREDDY\",500081:\"HYDERABAD\",500033:\"HYDERABAD\",500096:\"HYDERABAD\",500032:\"RANGAREDDY\",500029:\"HYDERABAD\",500001:\"HYDERABAD\",500008:\"HYDERABAD\",500107:\"RANGAREDDY\",500091:\"HYDERABAD\",500028:\"HYDERABAD\",500111:\"Rangareddy\",500082:\"HYDERABAD\",500109:\"HYDERABAD\",500031:\"HYDERABAD\",500006:\"HYDERABAD\",500084:\"RANGAREDDY\",500063:\"HYDERABAD\",500019:\"RANGAREDDY\",500089:\"RANGAREDDY\",500114:\"RANGAREDDY\",500110:\"Hyderabad\",500095:\"HYDERABAD\",500041:\"HYDERABAD\",500038:\"HYDERABAD\",500073:\"HYDERABAD\",500057:\"HYDERABAD\",501510:\"RANGAREDDY\",501506:\"RANGAREDDY\",500030:\"RANGAREDDY\",501509:\"RANGAREDDY\",500112:\"Ranga Reddy\",500013:\"HYDERABAD\",501512:\"RANGAREDDY\",500044:\"HYDERABAD\",501508:\"RANGAREDDY\",500115:\"Ranga Reddy\",500058:\"RANGAREDDY\",500064:\"HYDERABAD\",500005:\"RANGAREDDY\",501505:\"RANGAREDDY\",500027:\"HYDERABAD\",500012:\"HYDERABAD\",500092:\"RANGAREDDY\",500060:\"RANGAREDDY\",501218:\"RANGAREDDY\",501359:\"RANGAREDDY\",500086:\"RANGAREDDY\",500053:\"HYDERABAD\",500065:\"HYDERABAD\",500068:\"RANGAREDDY\",500052:\"RANGAREDDY\",500097:\"RANGAREDDY\",500079:\"RANGAREDDY\",500066:\"HYDERABAD\",500051:\"RANGAREDDY\",500035:\"RANGAREDDY\",500002:\"HYDERABAD\",500048:\"RANGAREDDY\",500076:\"RANGAREDDY\",500077:\"RANGAREDDY\",501511:\"RANGAREDDY\",500074:\"RANGAREDDY\",500036:\"RANGAREDDY\",500098:\"RANGAREDDY\",500039:\"RANGAREDDY\",500108:\"RANGAREDDY\",500102:\"RANGAREDDY\",500069:\"RANGAREDDY\",500024:\"HYDERABAD\",500059:\"HYDERABAD\",500070:\"RANGAREDDY\",500023:\"HYDERABAD\",502278:\"SIDDIPET\",502108:\"SIDDIPET\",502115:\"MEDAK\",502311:\"SIDDIPET\",502280:\"SIDDIPET\",502281:\"SIDDIPET\",502310:\"MEDAK\",502247:\"MEDAK\",502103:\"SIDDIPET\",502109:\"MEDAK\",502267:\"SIDDIPET\",502277:\"MEDAK\",502114:\"SIDDIPET\",502302:\"MEDAK\",502113:\"MEDAK\",502375:\"SIDDIPET\",502117:\"MEDAK\",502334:\"MEDAK\",502279:\"SIDDIPET\",502102:\"SIDDIPET\",502381:\"MEDAK\",502255:\"MEDAK\",502276:\"SIDDIPET\",502301:\"SIDDIPET\",502107:\"SIDDIPET\",502130:\"MEDAK\",502248:\"MEDAK\",502335:\"MEDAK\",502336:\"MEDAK\",502312:\"SIDDIPET\",502331:\"MEDAK\",502372:\"SIDDIPET\",502125:\"MEDAK\",502303:\"MEDAK\",502110:\"MEDAK\",502101:\"MEDAK\",502032:\"SANGAREDDY\",502286:\"SANGAREDDY\",502325:\"SANGAREDDY\",502314:\"SANGAREDDY\",502270:\"SANGAREDDY\",502318:\"SANGAREDDY\",502269:\"SANGAREDDY\",502273:\"SANGAREDDY\",502306:\"SANGAREDDY\",502345:\"SANGAREDDY\",502313:\"SANGAREDDY\",502287:\"SANGAREDDY\",502291:\"SANGAREDDY\",502371:\"SANGAREDDY\",502293:\"SANGAREDDY\",502305:\"SANGAREDDY\",502210:\"SANGAREDDY\",502296:\"SANGAREDDY\",502290:\"SANGAREDDY\",502228:\"SANGAREDDY\",502295:\"SANGAREDDY\",502256:\"SANGAREDDY\",502221:\"SANGAREDDY\",502271:\"SANGAREDDY\",502285:\"SANGAREDDY\",502319:\"SANGAREDDY\",502321:\"SANGAREDDY\",502307:\"SANGAREDDY\",502251:\"SANGAREDDY\",502300:\"SANGAREDDY\",502294:\"SANGAREDDY\",502329:\"SANGAREDDY\",502246:\"SANGAREDDY\",502257:\"SANGAREDDY\",502324:\"SANGAREDDY\",502249:\"SANGAREDDY\",502316:\"SANGAREDDY\",509320:\"SANGAREDDY\",502205:\"SANGAREDDY\",502001:\"SANGAREDDY\",502220:\"SANGAREDDY\",501142:\"RANGAREDDY\",501144:\"RANGAREDDY\",501502:\"RANGAREDDY\",500043:\"HYDERABAD\",500101:\"HYDERABAD\",501102:\"Vikarabad\",501141:\"RANGAREDDY\",501503:\"RANGAREDDY\",500010:\"HYDERABAD\",501504:\"RANGAREDDY\",501202:\"RANGAREDDY\",500047:\"HYDERABAD\",501301:\"HYDERABAD\",500015:\"HYDERABAD\",500040:\"HYDERABAD\",501111:\"RANGAREDDY\",500020:\"HYDERABAD\",501401:\"RANGAREDDY\",500090:\"RANGAREDDY\",500037:\"RANGAREDDY\",501106:\"RANGAREDDY\",501143:\"RANGAREDDY\",500016:\"HYDERABAD\",501203:\"RANGAREDDY\",500078:\"HYDERABAD\",500011:\"HYDERABAD\",501158:\"RANGAREDDY\",500050:\"HYDERABAD\",501501:\"RANGAREDDY\",501121:\"RANGAREDDY\",500100:\"RANGAREDDY\",500062:\"HYDERABAD\",500055:\"HYDERABAD\",500080:\"HYDERABAD\",500014:\"HYDERABAD\",500042:\"HYDERABAD\",500025:\"HYDERABAD\",500054:\"HYDERABAD\",500007:\"HYDERABAD\",500103:\"Hyderabad\",500087:\"HYDERABAD\",500085:\"HYDERABAD\",500088:\"HYDERABAD\",500003:\"HYDERABAD\",500072:\"HYDERABAD\",500017:\"HYDERABAD\",500009:\"HYDERABAD\",500049:\"Trimulgherry\",500083:\"RANGAREDDY\",500026:\"HYDERABAD\",500056:\"HYDERABAD\",500094:\"HYDERABAD\",500061:\"HYDERABAD\",500067:\"RANGAREDDY\",501101:\"HYDERABAD\",500093:\"HYDERABAD\",504273:\"MANCHERIAL\",504293:\"MANCHERIAL\",504307:\"ADILABAD\",504001:\"ADILABAD\",504251:\"MANCHERIAL\",504309:\"ADILABAD\",504201:\"MANCHERIAL\",504110:\"NIRMAL\",504202:\"NIRMAL\",504296:\"MANCHERIAL\",504231:\"MANCHERIAL\",504109:\"NIRMAL\",504299:\"MANCHERIAL\",504002:\"ADILABAD\",504204:\"MANCHERIAL\",504312:\"ADILABAD\",504313:\"ADILABAD\",504101:\"NIRMAL\",504205:\"MANCHERIAL\",504203:\"NIRMAL\",504295:\"MANCHERIAL\",504106:\"NIRMAL\",504306:\"NIRMAL\",504304:\"ADILABAD\",504103:\"NIRMAL\",504308:\"ADILABAD\",504311:\"ADILABAD\",504272:\"MANCHERIAL\",504323:\"ADILABAD\",504310:\"NIRMAL\",504294:\"MANCHERIAL\",504302:\"MANCHERIAL\",504206:\"MANCHERIAL\",504102:\"NIRMAL\",504218:\"MANCHERIAL\",504207:\"MANCHERIAL\",504209:\"MANCHERIAL\",504104:\"NIRMAL\",504292:\"MANCHERIAL\",504297:\"MANCHERIAL\",504219:\"MANCHERIAL\",504208:\"MANCHERIAL\",504216:\"MANCHERIAL\",504105:\"NIRMAL\",504301:\"MANCHERIAL\",504220:\"MANCHERIAL\",504107:\"NIRMAL\",504303:\"MANCHERIAL\",506144:\"Warangal\",506343:\"Parkal\",506145:\"Hanamkonda\",506169:\"Parkal\",506175:\"Jangaon\",506355:\"Jangaon\",506366:\"Warangal\",506172:\"Warangal\",506342:\"Warangal\",506224:\"Jangaon\",506223:\"Jangaon\",506165:\"JAYASHANKAR\",506221:\"Jangaon\",506371:\"Warangal\",506352:\"Warangal\",506367:\"Jangaon\",506303:\"Jangaon\",506244:\"Jangaon\",506344:\"Warangal\",506345:\"Parkal\",506015:\"Hanamkonda\",506347:\"Parkal\",506349:\"Parkal\",506252:\"Warangal\",506301:\"Warangal\",506170:\"Parkal\",506348:\"Parkal\",506356:\"Warangal\",506168:\"Warangal\",506319:\"Parkal\",506391:\"Warangal\",506011:\"Warangal\",506370:\"Hanamkonda\",506302:\"Warangal\",506142:\"Hanamkonda\",506004:\"Warangal\",506143:\"Warangal\",506201:\"Jangaon\",506001:\"Warangal\",506151:\"Warangal\",506167:\"Warangal\",506009:\"Warangal\",506146:\"Jangaon\",506164:\"Warangal\",505445:\"KARIM NAGAR\",505305:\"SIRCILLA\",505532:\"JAGTIAL\",505330:\"JAGTIAL\",505531:\"KARIM NAGAR\",505466:\"SIDDIPET\",505527:\"KARIM NAGAR\",505460:\"JAGTIAL\",505526:\"JAGTIAL\",505306:\"JAGTIAL\",505450:\"JAGTIAL\",505402:\"SIRCILLA\",505524:\"KARIM NAGAR\",505469:\"KARIM NAGAR\",505455:\"JAGTIAL\",505302:\"SIRCILLA\",505002:\"KARIM NAGAR\",505452:\"JAGTIAL\",505415:\"KARIM NAGAR\",505529:\"JAGTIAL\",505401:\"KARIM NAGAR\",505404:\"SIRCILLA\",505405:\"SIRCILLA\",505403:\"SIRCILLA\",505303:\"SIRCILLA\",505473:\"SIDDIPET\",505454:\"JAGTIAL\",505528:\"SIDDIPET\",505453:\"JAGTIAL\",505462:\"JAGTIAL\",505301:\"SIRCILLA\",505501:\"JAGTIAL\",505467:\"SIDDIPET\",505331:\"JAGTIAL\",505001:\"KARIM NAGAR\",505304:\"SIRCILLA\",505451:\"KARIM NAGAR\",505425:\"JAGTIAL\",505530:\"KARIM NAGAR\",505481:\"KARIM NAGAR\",505327:\"JAGTIAL\",505307:\"SIRCILLA\",505326:\"JAGTIAL\",505502:\"SIRCILLA\",507316:\"KOTHAGUDEM\",507160:\"KHAMMAM\",507301:\"KHAMMAM\",507133:\"KOTHAGUDEM\",507204:\"KHAMMAM\",507124:\"KOTHAGUDEM\",507203:\"KHAMMAM\",507318:\"KHAMMAM\",507116:\"KOTHAGUDEM\",507305:\"KHAMMAM\",507158:\"KHAMMAM\",507166:\"KHAMMAM\",507117:\"KOTHAGUDEM\",507208:\"KHAMMAM\",507137:\"KHAMMAM\",507306:\"KOTHAGUDEM\",507167:\"KHAMMAM\",507169:\"KHAMMAM\",507164:\"KOTHAGUDEM\",507163:\"KHAMMAM\",507168:\"KHAMMAM\",507304:\"KHAMMAM\",507202:\"KHAMMAM\",507303:\"KOTHAGUDEM\",507111:\"KOTHAGUDEM COLLS\",507161:\"KHAMMAM\",507123:\"KHAMMAM\",507211:\"KHAMMAM\",507002:\"KHAMMAM\",507118:\"KOTHAGUDEM\",507182:\"KHAMMAM\",507209:\"KHAMMAM\",507302:\"KOTHAGUDEM\",507120:\"KHAMMAM\",507157:\"KHAMMAM\",507101:\"KOTHAGUDEM COLLS\",507210:\"KHAMMAM\",507114:\"KOTHAGUDEM COLLS\",507001:\"KHAMMAM\",507122:\"KHAMMAM\",507136:\"KOTHAGUDEM\",507183:\"KHAMMAM\",507170:\"KHAMMAM\",507003:\"KHAMMAM\",507165:\"KHAMMAM\",507115:\"KOTHAGUDEM\",507140:\"KOTHAGUDEM\",507201:\"KHAMMAM\",507159:\"KHAMMAM\",507138:\"KOTHAGUDEM COLLS\",507128:\"KOTHAGUDEM\",507125:\"KOTHAGUDEM COLLS\",507103:\"KOTHAGUDEM\",507119:\"KOTHAGUDEM COLLS\",507154:\"KOTHAGUDEM COLLS\",509210:\"MAHABUB NAGAR\",509382:\"MAHABUB NAGAR\",509002:\"MAHABUB NAGAR\",509352:\"MAHABUB NAGAR\",509152:\"GADWAL\",509133:\"GADWAL\",509130:\"WANAPARTHY\",509340:\"MAHABUB NAGAR\",509336:\"VIKARABAD\",509371:\"MAHABUB NAGAR\",509407:\"MAHABUB NAGAR\",509335:\"VIKARABAD\",509208:\"MAHABUB NAGAR\",509131:\"WANAPARTHY\",509338:\"VIKARABAD\",509409:\"MAHABUB NAGAR\",509204:\"MAHABUB NAGAR\",509339:\"MAHABUB NAGAR\",509411:\"MAHABUB NAGAR\",509353:\"MAHABUB NAGAR\",509205:\"MAHABUB NAGAR\",509127:\"GADWAL\",509128:\"GADWAL\",509129:\"GADWAL\",509334:\"MAHABUB NAGAR\",509126:\"GADWAL\",509135:\"GADWAL\",509311:\"MAHABUB NAGAR\",509350:\"VIKARABAD\",509351:\"MAHABUB NAGAR\",509125:\"GADWAL\",509337:\"MAHABUB NAGAR\",509380:\"WANAPARTHY\",509219:\"Mahabub Nagar\",509001:\"MAHABUB NAGAR\",509153:\"GADWAL\",508277:\"BHONGIR\",508114:\"NALGONDA\",508254:\"NALGONDA\",508101:\"BHONGIR\",508377:\"NALGONDA\",508285:\"BHONGIR\",508117:\"BHONGIR\",508245:\"NALGONDA\",508255:\"NALGONDA\",508002:\"NALGONDA\",508112:\"BHONGIR\",508111:\"BHONGIR\",508243:\"NALGONDA\",508105:\"BHONGIR\",508126:\"BHONGIR\",508113:\"BHONGIR\",508116:\"BHONGIR\",508244:\"NALGONDA\",508258:\"NALGONDA\",508001:\"NALGONDA\",508202:\"NALGONDA\",508253:\"BHONGIR\",508256:\"NALGONDA\",508286:\"BHONGIR\",508004:\"NALGONDA\",508257:\"NALGONDA\",508252:\"BHONGIR\",508250:\"NALGONDA\",508248:\"NALGONDA\",508115:\"BHONGIR\",508373:\"NALGONDA\",508284:\"BHONGIR\",508266:\"NALGONDA\",503245:\"NIZAMABAD\",503302:\"KAMAREDDY\",503122:\"KAMAREDDY\",503112:\"KAMAREDDY\",503246:\"NIZAMABAD\",503311:\"NIZAMABAD\",503223:\"NIZAMABAD\",503123:\"KAMAREDDY\",503180:\"NIZAMABAD\",503003:\"NIZAMABAD\",503186:\"NIZAMABAD\",503213:\"NIZAMABAD\",503301:\"KAMAREDDY\",503144:\"KAMAREDDY\",503310:\"KAMAREDDY\",503164:\"NIZAMABAD\",503102:\"KAMAREDDY\",503174:\"NIZAMABAD\",503110:\"KAMAREDDY\",503224:\"NIZAMABAD\",503307:\"NIZAMABAD\",503212:\"NIZAMABAD\",503217:\"NIZAMABAD\",503187:\"KAMAREDDY\",503101:\"KAMAREDDY\",503305:\"KAMAREDDY\",503125:\"KAMAREDDY\",503306:\"KAMAREDDY\",503185:\"NIZAMABAD\",503218:\"NIZAMABAD\",503175:\"NIZAMABAD\",503165:\"NIZAMABAD\",503206:\"NIZAMABAD\",503108:\"KAMAREDDY\",503308:\"NIZAMABAD\",503120:\"KAMAREDDY\",503207:\"NIZAMABAD\",503309:\"KAMAREDDY\",503219:\"NIZAMABAD\",503202:\"NIZAMABAD\",503001:\"NIZAMABAD\",503114:\"KAMAREDDY\",503002:\"NIZAMABAD\",503201:\"NIZAMABAD\",503111:\"KAMAREDDY\",503124:\"NIZAMABAD\",503322:\"NIZAMABAD\",505208:\"PEDDAPALLI\",505212:\"PEDDAPALLI\",505184:\"PEDDAPALLI\",505472:\"KARIM NAGAR\",505480:\"KARIM NAGAR\",505102:\"WARANGAL\",505474:\"KARIM NAGAR\",505504:\"KARIM NAGAR\",505470:\"KARIM NAGAR\",505215:\"PEDDAPALLI\",505514:\"PEDDAPALLI\",505174:\"PEDDAPALLI\",505101:\"WARANGAL\",505129:\"KARIM NAGAR\",505497:\"WARANGAL\",505475:\"KARIM NAGAR\",505416:\"PEDDAPALLI\",505186:\"PEDDAPALLI\",505498:\"KARIM NAGAR\",505505:\"KARIM NAGAR\",505122:\"KARIM NAGAR\",505476:\"WARANGAL\",505471:\"WARANGAL\",505490:\"KARIM NAGAR\",505188:\"PEDDAPALLI\",505210:\"PEDDAPALLI\",505153:\"PEDDAPALLI\",505209:\"PEDDAPALLI\",505152:\"PEDDAPALLI\",505185:\"PEDDAPALLI\",505211:\"PEDDAPALLI\",505468:\"KARIM NAGAR\",505162:\"PEDDAPALLI\",505172:\"PEDDAPALLI\",505214:\"PEDDAPALLI\",508208:\"NALGONDA\",508210:\"NALGONDA\",508374:\"NALGONDA\",508221:\"SURYAPET\",508205:\"NALGONDA\",508233:\"SURYAPET\",508204:\"SURYAPET\",508206:\"SURYAPET\",508214:\"SURYAPET\",508280:\"SURYAPET\",508278:\"NALGONDA\",508212:\"SURYAPET\",508224:\"SURYAPET\",508376:\"NALGONDA\",508223:\"SURYAPET\",508211:\"NALGONDA\",508213:\"SURYAPET\",508218:\"SURYAPET\",508355:\"NALGONDA\",508247:\"NALGONDA\",508246:\"SURYAPET\",508279:\"SURYAPET\",508238:\"SURYAPET\",508201:\"SURYAPET\",508234:\"SURYAPET\",508217:\"NALGONDA\",508207:\"NALGONDA\",509375:\"NAGAR KURNOOL\",509207:\"RANGAREDDY\",509209:\"NAGAR KURNOOL\",509360:\"NAGAR KURNOOL\",509110:\"WANAPARTHY\",509321:\"RANGAREDDY\",509412:\"NAGAR KURNOOL\",509408:\"RANGAREDDY\",509381:\"NAGAR KURNOOL\",509401:\"NAGAR KURNOOL\",509325:\"RANGAREDDY\",509104:\"WANAPARTHY\",509201:\"NAGAR KURNOOL\",509202:\"RANGAREDDY\",509357:\"RANGAREDDY\",509406:\"NAGAR KURNOOL\",509327:\"RANGAREDDY\",509302:\"NAGAR KURNOOL\",509105:\"NAGAR KURNOOL\",509215:\"NAGAR KURNOOL\",509203:\"NAGAR KURNOOL\",509206:\"WANAPARTHY\",509120:\"WANAPARTHY\",509216:\"RANGAREDDY\",509410:\"RANGAREDDY\",509349:\"NAGAR KURNOOL\",509358:\"RANGAREDDY\",509385:\"STN. JADCHERLA\",509106:\"WANAPARTHY\",509235:\"NAGAR KURNOOL\",509217:\"RANGAREDDY\",509228:\"RANGAREDDY\",509376:\"NAGAR KURNOOL\",509102:\"NAGAR KURNOOL\",509326:\"NAGAR KURNOOL\",509301:\"MAHABUB NAGAR\",509103:\"WANAPARTHY\",506310:\"Warangal\",506315:\"Warangal\",506324:\"Warangal\",506007:\"Warangal\",506102:\"MAHABUB NAGAR\",506112:\"Warangal\",506122:\"Warangal\",506381:\"Warangal\",506163:\"Warangal\",506365:\"Warangal\",506369:\"Warangal\",506103:\"MAHABUB NAGAR\",506006:\"Warangal\",506005:\"Warangal\",506132:\"Warangal\",506317:\"Warangal\",506134:\"Warangal\",506105:\"Warangal\",506313:\"Warangal\",506002:\"Warangal\",506135:\"Warangal\",506318:\"Warangal\",506104:\"Warangal\",506332:\"Warangal\",506222:\"Warangal\",506330:\"Warangal\",506316:\"Warangal\",506333:\"Warangal Rural\",506329:\"Warangal\",506008:\"Warangal\",506331:\"Warangal\",506368:\"Mahabuababad\",506314:\"Warangal\",506013:\"Warangal\",506101:\"Warangal\",506166:\"Warangal\",282001:\"AGRA\",283101:\"AGRA\",282003:\"AGRA\",282004:\"AGRA\",283202:\"AGRA\",283201:\"AGRA\",283102:\"AGRA\",283110:\"AGRA\",283111:\"AGRA\",282007:\"AGRA\",283105:\"AGRA\",283124:\"AGRA\",283104:\"AGRA\",283126:\"AGRA\",283115:\"AGRA\",282009:\"AGRA\",282006:\"AGRA\",283125:\"AGRA\",283123:\"AGRA\",283119:\"AGRA\",283122:\"AGRA\",283113:\"AGRA\",283121:\"AGRA\",282010:\"AGRA\",283112:\"AGRA\",282002:\"AGRA\",283114:\"AGRA\",282005:\"AGRA\",282008:\"AGRA\",202133:\"ALIGARH\",202138:\"ALIGARH\",202002:\"ALIGARH\",204211:\"HATHRAS\",204101:\"HATHRAS\",202135:\"ALIGARH\",204102:\"HATHRAS\",202121:\"Aligarh\",202140:\"ALIGARH\",202129:\"ALIGARH\",202001:\"Aligarh\",202122:\"Aligarh\",204215:\"ALIGARH\",202132:\"ALIGARH\",204213:\"HATHRAS\",202282:\"ALIGARH\",202280:\"Aligarh\",202131:\"ALIGARH\",202134:\"ALIGARH\",202130:\"ALIGARH\",202137:\"ALIGARH\",202143:\"ALIGARH\",204212:\"ALIGARH\",202128:\"ALIGARH\",202126:\"ALIGARH\",202125:\"ALIGARH\",204214:\"HATHRAS\",202150:\"ALIGARH\",204216:\"ALIGARH\",250611:\"HATHRAS\",202281:\"ALIGARH\",202165:\"ALIGARH\",202145:\"Aligarh\",202124:\"ALIGARH\",202141:\"ALIGARH\",202142:\"ALIGARH\",202170:\"Aligarh\",202139:\"ALIGARH\",202127:\"ALIGARH\",203001:\"HATHRAS\",283203:\"ALIGARH\",202155:\"ALIGARH\",285001:\"ALIGARH\",202123:\"ALIGARH\",202136:\"ALIGARH\",202146:\"ALIGARH\",262907:\"ALIGARH\",246761:\"ALIGARH\",203131:\"BULANDSHAHR\",203411:\"BULANDSHAHR\",203002:\"BULANDSHAHR\",203155:\"BULANDSHAHR\",203398:\"BULANDSHAHR\",203392:\"BULANDSHAHR\",203150:\"BULANDSHAHR\",203405:\"BULANDSHAHR\",203395:\"BULANDSHAHR\",203391:\"BULANDSHAHR\",203390:\"BULANDSHAHR\",203393:\"BULANDSHAHR\",203408:\"BULANDSHAHR\",203132:\"BULANDSHAHR\",203202:\"BULANDSHAHR\",203129:\"BULANDSHAHR\",203205:\"BULANDSHAHR\",203401:\"BULANDSHAHR\",203412:\"BULANDSHAHR\",203409:\"BULANDSHAHR\",203203:\"BULANDSHAHR\",203396:\"BULANDSHAHR\",203402:\"BULANDSHAHR\",203394:\"BULANDSHAHR\",203403:\"BULANDSHAHR\",203397:\"BULANDSHAHR\",203389:\"BULANDSHAHR\",203209:\"BULANDSHAHR\",203141:\"BULANDSHAHR\",203407:\"BULANDSHAHR\",203399:\"BULANDSHAHR\",203201:\"BULANDSHAHR\",203135:\"BULANDSHAHR\",203206:\"BULANDSHAHR\",207241:\"ETAH\",207125:\"KANSHIRAM NAGAR\",207002:\"ETAH\",207247:\"ETAH\",207250:\"ETAH\",207244:\"ETAH\",207121:\"ETAH\",207245:\"KANSHIRAM NAGAR\",207243:\"KANSHIRAM NAGAR\",207246:\"ETAH\",207301:\"ETAH\",207302:\"ETAH\",207403:\"KANSHIRAM NAGAR\",207401:\"KANSHIRAM NAGAR\",207242:\"KANSHIRAM NAGAR\",207123:\"KANSHIRAM NAGAR\",207249:\"ETAH\",207120:\"ETAH\",207003:\"ETAH\",207248:\"ETAH\",207402:\"KANSHIRAM NAGAR\",207124:\"KANSHIRAM NAGAR\",207001:\"ETAH\",207122:\"ETAH\",206253:\"ETAWAH\",206241:\"AURAIYA\",206247:\"AURAIYA\",206002:\"ETAWAH\",206244:\"AURAIYA\",206120:\"ETAWAH\",206249:\"AURAIYA\",206252:\"AURAIYA\",206131:\"ETAWAH\",206121:\"AURAIYA\",206243:\"AURAIYA\",206128:\"AURAIYA\",206001:\"ETAWAH\",206122:\"AURAIYA\",206129:\"AURAIYA\",206125:\"ETAWAH\",206127:\"ETAWAH\",206242:\"ETAWAH\",206126:\"ETAWAH\",206123:\"ETAWAH\",206124:\"ETAWAH\",206245:\"ETAWAH\",206251:\"AURAIYA\",206246:\"AURAIYA\",206003:\"ETAWAH\",206250:\"AURAIYA\",206248:\"AURAIYA\",206130:\"ETAWAH\",206255:\"AURAIYA\",284135:\"JHANSI\",284003:\"JHANSI\",285130:\"JALAUN\",284302:\"JHANSI\",285223:\"JALAUN\",285201:\"JALAUN\",284204:\"JHANSI\",285129:\"JALAUN\",285205:\"JALAUN\",285123:\"JALAUN\",284122:\"LALITPUR\",285203:\"JHANSI\",284205:\"JHANSI\",284419:\"JHANSI\",284306:\"JHANSI\",284303:\"JHANSI\",284406:\"LALITPUR\",284202:\"JHANSI\",285202:\"JALAUN\",285121:\"JALAUN\",284301:\"JHANSI\",284403:\"LALITPUR\",284401:\"JHANSI\",284123:\"LALITPUR\",284126:\"LALITPUR\",284304:\"JHANSI\",285124:\"JALAUN\",285204:\"JALAUN\",284405:\"LALITPUR\",284404:\"LALITPUR\",285122:\"JALAUN\",284136:\"LALITPUR\",284402:\"LALITPUR\",284002:\"JHANSI\",284121:\"JHANSI\",284206:\"JHANSI\",284124:\"LALITPUR\",284201:\"JHANSI\",285206:\"JALAUN\",285125:\"JALAUN\",284127:\"JHANSI\",285128:\"JALAUN\",284120:\"JHANSI\",284128:\"JHANSI\",284001:\"JHANSI\",285126:\"JALAUN\",284501:\"LALITPUR\",284203:\"JHANSI\",284125:\"LALITPUR\",285127:\"JALAUN\",284305:\"JHANSI\",283151:\"FIROZABAD\",205263:\"MAINPURI\",205247:\"MAINPURI\",205262:\"MAINPURI\",205304:\"MAINPURI\",205001:\"MAINPURI\",283136:\"FIROZABAD\",205265:\"MAINPURI\",205264:\"MAINPURI\",283141:\"FIROZABAD\",205268:\"MAINPURI\",205267:\"MAINPURI\",205121:\"FIROZABAD\",283204:\"FIROZABAD\",283142:\"FIROZABAD\",283103:\"FIROZABAD\",205301:\"MAINPURI\",205261:\"MAINPURI\",283135:\"AGRA\",283130:\"FIROZABAD\",283206:\"FIROZABAD\",205303:\"MAINPURI\",283152:\"FIROZABAD\",283205:\"FIROZABAD\",205119:\"MAINPURI\",283145:\"FIROZABAD\",283207:\"FIROZABAD\",281006:\"MATHURA\",281404:\"MATHURA\",281201:\"MATHURA\",281204:\"MATHURA\",281406:\"MATHURA\",281301:\"MATHURA\",281308:\"MATHURA\",281502:\"MATHURA\",281501:\"MATHURA\",281202:\"MATHURA\",281307:\"HATHRAS\",281001:\"MATHURA\",281123:\"MATHURA\",281504:\"MATHURA\",281302:\"HATHRAS\",281005:\"MATHURA\",281403:\"MATHURA\",281405:\"MATHURA\",281306:\"HATHRAS\",281004:\"MATHURA\",281122:\"MATHURA\",281205:\"MATHURA\",281401:\"MATHURA\",281121:\"MATHURA\",281003:\"MATHURA\",281203:\"MATHURA\",281206:\"MATHURA\",281303:\"MATHURA\",281305:\"MATHURA\",281104:\"ETAH\",272153:\"MATHURA\",209402:\"MATHURA\",209863:\"MATHURA\",241001:\"MATHURA\",212303:\"ALLAHABAD\",212217:\"KAUSHAMBI\",212205:\"ALLAHABAD\",211007:\"ALLAHABAD\",211003:\"ALLAHABAD\",212208:\"ALLAHABAD\",212301:\"ALLAHABAD\",229411:\"ALLAHABAD\",212213:\"KAUSHAMBI\",211005:\"ALLAHABAD\",211017:\"ALLAHABAD\",211001:\"ALLAHABAD\",211002:\"ALLAHABAD\",211006:\"ALLAHABAD\",212214:\"KAUSHAMBI\",212202:\"KAUSHAMBI\",229413:\"ALLAHABAD\",212401:\"ALLAHABAD\",221508:\"ALLAHABAD\",211008:\"ALLAHABAD\",211020:\"Prayagraj Allahabad\",212216:\"KAUSHAMBI\",212503:\"ALLAHABAD\",211012:\"ALLAHABAD\",229412:\"ALLAHABAD\",221502:\"ALLAHABAD\",212218:\"KAUSHAMBI\",212306:\"ALLAHABAD\",221507:\"ALLAHABAD\",212404:\"ALLAHABAD\",212203:\"KAUSHAMBI\",212502:\"ALLAHABAD\",212111:\"ALLAHABAD\",212402:\"ALLAHABAD\",212109:\"ALLAHABAD\",212106:\"ALLAHABAD\",212507:\"ALLAHABAD\",212201:\"KAUSHAMBI\",221503:\"ALLAHABAD\",212104:\"ALLAHABAD\",212207:\"KAUSHAMBI\",212107:\"ALLAHABAD\",212307:\"ALLAHABAD\",212405:\"ALLAHABAD\",221505:\"ALLAHABAD\",212302:\"ALLAHABAD\",212108:\"ALLAHABAD\",211011:\"ALLAHABAD\",212206:\"ALLAHABAD\",212305:\"KAUSHAMBI\",211014:\"ALLAHABAD\",211004:\"ALLAHABAD\",211019:\"ALLAHABAD\",212105:\"ALLAHABAD\",211022:\"ALLAHABAD\",212204:\"ALLAHABAD\",211010:\"ALLAHABAD\",274308:\"KUSHINAGAR\",211016:\"ALLAHABAD\",211013:\"ALLAHABAD\",212212:\"ALLAHABAD\",211018:\"ALLAHABAD\",211021:\"ALLAHABAD\",211015:\"ALLAHABAD\",233227:\"GHAZIPUR\",232331:\"GHAZIPUR\",233222:\"GHAZIPUR\",233002:\"GHAZIPUR\",275204:\"GHAZIPUR\",233305:\"GHAZIPUR\",233302:\"GHAZIPUR\",275203:\"GHAZIPUR\",232333:\"GHAZIPUR\",233221:\"GHAZIPUR\",233223:\"GHAZIPUR\",233231:\"GHAZIPUR\",232336:\"GHAZIPUR\",233225:\"GHAZIPUR\",233300:\"GHAZIPUR\",233301:\"GHAZIPUR\",275201:\"GHAZIPUR\",232329:\"GHAZIPUR\",233310:\"GHAZIPUR\",233229:\"GHAZIPUR\",232325:\"GHAZIPUR\",275202:\"GHAZIPUR\",233226:\"GHAZIPUR\",233311:\"GHAZIPUR\",233232:\"GHAZIPUR\",275205:\"GHAZIPUR\",233306:\"GHAZIPUR\",232339:\"GHAZIPUR\",233304:\"GHAZIPUR\",233303:\"GHAZIPUR\",232326:\"GHAZIPUR\",232340:\"GHAZIPUR\",233228:\"GHAZIPUR\",232327:\"VARANASI\",232332:\"GHAZIPUR\",233307:\"GHAZIPUR\",233224:\"GHAZIPUR\",233001:\"GHAZIPUR\",233233:\"GHAZIPUR\",232328:\"GHAZIPUR\",232330:\"GHAZIPUR\",233230:\"GHAZIPUR\",233234:\"GHAZIPUR\",232341:\"GHAZIPUR\",231205:\"SONBHADRA\",231302:\"MIRZAPUR\",231301:\"MIRZAPUR\",231305:\"MIRZAPUR\",231211:\"MIRZAPUR\",231216:\"SONBHADRA\",231307:\"MIRZAPUR\",231210:\"MIRZAPUR\",231212:\"SONBHADRA\",231225:\"SONBHADRA\",231208:\"SONBHADRA\",231223:\"SONBHADRA\",231306:\"MIRZAPUR\",231304:\"MIRZAPUR\",231226:\"SONBHADRA\",231313:\"MIRZAPUR\",231312:\"MIRZAPUR\",231213:\"SONBHADRA\",231221:\"SONBHADRA\",231501:\"MIRZAPUR\",231220:\"SONBHADRA\",231309:\"MIRZAPUR\",231217:\"SONBHADRA\",231303:\"MIRZAPUR\",231219:\"SONBHADRA\",231206:\"SONBHADRA\",231311:\"MIRZAPUR\",231207:\"SONBHADRA\",231215:\"SONBHADRA\",231001:\"MIRZAPUR\",231209:\"SONBHADRA\",231314:\"MIRZAPUR\",231224:\"SONBHADRA\",231222:\"SONBHADRA\",231218:\"SONBHADRA\",230141:\"PRATAPGARH\",230304:\"PRATAPGARH\",230131:\"PRATAPGARH\",229410:\"PRATAPGARH\",230142:\"PRATAPGARH\",230204:\"PRATAPGARH\",230144:\"PRATAPGARH\",230132:\"PRATAPGARH\",229408:\"PRATAPGARH\",230301:\"PRATAPGARH\",230124:\"PRATAPGARH\",230125:\"PRATAPGARH\",230139:\"PRATAPGARH\",230501:\"PRATAPGARH\",230401:\"PRATAPGARH\",230143:\"PRATAPGARH\",230126:\"PRATAPGARH\",230402:\"PRATAPGARH\",230137:\"PRATAPGARH\",230135:\"PRATAPGARH\",230202:\"PRATAPGARH\",230403:\"PRATAPGARH\",230134:\"PRATAPGARH\",230129:\"PRATAPGARH\",230127:\"PRATAPGARH\",230133:\"PRATAPGARH\",230502:\"PRATAPGARH\",230201:\"PRATAPGARH\",230001:\"PRATAPGARH\",230128:\"PRATAPGARH\",230404:\"PRATAPGARH\",230302:\"PRATAPGARH\",230121:\"PRATAPGARH\",230503:\"PRATAPGARH\",230405:\"PRATAPGARH\",230136:\"PRATAPGARH\",230002:\"PRATAPGARH\",230138:\"PRATAPGARH\",230306:\"PRATAPGARH\",230130:\"PRATAPGARH\",228001:\"SULTANPUR\",227801:\"AMETHI\",227813:\"AMETHI\",227405:\"AMETHI\",228121:\"SULTANPUR\",228132:\"SULTANPUR\",227409:\"AMETHI\",227814:\"SULTANPUR\",228171:\"SULTANPUR\",228151:\"SULTANPUR\",228159:\"AMETHI\",227805:\"SULTANPUR\",228161:\"SULTANPUR\",228141:\"SULTANPUR\",227406:\"AMETHI\",228118:\"SULTANPUR\",227304:\"SULTANPUR\",228120:\"SULTANPUR\",227816:\"AMETHI\",228133:\"SULTANPUR\",227808:\"AMETHI\",222302:\"SULTANPUR\",222301:\"SULTANPUR\",228125:\"SULTANPUR\",228172:\"SULTANPUR\",228131:\"SULTANPUR\",228145:\"SULTANPUR\",228155:\"AMETHI\",227812:\"AMETHI\",228119:\"SULTANPUR\",227807:\"AMETHI\",227407:\"SULTANPUR\",228142:\"SULTANPUR\",227806:\"AMETHI\",227408:\"SULTANPUR\",227413:\"AMETHI\",222303:\"SULTANPUR\",227811:\"AMETHI\",227412:\"AMETHI\",227815:\"AMETHI\",227809:\"AMETHI\",227817:\"AMETHI\",227411:\"AMETHI\",262122:\"PILIBHIT\",262406:\"BAREILLY\",243501:\"BAREILLY\",243407:\"BAREILLY\",262201:\"PILIBHIT\",243002:\"BAREILLY\",243004:\"BAREILLY\",243401:\"BAREILLY\",243302:\"BAREILLY\",262121:\"PILIBHIT\",262203:\"PILIBHIT\",243503:\"BAREILLY\",243301:\"BAREILLY\",243202:\"BAREILLY\",262001:\"PILIBHIT\",243201:\"BAREILLY\",243505:\"BAREILLY\",262202:\"PILIBHIT\",243123:\"BAREILLY\",243003:\"BAREILLY\",243402:\"BAREILLY\",243303:\"BAREILLY\",243001:\"BAREILLY\",243506:\"BAREILLY\",243203:\"BAREILLY\",243504:\"BAREILLY\",243126:\"BAREILLY\",243122:\"BAREILLY\",243502:\"BAREILLY\",262124:\"PILIBHIT\",262302:\"PILIBHIT\",243403:\"BAREILLY\",242123:\"Pilibhit\",243006:\"BAREILLY\",262305:\"PILIBHIT\",243005:\"BAREILLY\",246722:\"BIJNOR\",246701:\"BIJNOR\",246734:\"BIJNOR\",246725:\"BIJNOR\",246764:\"BIJNOR\",246733:\"BIJNOR\",246736:\"BIJNOR\",246762:\"BIJNOR\",246747:\"BIJNOR\",246726:\"BIJNOR\",246727:\"BIJNOR\",246729:\"BIJNOR\",246724:\"BIJNOR\",246745:\"BIJNOR\",246721:\"BIJNOR\",246731:\"BIJNOR\",246723:\"BIJNOR\",246749:\"BIJNOR\",246735:\"BIJNOR\",246746:\"BIJNOR\",246763:\"BIJNOR\",246728:\"BIJNOR\",246732:\"BIJNOR\",246737:\"BIJNOR\",243639:\"BUDAUN\",243631:\"BUDAUN\",243638:\"BUDAUN\",243725:\"BUDAUN\",243723:\"BUDAUN\",243633:\"BUDAUN\",243601:\"BUDAUN\",243722:\"BUDAUN\",243632:\"BUDAUN\",243635:\"BUDAUN\",243751:\"BUDAUN\",243726:\"BUDAUN\",243634:\"BUDAUN\",243720:\"BUDAUN\",243630:\"BUDAUN\",243724:\"BUDAUN\",243636:\"BUDAUN\",243641:\"BUDAUN\",243727:\"BUDAUN\",243637:\"BUDAUN\",242021:\"BUDAUN\",241123:\"HARDOI\",241407:\"HARDOI\",241403:\"HARDOI\",241121:\"HARDOI\",241202:\"HARDOI\",241125:\"HARDOI\",241301:\"HARDOI\",241124:\"HARDOI\",241402:\"HARDOI\",241305:\"HARDOI\",241204:\"HARDOI\",241203:\"HARDOI\",241126:\"HARDOI\",241303:\"HARDOI\",241122:\"HARDOI\",241201:\"HARDOI\",241404:\"HARDOI\",241401:\"HARDOI\",241406:\"HARDOI\",241304:\"HARDOI\",241405:\"HARDOI\",241302:\"HARDOI\",241127:\"HARDOI\",262727:\"KHERI\",262724:\"KHERI\",262722:\"KHERI\",262903:\"KHERI\",261506:\"KHERI\",262802:\"KHERI\",262804:\"KHERI\",261501:\"KHERI\",262721:\"KHERI\",262901:\"KHERI\",262723:\"KHERI\",262904:\"KHERI\",262902:\"KHERI\",262728:\"KHERI\",261505:\"KHERI\",262726:\"KHERI\",261502:\"KHERI\",262701:\"KHERI\",262805:\"KHERI\",262908:\"KHERI\",262906:\"KHERI\",262725:\"KHERI\",262801:\"KHERI\",224122:\"KHERI\",262702:\"KHERI\",262905:\"KHERI\",262803:\"KHERI\",250001:\"MEERUT\",250601:\"BAGPAT\",250406:\"MEERUT\",250609:\"BAGPAT\",245206:\"MEERUT\",250401:\"MEERUT\",250221:\"MEERUT\",250502:\"MEERUT\",250606:\"BAGPAT\",250002:\"MEERUT\",250623:\"BAGPAT\",250104:\"MEERUT\",250622:\"BAGPAT\",250341:\"MEERUT\",250617:\"BAGPAT\",250626:\"BAGPAT\",250620:\"BAGPAT\",250621:\"BAGPAT\",250342:\"MEERUT\",250101:\"BAGPAT\",250345:\"BAGPAT\",250404:\"MEERUT\",250501:\"MEERUT\",250344:\"MEERUT\",250103:\"MEERUT\",250615:\"BAGPAT\",250205:\"MEERUT\",250223:\"MEERUT\",250004:\"MEERUT\",250402:\"MEERUT\",250110:\"MEERUT\",250619:\"BAGPAT\",250625:\"BAGPAT\",250106:\"MEERUT\",250222:\"MEERUT\",250003:\"MEERUT\",250005:\"MEERUT\",244255:\"AMROHA\",244414:\"SAMBHAL\",244901:\"RAMPUR\",244504:\"MORADABAD\",244927:\"RAMPUR\",244231:\"AMROHA\",244921:\"RAMPUR\",244501:\"MORADABAD\",244302:\"SAMBHAL\",244104:\"MORADABAD\",244411:\"MORADABAD\",244401:\"MORADABAD\",244410:\"SAMBHAL\",244303:\"SAMBHAL\",244221:\"AMROHA\",244304:\"SAMBHAL\",244412:\"SAMBHAL\",244236:\"AMROHA\",244251:\"AMROHA\",244301:\"SAMBHAL\",244701:\"RAMPUR\",244225:\"AMROHA\",244601:\"MORADABAD\",244402:\"MORADABAD\",244415:\"MORADABAD\",244922:\"RAMPUR\",244001:\"MORADABAD\",244924:\"RAMPUR\",244223:\"AMROHA\",244235:\"AMROHA\",244242:\"AMROHA\",244923:\"RAMPUR\",244241:\"AMROHA\",244102:\"AMROHA\",244602:\"MORADABAD\",244925:\"RAMPUR\",244222:\"AMROHA\",244413:\"MORADABAD\",244928:\"RAMPUR\",244245:\"AMROHA\",244103:\"MORADABAD\",244926:\"RAMPUR\",244105:\"MORADABAD\",251001:\"MUZAFFARNAGAR\",247771:\"MUZAFFARNAGAR\",251309:\"MUZAFFARNAGAR\",251301:\"MUZAFFARNAGAR\",251306:\"MUZAFFARNAGAR\",251201:\"MUZAFFARNAGAR\",251305:\"MUZAFFARNAGAR\",251202:\"MUZAFFARNAGAR\",247776:\"MUZAFFARNAGAR\",251307:\"MUZAFFARNAGAR\",251327:\"MUZAFFARNAGAR\",251203:\"MUZAFFARNAGAR\",251314:\"MUZAFFARNAGAR\",247772:\"MUZAFFARNAGAR\",251310:\"MUZAFFARNAGAR\",247774:\"MUZAFFARNAGAR\",251308:\"MUZAFFARNAGAR\",251316:\"MUZAFFARNAGAR\",247777:\"MUZAFFARNAGAR\",251319:\"MUZAFFARNAGAR\",251315:\"MUZAFFARNAGAR\",251311:\"MUZAFFARNAGAR\",247778:\"MUZAFFARNAGAR\",251318:\"MUZAFFARNAGAR\",247775:\"MUZAFFARNAGAR\",247773:\"MUZAFFARNAGAR\",251320:\"MUZAFFARNAGAR\",251003:\"MUZAFFARNAGAR\",251002:\"MUZAFFARNAGAR\",247342:\"SAHARANPUR\",247451:\"SAHARANPUR\",247232:\"SAHARANPUR\",247554:\"SAHARANPUR\",247340:\"SAHARANPUR\",247452:\"SAHARANPUR\",247129:\"SAHARANPUR\",247120:\"SAHARANPUR\",247551:\"SAHARANPUR\",247001:\"SAHARANPUR\",247122:\"SAHARANPUR\",247453:\"SAHARANPUR\",247662:\"HARIDWAR\",247341:\"SAHARANPUR\",247231:\"SAHARANPUR\",247121:\"SAHARANPUR\",247669:\"SAHARANPUR\",247002:\"SAHARANPUR\",247343:\"SAHARANPUR\",242001:\"SHAHJAHANPUR\",242401:\"SHAHJAHANPUR\",242305:\"SHAHJAHANPUR\",242220:\"SHAHJAHANPUR\",242221:\"SHAHJAHANPUR\",242223:\"SHAHJAHANPUR\",242407:\"SHAHJAHANPUR\",242127:\"SHAHJAHANPUR\",242303:\"SHAHJAHANPUR\",242226:\"SHAHJAHANPUR\",242042:\"SHAHJAHANPUR\",242406:\"SHAHJAHANPUR\",242301:\"SHAHJAHANPUR\",242306:\"SHAHJAHANPUR\",242307:\"SHAHJAHANPUR\",242405:\"Shahjahanpur\",276205:\"AZAMGARH\",275102:\"MAU\",275304:\"MAU\",223221:\"AZAMGARH\",276301:\"AZAMGARH\",221706:\"MAU\",276126:\"AZAMGARH\",276122:\"AZAMGARH\",276124:\"AZAMGARH\",276125:\"AZAMGARH\",276403:\"MAU\",276142:\"AZAMGARH\",223222:\"AZAMGARH\",223227:\"AZAMGARH\",275301:\"MAU\",276404:\"AZAMGARH\",276138:\"AZAMGARH\",276139:\"AZAMGARH\",221705:\"MAU\",275105:\"MAU\",276406:\"AZAMGARH\",223223:\"AZAMGARH\",276001:\"AZAMGARH\",276305:\"AZAMGARH\",276204:\"AZAMGARH\",276141:\"AZAMGARH\",276128:\"AZAMGARH\",275305:\"MAU\",275103:\"MAU\",276201:\"AZAMGARH\",221602:\"MAU\",276288:\"AZAMGARH\",276206:\"AZAMGARH\",223226:\"AZAMGARH\",276303:\"AZAMGARH\",276143:\"AZAMGARH\",276304:\"AZAMGARH\",275306:\"MAU\",276123:\"AZAMGARH\",276136:\"AZAMGARH\",221603:\"MAU\",276405:\"MAU\",276129:\"MAU\",221601:\"MAU\",276121:\"AZAMGARH\",276127:\"AZAMGARH\",276306:\"MAU\",276203:\"AZAMGARH\",275307:\"MAU\",276302:\"AZAMGARH\",276202:\"AZAMGARH\",223224:\"AZAMGARH\",276135:\"AZAMGARH\",275302:\"MAU\",276208:\"AZAMGARH\",276131:\"AZAMGARH\",275303:\"MAU\",276140:\"AZAMGARH\",276207:\"AZAMGARH\",276137:\"AZAMGARH\",223225:\"AZAMGARH\",276402:\"MAU\",275101:\"MAU\",271831:\"SHRAWASTI\",271870:\"BAHRAICH\",271871:\"BAHRAICH\",271802:\"BAHRAICH\",271851:\"BAHRAICH\",271803:\"SHRAWASTI\",271882:\"BAHRAICH\",271865:\"BAHRAICH\",271904:\"BAHRAICH\",271881:\"BAHRAICH\",271903:\"BAHRAICH\",271840:\"SHRAWASTI\",271902:\"BAHRAICH\",271801:\"BAHRAICH\",271830:\"BAHRAICH\",271855:\"BAHRAICH\",271845:\"SHRAWASTI\",271875:\"BAHRAICH\",271841:\"BAHRAICH\",271825:\"BAHRAICH\",271872:\"BAHRAICH\",271806:\"BAHRAICH\",271901:\"BAHRAICH\",271804:\"SHRAWASTI\",271821:\"BAHRAICH\",271835:\"SHRAWASTI\",271824:\"BAHRAICH\",271805:\"SHRAWASTI\",272152:\"SIDDHARTHNAGAR\",272178:\"BASTI\",272204:\"SIDDHARTHNAGAR\",272163:\"BASTI\",272202:\"SIDDHARTHNAGAR\",272194:\"BASTI\",272155:\"BASTI\",272191:\"SIDDHARTHNAGAR\",272150:\"BASTI\",272127:\"BASTI\",272190:\"BASTI\",272205:\"SIDDHARTHNAGAR\",272173:\"SANT KABIR NAGAR\",272162:\"SANT KABIR NAGAR\",272151:\"BASTI\",272175:\"SANT KABIR NAGAR\",272201:\"SIDDHARTHNAGAR\",272165:\"SANT KABIR NAGAR\",272161:\"BASTI\",272126:\"SANT KABIR NAGAR\",272208:\"SIDDHARTHNAGAR\",272206:\"SIDDHARTHNAGAR\",272002:\"BASTI\",272302:\"BASTI\",272301:\"BASTI\",272131:\"BASTI\",272192:\"SIDDHARTHNAGAR\",272125:\"SANT KABIR NAGAR\",272199:\"SANT KABIR NAGAR\",272154:\"SANT KABIR NAGAR\",272123:\"BASTI\",272177:\"BASTI\",272128:\"BASTI\",272271:\"SANT KABIR NAGAR\",272001:\"BASTI\",272195:\"SIDDHARTHNAGAR\",272189:\"SIDDHARTHNAGAR\",272181:\"BASTI\",272164:\"SANT KABIR NAGAR\",272270:\"SANT KABIR NAGAR\",272182:\"BASTI\",272129:\"BASTI\",272130:\"BASTI\",272176:\"SANT KABIR NAGAR\",272193:\"SIDDHARTHNAGAR\",272124:\"BASTI\",272207:\"SIDDHARTHNAGAR\",272203:\"SIDDHARTHNAGAR\",272148:\"BASTI\",272172:\"SANT KABIR NAGAR\",272171:\"BASTI\",274702:\"DEORIA\",274402:\"KUSHINAGAR\",274149:\"KUSHINAGAR\",274509:\"DEORIA\",274409:\"KUSHINAGAR\",274508:\"DEORIA\",274302:\"KUSHINAGAR\",274405:\"DEORIA\",274305:\"KUSHINAGAR\",274604:\"DEORIA\",274203:\"DEORIA\",274301:\"KUSHINAGAR\",274805:\"DEORIA\",274502:\"DEORIA\",274307:\"KUSHINAGAR\",274806:\"DEORIA\",274505:\"DEORIA\",274407:\"KUSHINAGAR\",274404:\"DEORIA\",274208:\"DEORIA\",274501:\"DEORIA\",274201:\"DEORIA\",274408:\"DEORIA\",274202:\"DEORIA\",274808:\"DEORIA\",274802:\"KUSHINAGAR\",274705:\"DEORIA\",274704:\"DEORIA\",274401:\"KUSHINAGAR\",274506:\"DEORIA\",274703:\"DEORIA\",274603:\"DEORIA\",274601:\"DEORIA\",274205:\"DEORIA\",274204:\"DEORIA\",274207:\"KUSHINAGAR\",274303:\"KUSHINAGAR\",274701:\"DEORIA\",274602:\"DEORIA\",274182:\"DEORIA\",274206:\"DEORIA\",274306:\"KUSHINAGAR\",274801:\"KUSHINAGAR\",274001:\"DEORIA\",274309:\"KUSHINAGAR\",274304:\"KUSHINAGAR\",274406:\"KUSHINAGAR\",274403:\"KUSHINAGAR\",274807:\"DEORIA\",271504:\"GONDA\",271124:\"GONDA\",271307:\"GONDA\",271215:\"BALRAMPUR\",271401:\"GONDA\",271306:\"GONDA\",271503:\"GONDA\",271305:\"GONDA\",271402:\"GONDA\",271309:\"GONDA\",271604:\"BALRAMPUR\",271312:\"GONDA\",271206:\"BALRAMPUR\",271403:\"GONDA\",271203:\"BALRAMPUR\",271302:\"GONDA\",271204:\"BALRAMPUR\",271303:\"GONDA\",271202:\"GONDA\",271002:\"GONDA\",271313:\"GONDA\",271205:\"BALRAMPUR\",271201:\"BALRAMPUR\",271210:\"BALRAMPUR\",271603:\"GONDA\",271861:\"BALRAMPUR\",271125:\"GONDA\",271129:\"GONDA\",271602:\"GONDA\",271122:\"GONDA\",271208:\"BALRAMPUR\",271003:\"GONDA\",271310:\"GONDA\",271126:\"GONDA\",271207:\"BALRAMPUR\",271311:\"GONDA\",271209:\"BALRAMPUR\",271123:\"GONDA\",271601:\"GONDA\",271609:\"BALRAMPUR\",271001:\"GONDA\",271502:\"GONDA\",271607:\"BALRAMPUR\",271301:\"GONDA\",271319:\"GONDA\",271308:\"GONDA\",271304:\"GONDA\",273002:\"GORAKHPUR\",273164:\"MAHARAJGANJ\",273213:\"GORAKHPUR\",273001:\"GORAKHPUR\",273202:\"GORAKHPUR\",273212:\"GORAKHPUR\",273309:\"MAHARAJGANJ\",273155:\"MAHRAJGANJ\",273407:\"GORAKHPUR\",273163:\"MAHARAJGANJ\",273003:\"GORAKHPUR\",273004:\"GORAKHPUR\",273304:\"MAHARAJGANJ\",273404:\"GORAKHPUR\",273306:\"GORAKHPUR\",273207:\"MAHARAJGANJ\",273211:\"GORAKHPUR\",273401:\"GORAKHPUR\",273303:\"MAHARAJGANJ\",273201:\"GORAKHPUR\",273403:\"GORAKHPUR\",273016:\"GORAKHPUR\",273310:\"MAHARAJGANJ\",273161:\"MAHARAJGANJ\",273413:\"GORAKHPUR\",273007:\"GORAKHPUR\",273302:\"GORAKHPUR\",273158:\"GORAKHPUR\",273165:\"GORAKHPUR\",273157:\"MAHARAJGANJ\",273151:\"MAHARAJGANJ\",273412:\"GORAKHPUR\",273209:\"GORAKHPUR\",273406:\"GORAKHPUR\",273409:\"GORAKHPUR\",273402:\"GORAKHPUR\",273405:\"GORAKHPUR\",273301:\"GORAKHPUR\",273162:\"MAHARAJGANJ\",273411:\"GORAKHPUR\",273152:\"GORAKHPUR\",273308:\"MAHARAJGANJ\",273408:\"GORAKHPUR\",273311:\"MAHARAJGANJ\",273203:\"GORAKHPUR\",273013:\"GORAKHPUR\",273305:\"MAHARAJGANJ\",273015:\"GORAKHPUR\",273005:\"GORAKHPUR\",273006:\"GORAKHPUR\",273009:\"GORAKHPUR\",273012:\"GORAKHPUR\",273010:\"GORAKHPUR\",273014:\"GORAKHPUR\",273008:\"Gorakhpur\",273017:\"GORAKHPUR\",210001:\"BANDA\",210126:\"BANDA\",210205:\"CHITRAKOOT\",210425:\"MAHOBA\",210423:\"MAHOBA\",210203:\"BANDA\",210421:\"MAHOBA\",210121:\"BANDA\",210430:\"HAMIRPUR\",210128:\"BANDA\",210432:\"HAMIRPUR\",210201:\"BANDA\",210120:\"BANDA\",210125:\"BANDA\",210507:\"HAMIRPUR\",210206:\"CHITRAKOOT\",210502:\"HAMIRPUR\",210433:\"MAHOBA\",210422:\"HAMIRPUR\",210431:\"HAMIRPUR\",210202:\"CHITRAKOOT\",210426:\"MAHOBA\",210429:\"MAHOBA\",210129:\"BANDA\",210501:\"HAMIRPUR\",210207:\"CHITRAKOOT\",210208:\"CHITRAKOOT\",210209:\"CHITRAKOOT\",210341:\"HAMIRPUR\",210506:\"HAMIRPUR\",210204:\"CHITRAKOOT\",210505:\"HAMIRPUR\",210123:\"BANDA\",210424:\"MAHOBA\",210427:\"MAHOBA\",210504:\"MAHOBA\",210428:\"HAMIRPUR\",210301:\"HAMIRPUR\",210122:\"BANDA\",209723:\"KANNAUJ\",209502:\"FARRUKHABAD\",209721:\"KANNAUJ\",209621:\"FARRUKHABAD\",209745:\"FARRUKHABAD\",209731:\"KANNAUJ\",209622:\"FARRUKHABAD\",209733:\"KANNAUJ\",209652:\"FARRUKHABAD\",209728:\"KANNAUJ\",209720:\"FARRUKHABAD\",209729:\"KANNAUJ\",209736:\"KANNAUJ\",209625:\"FARRUKHABAD\",209501:\"FARRUKHABAD\",209732:\"KANNAUJ\",209651:\"FARRUKHABAD\",209727:\"KANNAUJ\",209601:\"FARRUKHABAD\",209734:\"KANNAUJ\",209724:\"FARRUKHABAD\",209749:\"FARRUKHABAD\",209602:\"FARRUKHABAD\",209505:\"FARRUKHABAD\",209747:\"KANNAUJ\",209725:\"KANNAUJ\",209739:\"FARRUKHABAD\",209738:\"KANNAUJ\",209743:\"FARRUKHABAD\",209722:\"KANNAUJ\",209504:\"FARRUKHABAD\",209503:\"FARRUKHABAD\",209726:\"KANNAUJ\",209735:\"KANNAUJ\",212665:\"FATEHPUR\",212653:\"FATEHPUR\",212651:\"FATEHPUR\",212641:\"FATEHPUR\",212655:\"FATEHPUR\",212620:\"FATEHPUR\",212661:\"FATEHPUR\",212652:\"FATEHPUR\",212635:\"FATEHPUR\",212659:\"FATEHPUR\",212631:\"FATEHPUR\",212650:\"FATEHPUR\",212658:\"FATEHPUR\",212656:\"FATEHPUR\",212664:\"FATEHPUR\",212622:\"FATEHPUR\",212601:\"FATEHPUR\",212663:\"FATEHPUR\",212657:\"FATEHPUR\",212645:\"FATEHPUR\",212621:\"FATEHPUR\",212654:\"FATEHPUR\",208002:\"KANPUR NAGAR\",209401:\"KANPUR NAGAR\",208011:\"KANPUR NAGAR\",208003:\"KANPUR NAGAR\",208009:\"KANPUR NAGAR\",208017:\"KANPUR NAGAR\",208001:\"KANPUR NAGAR\",209217:\"KANPUR DEHAT\",208027:\"KANPUR NAGAR\",209305:\"KANPUR NAGAR\",209214:\"KANPUR NAGAR\",208024:\"KANPUR NAGAR\",209304:\"KANPUR NAGAR\",208007:\"KANPUR NAGAR\",208008:\"KANPUR NAGAR\",208013:\"KANPUR DEHAT\",208012:\"KANPUR NAGAR\",208006:\"KANPUR NAGAR\",208005:\"KANPUR NAGAR\",208016:\"KANPUR NAGAR\",208026:\"KANPUR NAGAR\",208010:\"KANPUR NAGAR\",208014:\"KANPUR NAGAR\",208004:\"KANPUR NAGAR\",208021:\"KANPUR NAGAR\",208023:\"KANPUR NAGAR\",208025:\"KANPUR NAGAR\",208015:\"KANPUR NAGAR\",208020:\"KANPUR NAGAR\",208022:\"KANPUR NAGAR\",208019:\"KANPUR NAGAR\",209866:\"UNNAO\",209202:\"KANPUR DEHAT\",209860:\"UNNAO\",209821:\"UNNAO\",209831:\"UNNAO\",209302:\"KANPUR DEHAT\",209206:\"KANPUR NAGAR\",209867:\"UNNAO\",209101:\"KANPUR DEHAT\",209111:\"KANPUR DEHAT\",209862:\"UNNAO\",209112:\"KANPUR DEHAT\",209301:\"KANPUR DEHAT\",209870:\"UNNAO\",209115:\"KANPUR DEHAT\",209827:\"UNNAO\",209204:\"KANPUR DEHAT\",209868:\"UNNAO\",209312:\"KANPUR DEHAT\",209859:\"UNNAO\",209125:\"KANPUR DEHAT\",209306:\"KANPUR DEHAT\",209310:\"KANPUR DEHAT\",209801:\"UNNAO\",209871:\"UNNAO\",209825:\"UNNAO\",209307:\"KANPUR DEHAT\",209869:\"UNNAO\",209208:\"KANPUR DEHAT\",209303:\"KANPUR DEHAT\",209311:\"KANPUR DEHAT\",209308:\"KANPUR NAGAR\",209209:\"KANPUR NAGAR\",209210:\"KANPUR DEHAT\",209865:\"UNNAO\",209864:\"UNNAO\",209205:\"KANPUR NAGAR\",209121:\"KANPUR DEHAT\",209203:\"KANPUR NAGAR\",209841:\"UNNAO\",209861:\"UNNAO\",209881:\"UNNAO\",225001:\"BARABANKI\",225208:\"BARABANKI\",225207:\"BARABANKI\",225412:\"BARABANKI\",225122:\"BARABANKI\",225401:\"BARABANKI\",225409:\"BARABANKI\",225205:\"BARABANKI\",225124:\"BARABANKI\",225302:\"BARABANKI\",225416:\"BARABANKI\",225003:\"BARABANKI\",225301:\"BARABANKI\",225306:\"BARABANKI\",225201:\"BARABANKI\",225415:\"BARABANKI\",225204:\"BARABANKI\",225123:\"BARABANKI\",225126:\"BARABANKI\",225002:\"BARABANKI\",225414:\"BARABANKI\",225121:\"BARABANKI\",225305:\"BARABANKI\",225303:\"BARABANKI\",225405:\"BARABANKI\",225119:\"BARABANKI\",225120:\"BARABANKI\",225202:\"BARABANKI\",225125:\"BARABANKI\",225206:\"BARABANKI\",225203:\"BARABANKI\",225403:\"BARABANKI\",225404:\"BARABANKI\",225304:\"BARABANKI\",225413:\"BARABANKI\",224116:\"FAIZABAD\",224001:\"FAIZABAD\",224129:\"FAIZABAD\",224225:\"FAIZABAD\",224168:\"AMBEDKAR NAGAR\",224208:\"FAIZABAD\",224147:\"FAIZABAD\",224228:\"FAIZABAD\",224157:\"AMBEDKAR NAGAR\",224139:\"AMBEDKAR NAGAR\",224137:\"AMBEDKAR NAGAR\",224120:\"FAIZABAD\",224145:\"AMBEDKAR NAGAR\",224190:\"AMBEDKAR NAGAR\",224161:\"FAIZABAD\",224135:\"FAIZABAD\",224181:\"AMBEDKAR NAGAR\",224121:\"FAIZABAD\",224186:\"AMBEDKAR NAGAR\",224149:\"AMBEDKAR NAGAR\",224118:\"FAIZABAD\",224141:\"FAIZABAD\",224172:\"FAIZABAD\",224164:\"FAIZABAD\",224143:\"AMBEDKAR NAGAR\",224152:\"AMBEDKAR NAGAR\",224209:\"FAIZABAD\",224188:\"FAIZABAD\",224125:\"AMBEDKAR NAGAR\",224151:\"AMBEDKAR NAGAR\",224207:\"FAIZABAD\",224284:\"FAIZABAD\",224234:\"FAIZABAD\",224123:\"FAIZABAD\",224189:\"FAIZABAD\",224153:\"FAIZABAD\",224204:\"FAIZABAD\",224132:\"AMBEDKAR NAGAR\",224205:\"FAIZABAD\",224176:\"AMBEDKAR NAGAR\",224201:\"FAIZABAD\",224230:\"AMBEDKAR NAGAR\",224126:\"FAIZABAD\",224203:\"FAIZABAD\",224227:\"AMBEDKAR NAGAR\",224195:\"FAIZABAD\",224210:\"AMBEDKAR NAGAR\",224127:\"FAIZABAD\",224182:\"FAIZABAD\",224206:\"FAIZABAD\",224229:\"FAIZABAD\",224231:\"AMBEDKAR NAGAR\",224159:\"AMBEDKAR NAGAR\",224202:\"FAIZABAD\",224155:\"AMBEDKAR NAGAR\",224133:\"FAIZABAD\",224171:\"FAIZABAD\",224119:\"FAIZABAD\",224232:\"AMBEDKAR NAGAR\",224146:\"AMBEDKAR NAGAR\",224158:\"FAIZABAD\",224183:\"AMBEDKAR NAGAR\",224235:\"AMBEDKAR NAGAR\",224117:\"FAIZABAD\",224238:\"AMBEDKAR NAGAR\",201021:\"GHAZIABAD\",201206:\"GHAZIABAD\",245101:\"HAPUR\",203207:\"GAUTAM BUDDHA NAGAR\",201015:\"GHAZIABAD\",245208:\"HAPUR\",245201:\"HAPUR\",201310:\"GAUTAM BUDDHA NAGAR\",201313:\"GAUTAM BUDDHA NAGAR\",245304:\"GHAZIABAD\",201009:\"GHAZIABAD\",201001:\"GHAZIABAD\",245205:\"HAPUR\",201003:\"GHAZIABAD\",201102:\"GHAZIABAD\",201304:\"GAUTAM BUDDHA NAGAR\",245207:\"HAPUR\",201204:\"GHAZIABAD\",201314:\"GAUTAM BUDDHA NAGAR\",201010:\"GHAZIABAD\",201006:\"GHAZIABAD\",201008:\"GAUTAM BUDDHA NAGAR\",201011:\"GHAZIABAD\",201309:\"GAUTAM BUDDHA NAGAR\",201201:\"GHAZIABAD\",201311:\"GAUTAM BUDDHA NAGAR\",201016:\"GHAZIABAD\",245301:\"GHAZIABAD\",201312:\"GAUTAM BUDDHA NAGAR\",201013:\"GHAZIABAD\",201315:\"GAUTAM BUDDHA NAGAR\",201004:\"GHAZIABAD\",201306:\"GAUTAM BUDDHA NAGAR\",201002:\"GHAZIABAD\",201020:\"GHAZIABAD\",201103:\"GHAZIABAD\",201018:\"GHAZIABAD\",201007:\"GHAZIABAD\",201305:\"GAUTAM BUDDHA NAGAR\",201301:\"GAUTAM BUDDHA NAGAR\",201005:\"GHAZIABAD\",201017:\"GHAZIABAD\",201307:\"GAUTAM BUDDHA NAGAR\",201318:\"GAUTAM BUDDHA NAGAR\",201316:\"GAUTAM BUDDHA NAGAR\",201317:\"GAUTAM BUDDHA NAGAR\",201303:\"GAUTAM BUDDHA NAGAR\",201014:\"GHAZIABAD\",201019:\"GHAZIABAD\",201012:\"GHAZIABAD\",226023:\"LUCKNOW\",226004:\"LUCKNOW\",226303:\"LUCKNOW\",226005:\"LUCKNOW\",226401:\"LUCKNOW\",226203:\"LUCKNOW\",226017:\"LUCKNOW\",226024:\"LUCKNOW\",226009:\"LUCKNOW\",226008:\"LUCKNOW\",226003:\"LUCKNOW\",226501:\"LUCKNOW\",226101:\"LUCKNOW\",226018:\"LUCKNOW\",226028:\"LUCKNOW\",226104:\"LUCKNOW\",226001:\"LUCKNOW\",226002:\"LUCKNOW\",226012:\"LUCKNOW\",226201:\"LUCKNOW\",226025:\"LUCKNOW\",226301:\"LUCKNOW\",226026:\"LUCKNOW\",226021:\"LUCKNOW\",226102:\"LUCKNOW\",226015:\"LUCKNOW\",226020:\"LUCKNOW\",226103:\"LUCKNOW\",226302:\"LUCKNOW\",226013:\"LUCKNOW\",226202:\"LUCKNOW\",226016:\"LUCKNOW\",226010:\"LUCKNOW\",226006:\"LUCKNOW\",226019:\"LUCKNOW\",226031:\"LUCKNOW\",226022:\"LUCKNOW\",226011:\"LUCKNOW\",226007:\"LUCKNOW\",226014:\"LUCKNOW\",226030:\"LUCKNOW\",226027:\"LUCKNOW\",226029:\"LUCKNOW\",229001:\"RAEBARELI\",229802:\"RAEBARELI\",229135:\"RAEBARELI\",229316:\"RAEBARELI\",229309:\"RAEBARELI\",229121:\"RAEBARELI\",229206:\"RAEBARELI\",229126:\"RAEBARELI\",229404:\"RAEBARELI\",229307:\"RAEBARELI\",229204:\"RAEBARELI\",229103:\"RAEBARELI\",229306:\"UNNAO\",229301:\"RAEBARELI\",229129:\"RAEBARELI\",229210:\"RAEBARELI\",229130:\"RAEBARELI\",229303:\"RAEBARELI\",229305:\"RAEBARELI\",229401:\"RAEBARELI\",229128:\"RAEBARELI\",229311:\"RAEBARELI\",229203:\"RAEBARELI\",229308:\"RAEBARELI\",229216:\"RAEBARELI\",229211:\"RAEBARELI\",229123:\"RAEBARELI\",229207:\"RAEBARELI\",229801:\"RAEBARELI\",229205:\"RAEBARELI\",229122:\"RAEBARELI\",229208:\"RAEBARELI\",229125:\"RAEBARELI\",229201:\"RAEBARELI\",229402:\"RAEBARELI\",229127:\"RAEBARELI\",229302:\"RAEBARELI\",229405:\"RAEBARELI\",229202:\"RAEBARELI\",229310:\"RAEBARELI\",229212:\"RAEBARELI\",229215:\"RAEBARELI\",229406:\"RAEBARELI\",229124:\"RAEBARELI\",229304:\"RAEBARELI\",229010:\"RAEBARELI\",229209:\"RAEBARELI\",229120:\"RAEBARELI\",261001:\"SITAPUR\",261202:\"SITAPUR\",261301:\"SITAPUR\",261201:\"SITAPUR\",261208:\"SITAPUR\",261401:\"SITAPUR\",261135:\"SITAPUR\",261121:\"SITAPUR\",261303:\"SITAPUR\",261405:\"SITAPUR\",261207:\"SITAPUR\",261204:\"SITAPUR\",261131:\"SITAPUR\",261402:\"SITAPUR\",261403:\"SITAPUR\",261206:\"SITAPUR\",261141:\"SITAPUR\",261203:\"SITAPUR\",261151:\"SITAPUR\",261205:\"SITAPUR\",261302:\"SITAPUR\",261145:\"SITAPUR\",261125:\"SITAPUR\",261404:\"SITAPUR\",261136:\"SITAPUR\",277209:\"BALLIA\",277401:\"BALLIA\",221715:\"BALLIA\",221713:\"BALLIA\",221712:\"BALLIA\",277501:\"BALLIA\",277203:\"BALLIA\",277502:\"BALLIA\",277304:\"BALLIA\",277302:\"BALLIA\",221701:\"BALLIA\",221711:\"BALLIA\",221716:\"BALLIA\",277402:\"BALLIA\",277303:\"BALLIA\",221717:\"BALLIA\",277207:\"BALLIA\",277001:\"BALLIA\",277216:\"BALLIA\",277201:\"BALLIA\",277202:\"BALLIA\",277121:\"BALLIA\",277205:\"BALLIA\",277301:\"BALLIA\",277403:\"BALLIA\",277211:\"BALLIA\",221709:\"BALLIA\",277503:\"BALLIA\",277124:\"BALLIA\",277208:\"BALLIA\",277214:\"BALLIA\",221718:\"BALLIA\",277210:\"BALLIA\",277204:\"BALLIA\",277213:\"BALLIA\",277219:\"BALLIA\",277123:\"BALLIA\",277506:\"BALLIA\",277504:\"BALLIA\",222133:\"JAUNPUR\",223102:\"JAUNPUR\",222203:\"JAUNPUR\",222141:\"JAUNPUR\",222180:\"JAUNPUR\",222161:\"JAUNPUR\",222201:\"JAUNPUR\",222162:\"JAUNPUR\",222142:\"JAUNPUR\",222165:\"JAUNPUR\",222170:\"JAUNPUR\",223104:\"JAUNPUR\",222139:\"JAUNPUR\",223103:\"JAUNPUR\",222145:\"JAUNPUR\",222136:\"JAUNPUR\",222137:\"JAUNPUR\",222003:\"JAUNPUR\",222105:\"JAUNPUR\",222127:\"JAUNPUR\",222125:\"JAUNPUR\",222175:\"JAUNPUR\",223101:\"JAUNPUR\",222129:\"JAUNPUR\",222143:\"JAUNPUR\",222128:\"JAUNPUR\",222181:\"JAUNPUR\",222144:\"JAUNPUR\",222109:\"JAUNPUR\",222202:\"JAUNPUR\",222149:\"JAUNPUR\",222148:\"JAUNPUR\",222002:\"JAUNPUR\",222135:\"JAUNPUR\",222132:\"JAUNPUR\",223105:\"JAUNPUR\",222126:\"JAUNPUR\",222204:\"JAUNPUR\",222138:\"JAUNPUR\",222146:\"JAUNPUR\",222001:\"JAUNPUR\",222131:\"JAUNPUR\",222101:\"JAUNPUR\",232110:\"CHANDAULI\",221101:\"VARANASI\",232102:\"CHANDAULI\",232101:\"CHANDAULI\",232118:\"CHANDAULI\",232105:\"CHANDAULI\",221104:\"VARANASI\",232111:\"CHANDAULI\",232109:\"CHANDAULI\",232106:\"CHANDAULI\",221007:\"VARANASI\",221005:\"VARANASI\",232108:\"CHANDAULI\",221011:\"VARANASI\",232107:\"CHANDAULI\",221112:\"VARANASI\",232104:\"CHANDAULI\",221110:\"CHANDAULI\",221001:\"VARANASI\",232103:\"CHANDAULI\",221116:\"VARANASI\",221115:\"CHANDAULI\",232120:\"CHANDAULI\",221008:\"VARANASI\",221012:\"CHANDAULI\",221009:\"CHANDAULI\",221002:\"VARANASI\",221404:\"SANT RAVIDAS NAGAR\",221304:\"SANT RAVIDAS NAGAR\",221406:\"VARANASI\",221201:\"VARANASI\",221402:\"VARANASI\",221303:\"SANT RAVIDAS NAGAR\",221401:\"SANT RAVIDAS NAGAR\",221301:\"SANT RAVIDAS NAGAR\",221010:\"VARANASI\",221202:\"VARANASI\",221006:\"VARANASI\",221311:\"VARANASI\",221314:\"VARANASI\",221403:\"VARANASI\",221310:\"SANT RAVIDAS NAGAR\",221204:\"VARANASI\",221207:\"VARANASI\",221309:\"VARANASI\",221405:\"VARANASI\",221308:\"VARANASI\",221106:\"VARANASI\",221206:\"VARANASI\",221307:\"VARANASI\",221108:\"VARANASI\",221105:\"VARANASI\",221003:\"VARANASI\",221305:\"VARANASI\",221004:\"VARANASI\",221313:\"VARANASI\",221302:\"VARANASI\",221208:\"VARANASI\",221109:\"VARANASI\",221306:\"SANT RAVIDAS NAGAR\",221107:\"VARANASI\",221409:\"VARANASI\",221103:\"VARANASI\",263652:\"ALMORA\",263665:\"ALMORA\",263646:\"ALMORA\",263645:\"ALMORA\",263601:\"ALMORA\",263676:\"ALMORA\",263642:\"BAGESHWAR\",263623:\"ALMORA\",263641:\"BAGESHWAR\",263625:\"ALMORA\",263653:\"ALMORA\",263628:\"BAGESHWAR\",263632:\"BAGESHWAR\",263622:\"ALMORA\",263626:\"ALMORA\",263621:\"ALMORA\",263655:\"ALMORA\",263634:\"BAGESHWAR\",263659:\"ALMORA\",263624:\"ALMORA\",263636:\"ALMORA\",263661:\"ALMORA\",263680:\"ALMORA\",263663:\"ALMORA\",263678:\"ALMORA\",263656:\"ALMORA\",263637:\"ALMORA\",263619:\"BAGESHWAR\",263633:\"BAGESHWAR\",263640:\"BAGESHWAR\",263679:\"BAGESHWAR\",263667:\"ALMORA\",263635:\"BAGESHWAR\",263630:\"BAGESHWAR\",263664:\"ALMORA\",263629:\"ALMORA\",263651:\"ALMORA\",263643:\"ALMORA\",263660:\"ALMORA\",263631:\"BAGESHWAR\",263658:\"ALMORA\",263639:\"ALMORA\",263620:\"BAGESHWAR\",263638:\"ALMORA\",246440:\"CHAMOLI\",246442:\"RUDRAPRAYAG\",246446:\"CHAMOLI\",246428:\"CHAMOLI\",246439:\"RUDRAPRAYAG\",246425:\"RUDRAPRAYAG\",246455:\"CHAMOLI\",246421:\"CHAMOLI\",246424:\"CHAMOLI\",246486:\"CHAMOLI\",246471:\"RUDRAPRAYAG\",246422:\"CHAMOLI\",246449:\"CHAMOLI\",246444:\"CHAMOLI\",246487:\"CHAMOLI\",246401:\"CHAMOLI\",246419:\"RUDRAPRAYAG\",246427:\"CHAMOLI\",246443:\"CHAMOLI\",246435:\"CHAMOLI\",246488:\"CHAMOLI\",246141:\"RUDRAPRAYAG\",246171:\"RUDRAPRAYAG\",246429:\"CHAMOLI\",246431:\"CHAMOLI\",246473:\"CHAMOLI\",246472:\"CHAMOLI\",246475:\"RUDRAPRAYAG\",246482:\"CHAMOLI\",246481:\"CHAMOLI\",246426:\"CHAMOLI\",246441:\"CHAMOLI\",246495:\"RUDRAPRAYAG\",246453:\"CHAMOLI\",246469:\"RUDRAPRAYAG\",246474:\"CHAMOLI\",246445:\"RUDRAPRAYAG\",246448:\"RUDRAPRAYAG\",246483:\"CHAMOLI\",249403:\"HARIDWAR\",247663:\"HARIDWAR\",248121:\"DEHRADUN\",248125:\"DEHRADUN\",248007:\"DEHRADUN\",249404:\"HARIDWAR\",248003:\"DEHRADUN\",248199:\"DEHRADUN\",248001:\"DEHRADUN\",249407:\"HARIDWAR\",249402:\"HARIDWAR\",248158:\"DEHRADUN\",248143:\"DEHRADUN\",248140:\"DEHRADUN\",248005:\"DEHRADUN\",248196:\"DEHRADUN\",248123:\"DEHRADUN\",248008:\"DEHRADUN\",248122:\"DEHRADUN\",248124:\"DEHRADUN\",248197:\"DEHRADUN\",247667:\"HARIDWAR\",247661:\"HARIDWAR\",248009:\"DEHRADUN\",247668:\"HARIDWAR\",247671:\"HARIDWAR\",249401:\"HARIDWAR\",247666:\"HARIDWAR\",248159:\"DEHRADUN\",249204:\"DEHRADUN\",248002:\"DEHRADUN\",248145:\"DEHRADUN\",249405:\"HARIDWAR\",248012:\"DEHRADUN\",248165:\"DEHRADUN\",248142:\"DEHRADUN\",247670:\"HARIDWAR\",249205:\"DEHRADUN\",248006:\"DEHRADUN\",248195:\"DEHRADUN\",247665:\"HARIDWAR\",248179:\"DEHRADUN\",248016:\"DEHRADUN\",248013:\"DEHRADUN\",249408:\"DEHRADUN\",248171:\"DEHRADUN\",247664:\"HARIDWAR\",247656:\"HARIDWAR\",248018:\"DEHRADUN\",248014:\"DEHRADUN\",249202:\"DEHRADUN\",248198:\"DEHRADUN\",249203:\"DEHRADUN\",249201:\"DEHRADUN\",249410:\"HARIDWAR\",248146:\"DEHRADUN\",248011:\"DEHRADUN\",249411:\"HARIDWAR\",248015:\"DEHRADUN\",263153:\"NAINITAL\",263152:\"NAINITAL\",263157:\"NAINITAL\",263159:\"NAINITAL\",263126:\"NAINITAL\",244716:\"NAINITAL\",263139:\"NAINITAL\",263136:\"NAINITAL\",263148:\"NAINITAL\",263140:\"NAINITAL\",262310:\"NAINITAL\",262401:\"NAINITAL\",244712:\"NAINITAL\",262405:\"NAINITAL\",263128:\"NAINITAL\",262308:\"NAINITAL\",263134:\"NAINITAL\",244715:\"NAINITAL\",263137:\"NAINITAL\",263132:\"NAINITAL\",262402:\"NAINITAL\",263127:\"NAINITAL\",244713:\"NAINITAL\",263158:\"NAINITAL\",263149:\"NAINITAL\",263135:\"NAINITAL\",263138:\"NAINITAL\",263160:\"NAINITAL\",263156:\"NAINITAL\",263145:\"NAINITAL\",263142:\"NAINITAL\",263001:\"NAINITAL\",263150:\"NAINITAL\",262311:\"UDHAM SINGH NAGAR\",263151:\"UDHAM SINGH NAGAR\",244717:\"UDHAM SINGH NAGAR\",262309:\"CHAMPAWAT\",246155:\"PAURI GARHWAL\",246277:\"PAURI GARHWAL\",246146:\"PAURI GARHWAL\",246176:\"PAURI GARHWAL\",246285:\"PAURI GARHWAL\",246121:\"PAURI GARHWAL\",246173:\"PAURI GARHWAL\",246149:\"PAURI GARHWAL\",246131:\"PAURI GARHWAL\",246179:\"PAURI GARHWAL\",246130:\"PAURI GARHWAL\",246169:\"PAURI GARHWAL\",246167:\"PAURI GARHWAL\",246275:\"PAURI GARHWAL\",246161:\"PAURI GARHWAL\",246123:\"PAURI GARHWAL\",246127:\"PAURI GARHWAL\",246128:\"PAURI GARHWAL\",246129:\"PAURI GARHWAL\",246159:\"PAURI GARHWAL\",246278:\"PAURI GARHWAL\",246172:\"PAURI GARHWAL\",246276:\"PAURI GARHWAL\",246175:\"PAURI GARHWAL\",246162:\"PAURI GARHWAL\",246144:\"PAURI GARHWAL\",246113:\"PAURI GARHWAL\",246001:\"PAURI GARHWAL\",246166:\"PAURI GARHWAL\",246164:\"PAURI GARHWAL\",246147:\"PAURI GARHWAL\",246148:\"PAURI GARHWAL\",249306:\"PAURI GARHWAL\",246177:\"PAURI GARHWAL\",246124:\"PAURI GARHWAL\",246194:\"PAURI GARHWAL\",246125:\"PAURI GARHWAL\",249301:\"PAURI GARHWAL\",249304:\"PAURI GARHWAL\",246279:\"PAURI GARHWAL\",246174:\"PAURI GARHWAL\",246193:\"PAURI GARHWAL\",246163:\"PAURI GARHWAL\",246142:\"PAURI GARHWAL\",249302:\"PAURI GARHWAL\",246165:\"PAURI GARHWAL\",246150:\"PAURI GARHWAL\",246178:\"PAURI GARHWAL\",262525:\"CHAMPAWAT\",262551:\"PITHORAGARH\",262534:\"PITHORAGARH\",262530:\"PITHORAGARH\",262543:\"PITHORAGARH\",262542:\"PITHORAGARH\",262521:\"PITHORAGARH\",262524:\"CHAMPAWAT\",262544:\"PITHORAGARH\",262552:\"PITHORAGARH\",262545:\"PITHORAGARH\",262576:\"PITHORAGARH\",262541:\"PITHORAGARH\",262532:\"PITHORAGARH\",262501:\"PITHORAGARH\",262555:\"PITHORAGARH\",262527:\"CHAMPAWAT\",262540:\"PITHORAGARH\",262554:\"PITHORAGARH\",262531:\"PITHORAGARH\",262520:\"PITHORAGARH\",262529:\"PITHORAGARH\",262553:\"PITHORAGARH\",262572:\"PITHORAGARH\",262528:\"CHAMPAWAT\",262523:\"CHAMPAWAT\",262561:\"CHAMPAWAT\",262522:\"PITHORAGARH\",262502:\"PITHORAGARH\",262547:\"PITHORAGARH\",262533:\"PITHORAGARH\",262580:\"CHAMPAWAT\",262546:\"PITHORAGARH\",262526:\"PITHORAGARH\",262550:\"PITHORAGARH\",249175:\"TEHRI GARHWAL\",249155:\"TEHRI GARHWAL\",249131:\"TEHRI GARHWAL\",249122:\"TEHRI GARHWAL\",249146:\"TEHRI GARHWAL\",249145:\"TEHRI GARHWAL\",249121:\"TEHRI GARHWAL\",249128:\"UTTARKASHI\",249192:\"TEHRI GARHWAL\",249196:\"UTTARKASHI\",249161:\"TEHRI GARHWAL\",249199:\"TEHRI GARHWAL\",249171:\"UTTARKASHI\",249152:\"UTTARKASHI\",249180:\"TEHRI GARHWAL\",249132:\"TEHRI GARHWAL\",249181:\"TEHRI GARHWAL\",249135:\"UTTARKASHI\",249125:\"TEHRI GARHWAL\",249124:\"TEHRI GARHWAL\",249126:\"TEHRI GARHWAL\",249193:\"UTTARKASHI\",249141:\"UTTARKASHI\",249165:\"UTTARKASHI\",249151:\"UTTARKASHI\",249127:\"TEHRI GARHWAL\",249123:\"TEHRI GARHWAL\",249185:\"UTTARKASHI\",249137:\"TEHRI GARHWAL\",249130:\"TEHRI GARHWAL\",249136:\"UTTARKASHI\",249001:\"TEHRI GARHWAL\",249186:\"TEHRI GARHWAL\",249194:\"UTTARKASHI\",249195:\"UTTARKASHI\",737135:\"EAST SIKKIM\",737133:\"EAST SIKKIM\",737111:\"WEST SIKKIM\",737121:\"WEST SIKKIM\",737126:\"SOUTH SIKKIM\",737134:\"EAST SIKKIM\",737139:\"SOUTH SIKKIM\",737106:\"EAST SIKKIM\",737113:\"WEST SIKKIM\",737103:\"EAST SIKKIM\",737131:\"EAST SIKKIM\",737120:\"EAST SIKKIM\",737102:\"EAST SIKKIM\",737107:\"EAST SIKKIM\",737132:\"EAST SIKKIM\",737101:\"EAST SIKKIM\",737116:\"NORTH SIKKIM\",737128:\"SOUTH SIKKIM\",737136:\"EAST SIKKIM\",744104:\"South Andaman\",744202:\"North And Middle Andaman\",744205:\"North And Middle Andaman\",744107:\"South Andaman\",744206:\"South Andaman\",744105:\"South Andaman\",744201:\"North And Middle Andaman\",744103:\"South Andaman\",744302:\"Nicobar\",744301:\"Nicobar\",744112:\"South Andaman\",744303:\"Nicobar\",744102:\"South Andaman\",744211:\"South Andaman\",744207:\"South Andaman\",744209:\"North And Middle Andaman\",744210:\"North And Middle Andaman\",744304:\"Nicobar\",744203:\"North And Middle Andaman\",744101:\"South Andaman\",744204:\"North And Middle Andaman\",744106:\"South Andaman\",700027:\"Kolkata\",700023:\"Kolkata\",700088:\"Kolkata\",743456:\"NORTH 24 PARGANAS\",700155:\"NORTH 24 PARGANAS\",743425:\"NORTH 24 PARGANAS\",743221:\"NORTH 24 PARGANAS\",743248:\"NORTH 24 PARGANAS\",700131:\"NORTH 24 PARGANAS\",743710:\"NORTH 24 PARGANAS\",700135:\"NORTH 24 PARGANAS\",743263:\"NORTH 24 PARGANAS\",743249:\"NORTH 24 PARGANAS\",743435:\"NORTH 24 PARGANAS\",743251:\"NORTH 24 PARGANAS\",743445:\"NORTH 24 PARGANAS\",743273:\"NORTH 24 PARGANAS\",743401:\"NORTH 24 PARGANAS\",743235:\"NORTH 24 PARGANAS\",743437:\"NORTH 24 PARGANAS\",743222:\"NORTH 24 PARGANAS\",743446:\"NORTH 24 PARGANAS\",743438:\"NORTH 24 PARGANAS\",743427:\"NORTH 24 PARGANAS\",743292:\"NORTH 24 PARGANAS\",700128:\"NORTH 24 PARGANAS\",743232:\"NORTH 24 PARGANAS\",743423:\"NORTH 24 PARGANAS\",743245:\"NORTH 24 PARGANAS\",743262:\"NORTH 24 PARGANAS\",743702:\"NORTH 24 PARGANAS\",743270:\"NORTH 24 PARGANAS\",743286:\"NORTH 24 PARGANAS\",743233:\"NORTH 24 PARGANAS\",700124:\"NORTH 24 PARGANAS\",743247:\"NORTH 24 PARGANAS\",743426:\"NORTH 24 PARGANAS\",743411:\"NORTH 24 PARGANAS\",743412:\"NORTH 24 PARGANAS\",743442:\"NORTH 24 PARGANAS\",743701:\"NORTH 24 PARGANAS\",743711:\"NORTH 24 PARGANAS\",743422:\"NORTH 24 PARGANAS\",743439:\"NORTH 24 PARGANAS\",743234:\"NORTH 24 PARGANAS\",700126:\"NORTH 24 PARGANAS\",743294:\"NORTH 24 PARGANAS\",743424:\"NORTH 24 PARGANAS\",743291:\"NORTH 24 PARGANAS\",743405:\"NORTH 24 PARGANAS\",743287:\"NORTH 24 PARGANAS\",743290:\"NORTH 24 PARGANAS\",743429:\"NORTH 24 PARGANAS\",700129:\"NORTH 24 PARGANAS\",743293:\"NORTH 24 PARGANAS\",743252:\"NORTH 24 PARGANAS\",700132:\"NORTH 24 PARGANAS\",743289:\"NORTH 24 PARGANAS\",743704:\"NORTH 24 PARGANAS\",743268:\"NORTH 24 PARGANAS\",743223:\"NORTH 24 PARGANAS\",743271:\"NORTH 24 PARGANAS\",700127:\"NORTH 24 PARGANAS\",700125:\"NORTH 24 PARGANAS\",743272:\"NORTH 24 PARGANAS\",743428:\"NORTH 24 PARGANAS\",700130:\"NORTH 24 PARGANAS\",700133:\"NORTH 24 PARGANAS\",743297:\"NORTH 24 PARGANAS\",700136:\"NORTH 24 PARGANAS\",731303:\"BIRBHUM\",731121:\"BIRBHUM\",731204:\"BIRBHUM\",731201:\"BIRBHUM\",731130:\"BIRBHUM\",731302:\"BIRBHUM\",731222:\"BIRBHUM\",731219:\"BIRBHUM\",731127:\"BIRBHUM\",731242:\"BIRBHUM\",731233:\"BIRBHUM\",731243:\"BIRBHUM\",731125:\"BIRBHUM\",731234:\"BIRBHUM\",731240:\"BIRBHUM\",731123:\"BIRBHUM\",731215:\"BIRBHUM\",731237:\"BIRBHUM\",731221:\"BIRBHUM\",731103:\"BIRBHUM\",731202:\"BIRBHUM\",731223:\"BIRBHUM\",731301:\"BIRBHUM\",731220:\"BIRBHUM\",731101:\"BIRBHUM\",731245:\"BIRBHUM\",731236:\"BIRBHUM\",731126:\"BIRBHUM\",731238:\"BIRBHUM\",731216:\"BIRBHUM\",731304:\"BIRBHUM\",731102:\"BIRBHUM\",731244:\"BIRBHUM\",731104:\"BIRBHUM\",731213:\"BIRBHUM\",731241:\"BIRBHUM\",731214:\"BIRBHUM\",731133:\"BIRBHUM\",731129:\"BIRBHUM\",731124:\"BIRBHUM\",731132:\"BIRBHUM\",731224:\"BIRBHUM\",731218:\"BIRBHUM\",731235:\"BIRBHUM\",700014:\"KOLKATA\",700012:\"KOLKATA\",700073:\"KOLKATA\",700007:\"KOLKATA\",700001:\"KOLKATA\",700013:\"KOLKATA\",700016:\"KOLKATA\",700069:\"KOLKATA\",700021:\"KOLKATA\",700072:\"KOLKATA\",700071:\"KOLKATA\",700087:\"KOLKATA\",700017:\"KOLKATA\",700062:\"KOLKATA\",700046:\"KOLKATA\",700059:\"NORTH 24 PARGANAS\",700159:\"NORTH 24 PARGANAS\",700055:\"NORTH 24 PARGANAS\",700039:\"KOLKATA\",700010:\"KOLKATA\",700054:\"KOLKATA\",700064:\"NORTH 24 PARGANAS\",700091:\"NORTH 24 PARGANAS\",700106:\"NORTH 24 PARGANAS\",700156:\"NORTH 24 PARGANAS\",700105:\"SOUTH 24 PARGANAS\",700157:\"NORTH 24 PARGANAS\",700162:\"KOLKATA\",700089:\"NORTH 24 PARGANAS\",700085:\"KOLKATA\",700102:\"NORTH 24 PARGANAS\",700011:\"KOLKATA\",700163:\"North 24 Parganas\",700161:\"NORTH 24 PARGANAS\",700160:\"NORTH 24 PARGANAS\",700009:\"KOLKATA\",700048:\"NORTH 24 PARGANAS\",700101:\"NORTH 24 PARGANAS\",700097:\"NORTH 24 PARGANAS\",700015:\"KOLKATA\",700100:\"KOLKATA\",700005:\"KOLKATA\",700035:\"KOLKATA\",700003:\"KOLKATA\",700108:\"KOLKATA\",700036:\"KOLKATA\",700006:\"KOLKATA\",700077:\"KOLKATA\",700037:\"KOLKATA\",700002:\"KOLKATA\",700074:\"KOLKATA\",700028:\"KOLKATA\",700065:\"KOLKATA\",700030:\"KOLKATA\",700080:\"KOLKATA\",700052:\"KOLKATA\",700067:\"KOLKATA\",700090:\"KOLKATA\",700004:\"KOLKATA\",700050:\"KOLKATA\",742122:\"MURSHIDABAD\",742227:\"MURSHIDABAD\",742226:\"MURSHIDABAD\",742223:\"MURSHIDABAD\",742135:\"MURSHIDABAD\",742224:\"MURSHIDABAD\",742301:\"MURSHIDABAD\",742123:\"MURSHIDABAD\",742406:\"MURSHIDABAD\",742136:\"MURSHIDABAD\",742202:\"MURSHIDABAD\",742121:\"MURSHIDABAD\",742168:\"MURSHIDABAD\",742189:\"MURSHIDABAD\",742138:\"MURSHIDABAD\",742148:\"MURSHIDABAD\",742159:\"MURSHIDABAD\",742201:\"MURSHIDABAD\",742147:\"MURSHIDABAD\",742308:\"MURSHIDABAD\",742163:\"MURSHIDABAD\",742212:\"MURSHIDABAD\",742165:\"MURSHIDABAD\",742237:\"MURSHIDABAD\",742302:\"MURSHIDABAD\",742306:\"MURSHIDABAD\",742102:\"MURSHIDABAD\",742235:\"MURSHIDABAD\",742213:\"MURSHIDABAD\",742132:\"MURSHIDABAD\",742187:\"MURSHIDABAD\",742133:\"MURSHIDABAD\",742175:\"MURSHIDABAD\",742140:\"MURSHIDABAD\",742101:\"MURSHIDABAD\",742134:\"MURSHIDABAD\",742149:\"MURSHIDABAD\",742303:\"MURSHIDABAD\",742184:\"MURSHIDABAD\",742161:\"MURSHIDABAD\",742407:\"MURSHIDABAD\",742405:\"MURSHIDABAD\",742166:\"MURSHIDABAD\",742305:\"MURSHIDABAD\",742104:\"MURSHIDABAD\",742103:\"MURSHIDABAD\",742174:\"MURSHIDABAD\",742113:\"MURSHIDABAD\",742401:\"MURSHIDABAD\",742225:\"MURSHIDABAD\",742304:\"MURSHIDABAD\",742137:\"MURSHIDABAD\",742404:\"MURSHIDABAD\",742151:\"MURSHIDABAD\",742236:\"MURSHIDABAD\",742160:\"MURSHIDABAD\",742238:\"MURSHIDABAD\",742410:\"MURSHIDABAD\",742164:\"MURSHIDABAD\",742408:\"MURSHIDABAD\",742409:\"MURSHIDABAD\",742402:\"MURSHIDABAD\",741137:\"NADIA\",741317:\"NADIA\",741315:\"NADIA\",741101:\"NADIA\",741165:\"NADIA\",741125:\"NADIA\",741122:\"NADIA\",741126:\"NADIA\",741161:\"NADIA\",741316:\"NADIA\",741123:\"NADIA\",741154:\"NADIA\",741152:\"NADIA\",741155:\"NADIA\",741156:\"NADIA\",741153:\"NADIA\",741313:\"NADIA\",741124:\"NADIA\",741150:\"NADIA\",741103:\"NADIA\",741163:\"NADIA\",741181:\"NADIA\",741102:\"NADIA\",741167:\"NADIA\",741157:\"NADIA\",741319:\"NADIA\",741138:\"NADIA\",741302:\"NADIA\",741162:\"NADIA\",741160:\"NADIA\",741301:\"NADIA\",741140:\"NADIA\",741158:\"NADIA\",741164:\"NADIA\",741139:\"NADIA\",741166:\"NADIA\",741402:\"NADIA\",741245:\"NADIA\",741253:\"NADIA\",741255:\"NADIA\",741501:\"NADIA\",741121:\"NADIA\",741404:\"NADIA\",741502:\"NADIA\",741223:\"NADIA\",741503:\"NADIA\",741221:\"NADIA\",741504:\"NADIA\",741507:\"NADIA\",741250:\"NADIA\",741256:\"NADIA\",741505:\"NADIA\",741248:\"NADIA\",741235:\"NADIA\",741127:\"NADIA\",741201:\"NADIA\",741222:\"NADIA\",741509:\"NADIA\",741202:\"NADIA\",741151:\"NADIA\",741251:\"NADIA\",741232:\"NADIA\",741238:\"NADIA\",741508:\"NADIA\",741257:\"NADIA\",741401:\"NADIA\",741506:\"NADIA\",741249:\"NADIA\",741234:\"NADIA\",741246:\"NADIA\",741254:\"NADIA\",741252:\"NADIA\",741247:\"NADIA\",741159:\"NADIA\",700109:\"NORTH 24 PARGANAS\",743144:\"NORTH 24 PARGANAS\",700122:\"NORTH 24 PARGANAS\",700057:\"NORTH 24 PARGANAS\",743128:\"NORTH 24 PARGANAS\",743145:\"NORTH 24 PARGANAS\",700119:\"NORTH 24 PARGANAS\",700114:\"NORTH 24 PARGANAS\",700120:\"NORTH 24 PARGANAS\",700123:\"NORTH 24 PARGANAS\",700083:\"NORTH 24 PARGANAS\",700116:\"NORTH 24 PARGANAS\",700056:\"NORTH 24 PARGANAS\",743122:\"NORTH 24 PARGANAS\",700121:\"NORTH 24 PARGANAS\",743123:\"NORTH 24 PARGANAS\",700110:\"NORTH 24 PARGANAS\",700051:\"NORTH 24 PARGANAS\",700158:\"NORTH 24 PARGANAS\",700076:\"NORTH 24 PARGANAS\",743130:\"NORTH 24 PARGANAS\",700058:\"NORTH 24 PARGANAS\",743124:\"NORTH 24 PARGANAS\",743127:\"NORTH 24 PARGANAS\",743129:\"NORTH 24 PARGANAS\",743133:\"NORTH 24 PARGANAS\",700111:\"NORTH 24 PARGANAS\",743125:\"NORTH 24 PARGANAS\",743166:\"NORTH 24 PARGANAS\",743134:\"NORTH 24 PARGANAS\",743135:\"NORTH 24 PARGANAS\",700079:\"NORTH 24 PARGANAS\",700117:\"NORTH 24 PARGANAS\",700112:\"NORTH 24 PARGANAS\",743193:\"NORTH 24 PARGANAS\",743126:\"NORTH 24 PARGANAS\",700113:\"NORTH 24 PARGANAS\",743194:\"NORTH 24 PARGANAS\",743136:\"NORTH 24 PARGANAS\",743165:\"NORTH 24 PARGANAS\",700134:\"NORTH 24 PARGANAS\",700049:\"NORTH 24 PARGANAS\",700118:\"NORTH 24 PARGANAS\",700081:\"NORTH 24 PARGANAS\",700115:\"NORTH 24 PARGANAS\",700020:\"KOLKATA\",700044:\"KOLKATA\",700086:\"KOLKATA\",700094:\"KOLKATA\",700022:\"KOLKATA\",700019:\"KOLKATA\",700008:\"KOLKATA\",700018:\"KOLKATA\",700034:\"KOLKATA\",700025:\"KOLKATA\",700066:\"KOLKATA\",700032:\"KOLKATA\",700042:\"KOLKATA\",700061:\"KOLKATA\",700031:\"KOLKATA\",700029:\"KOLKATA\",700107:\"KOLKATA\",700047:\"KOLKATA\",700024:\"KOLKATA\",700075:\"KOLKATA\",700095:\"KOLKATA\",700078:\"KOLKATA\",700082:\"KOLKATA\",700033:\"KOLKATA\",700068:\"KOLKATA\",700053:\"KOLKATA\",700063:\"KOLKATA\",700026:\"KOLKATA\",700099:\"KOLKATA\",700045:\"KOLKATA\",700060:\"KOLKATA\",700040:\"KOLKATA\",700041:\"KOLKATA\",700092:\"KOLKATA\",700038:\"KOLKATA\",700043:\"KOLKATA\",743368:\"SOUTH 24 PARGANAS\",700138:\"SOUTH 24 PARGANAS\",743383:\"SOUTH 24 PARGANAS\",743329:\"SOUTH 24 PARGANAS\",700140:\"SOUTH 24 PARGANAS\",743347:\"SOUTH 24 PARGANAS\",743355:\"SOUTH 24 PARGANAS\",700104:\"SOUTH 24 PARGANAS\",743370:\"SOUTH 24 PARGANAS\",743337:\"SOUTH 24 PARGANAS\",743378:\"SOUTH 24 PARGANAS\",743312:\"SOUTH 24 PARGANAS\",743504:\"SOUTH 24 PARGANAS\",743336:\"SOUTH 24 PARGANAS\",743503:\"SOUTH 24 PARGANAS\",743377:\"SOUTH 24 PARGANAS\",700141:\"SOUTH 24 PARGANAS\",743374:\"SOUTH 24 PARGANAS\",743513:\"SOUTH 24 PARGANAS\",743349:\"SOUTH 24 PARGANAS\",743357:\"SOUTH 24 PARGANAS\",743372:\"SOUTH 24 PARGANAS\",743610:\"SOUTH 24 PARGANAS\",743399:\"SOUTH 24 PARGANAS\",743318:\"SOUTH 24 PARGANAS\",743354:\"SOUTH 24 PARGANAS\",743338:\"SOUTH 24 PARGANAS\",700145:\"SOUTH 24 PARGANAS\",743373:\"SOUTH 24 PARGANAS\",743502:\"SOUTH 24 PARGANAS\",743371:\"SOUTH 24 PARGANAS\",743375:\"SOUTH 24 PARGANAS\",700070:\"SOUTH 24 PARGANAS\",743363:\"SOUTH 24 PARGANAS\",743332:\"SOUTH 24 PARGANAS\",743387:\"SOUTH 24 PARGANAS\",700144:\"SOUTH 24 PARGANAS\",743611:\"SOUTH 24 PARGANAS\",700137:\"SOUTH 24 PARGANAS\",743395:\"SOUTH 24 PARGANAS\",743376:\"SOUTH 24 PARGANAS\",743348:\"SOUTH 24 PARGANAS\",743613:\"SOUTH 24 PARGANAS\",743609:\"SOUTH 24 PARGANAS\",743345:\"SOUTH 24 PARGANAS\",700103:\"SOUTH 24 PARGANAS\",700154:\"SOUTH 24 PARGANAS\",700096:\"SOUTH 24 PARGANAS\",743330:\"SOUTH 24 PARGANAS\",700149:\"SOUTH 24 PARGANAS\",743331:\"SOUTH 24 PARGANAS\",700151:\"SOUTH 24 PARGANAS\",700139:\"SOUTH 24 PARGANAS\",700152:\"SOUTH 24 PARGANAS\",743351:\"SOUTH 24 PARGANAS\",700084:\"SOUTH 24 PARGANAS\",743356:\"SOUTH 24 PARGANAS\",700150:\"SOUTH 24 PARGANAS\",700148:\"SOUTH 24 PARGANAS\",700146:\"SOUTH 24 PARGANAS\",700153:\"SOUTH 24 PARGANAS\",700093:\"SOUTH 24 PARGANAS\",700142:\"SOUTH 24 PARGANAS\",700143:\"SOUTH 24 PARGANAS\",700147:\"SOUTH 24 PARGANAS\",736156:\"COOCH BEHAR\",736157:\"COOCH BEHAR\",736122:\"JALPAIGURI\",736123:\"JALPAIGURI\",736121:\"JALPAIGURI\",736133:\"COOCH BEHAR\",736160:\"COOCH BEHAR\",736146:\"COOCH BEHAR\",736159:\"COOCH BEHAR\",735217:\"JALPAIGURI\",736145:\"COOCH BEHAR\",736131:\"COOCH BEHAR\",736206:\"JALPAIGURI\",735227:\"JALPAIGURI\",736134:\"COOCH BEHAR\",736135:\"COOCH BEHAR\",736168:\"COOCH BEHAR\",736158:\"COOCH BEHAR\",736101:\"COOCH BEHAR\",736172:\"COOCH BEHAR\",736169:\"COOCH BEHAR\",736207:\"JALPAIGURI\",736203:\"JALPAIGURI\",736208:\"JALPAIGURI\",736167:\"COOCH BEHAR\",736202:\"JALPAIGURI\",736165:\"COOCH BEHAR\",736201:\"JALPAIGURI\",736204:\"JALPAIGURI\",735214:\"JALPAIGURI\",735208:\"JALPAIGURI\",736170:\"COOCH BEHAR\",736171:\"COOCH BEHAR\",735215:\"JALPAIGURI\",736182:\"JALPAIGURI\",736176:\"COOCH BEHAR\",736179:\"COOCH BEHAR\",736205:\"JALPAIGURI\",735226:\"JALPAIGURI\",734301:\"DARJILING\",734427:\"DARJILING\",734314:\"DARJILING\",734203:\"DARJILING\",734105:\"DARJILING\",734429:\"DARJILING\",734421:\"DARJILING\",734014:\"DARJILING\",734224:\"DARJILING\",734008:\"DARJILING\",734209:\"EAST MIDNAPORE\",734104:\"DARJILING\",734201:\"DARJILING\",734312:\"DARJILING\",734221:\"DARJILING\",734423:\"DARJILING\",734424:\"DARJILING\",734007:\"DARJILING\",734101:\"DARJILING\",734425:\"DARJILING\",734102:\"DARJILING\",734426:\"DARJILING\",734315:\"DARJILING\",734003:\"DARJILING\",734434:\"Darjeeling\",734223:\"DARJILING\",734004:\"DARJILING\",734220:\"DARJILING\",734215:\"DARJILING\",734204:\"DARJILING\",734226:\"DARJILING\",734214:\"DARJILING\",734015:\"DARJILING\",734006:\"DARJILING\",734009:\"DARJILING\",734103:\"DARJILING\",734217:\"DARJILING\",734005:\"DARJILING\",734011:\"DARJILING\",734311:\"DARJILING\",734213:\"DARJILING\",734316:\"DARJILING\",734001:\"DARJILING\",734010:\"WEST MIDNAPORE\",734313:\"DARJILING\",734013:\"DARJILING\",734218:\"DARJILING\",734216:\"DARJILING\",734012:\"DARJILING\",734002:\"DARJILING\",734222:\"DARJILING\",733127:\"SOUTH DINAJPUR\",733129:\"NORTH DINAJPUR\",733215:\"NORTH DINAJPUR\",733208:\"NORTH DINAJPUR\",733202:\"NORTH DINAJPUR\",733132:\"SOUTH DINAJPUR\",733103:\"SOUTH DINAJPUR\",733201:\"NORTH DINAJPUR\",733141:\"SOUTH DINAJPUR\",733207:\"NORTH DINAJPUR\",733209:\"NORTH DINAJPUR\",733158:\"SOUTH DINAJPUR\",733121:\"SOUTH DINAJPUR\",733125:\"SOUTH DINAJPUR\",733210:\"NORTH DINAJPUR\",733134:\"NORTH DINAJPUR\",733128:\"NORTH DINAJPUR\",733101:\"SOUTH DINAJPUR\",733140:\"SOUTH DINAJPUR\",733102:\"SOUTH DINAJPUR\",733123:\"NORTH DINAJPUR\",733156:\"NORTH DINAJPUR\",733142:\"SOUTH DINAJPUR\",733133:\"SOUTH DINAJPUR\",733143:\"NORTH DINAJPUR\",733124:\"SOUTH DINAJPUR\",733145:\"SOUTH DINAJPUR\",733130:\"NORTH DINAJPUR\",733126:\"SOUTH DINAJPUR\",735101:\"JALPAIGURI\",735231:\"DARJILING\",735216:\"JALPAIGURI\",735224:\"JALPAIGURI\",735210:\"JALPAIGURI\",735207:\"JALPAIGURI\",735218:\"JALPAIGURI\",735202:\"JALPAIGURI\",735303:\"COOCH BEHAR\",735211:\"JALPAIGURI\",735220:\"JALPAIGURI\",735304:\"COOCH BEHAR\",735302:\"JALPAIGURI\",734501:\"JALPAIGURI\",735122:\"COOCH BEHAR\",735121:\"JALPAIGURI\",735305:\"JALPAIGURI\",735135:\"JALPAIGURI\",735233:\"JALPAIGURI\",735230:\"JALPAIGURI\",735206:\"JALPAIGURI\",735221:\"JALPAIGURI\",735133:\"JALPAIGURI\",735132:\"JALPAIGURI\",735301:\"JALPAIGURI\",735232:\"JALPAIGURI\",735203:\"JALPAIGURI\",735204:\"JALPAIGURI\",735205:\"JALPAIGURI\",735219:\"JALPAIGURI\",735225:\"JALPAIGURI\",735102:\"JALPAIGURI\",735209:\"JALPAIGURI\",735213:\"JALPAIGURI\",735228:\"JALPAIGURI\",735134:\"JALPAIGURI\",734503:\"DARJILING\",735212:\"JALPAIGURI\",735234:\"JALPAIGURI\",735223:\"JALPAIGURI\",735222:\"JALPAIGURI\",735229:\"JALPAIGURI\",732128:\"MALDA\",732122:\"MALDA\",732138:\"MALDA\",732124:\"MALDA\",732121:\"MALDA\",732216:\"MALDA\",732201:\"MALDA\",732139:\"MALDA\",732208:\"MALDA\",732204:\"MALDA\",732123:\"MALDA\",732142:\"MALDA\",732125:\"MALDA\",732205:\"MALDA\",732102:\"MALDA\",732210:\"MALDA\",732203:\"MALDA\",732206:\"MALDA\",732101:\"MALDA\",732207:\"MALDA\",732140:\"MALDA\",732209:\"MALDA\",732126:\"MALDA\",732127:\"MALDA\",732202:\"MALDA\",732103:\"MALDA\",732141:\"MALDA\",732144:\"MALDA\",732215:\"MALDA\",713335:\"BARDHAMAN\",713359:\"BARDHAMAN\",713381:\"BARDHAMAN\",713331:\"BARDHAMAN\",713212:\"BARDHAMAN\",713214:\"BARDHAMAN\",713203:\"BARDHAMAN\",713358:\"BARDHAMAN\",713321:\"BARDHAMAN\",713215:\"BARDHAMAN\",713360:\"BARDHAMAN\",713304:\"BARDHAMAN\",713301:\"BARDHAMAN\",713362:\"BARDHAMAN\",713322:\"BARDHAMAN\",713385:\"BARDHAMAN\",713323:\"BARDHAMAN\",713324:\"BARDHAMAN\",713334:\"BARDHAMAN\",713303:\"BARDHAMAN\",713204:\"BARDHAMAN\",713213:\"BARDHAMAN\",713337:\"BARDHAMAN\",713378:\"BARDHAMAN\",713371:\"BARDHAMAN\",713332:\"BARDHAMAN\",713325:\"BARDHAMAN\",713330:\"BARDHAMAN\",713339:\"BARDHAMAN\",713365:\"BARDHAMAN\",713326:\"BARDHAMAN\",713216:\"BARDHAMAN\",713302:\"BARDHAMAN\",713205:\"BARDHAMAN\",713376:\"BARDHAMAN\",713333:\"BARDHAMAN\",713206:\"BARDHAMAN\",713208:\"BARDHAMAN\",713202:\"BARDHAMAN\",713210:\"BARDHAMAN\",713201:\"BARDHAMAN\",713209:\"BARDHAMAN\",713211:\"BARDHAMAN\",713207:\"BARDHAMAN\",713363:\"BARDHAMAN\",713315:\"BARDHAMAN\",713336:\"BARDHAMAN\",713338:\"BARDHAMAN\",713340:\"BARDHAMAN\",713369:\"BARDHAMAN\",713373:\"BARDHAMAN\",713341:\"BARDHAMAN\",713342:\"BARDHAMAN\",713346:\"BARDHAMAN\",713343:\"BARDHAMAN\",713347:\"BARDHAMAN\",713344:\"BARDHAMAN\",713370:\"BARDHAMAN\",713217:\"BARDHAMAN\",713384:\"BARDHAMAN\",713372:\"BARDHAMAN\",713305:\"BARDHAMAN\",713386:\"BARDHAMAN\",713357:\"BARDHAMAN\",713361:\"BARDHAMAN\",722144:\"BANKURA\",722173:\"BANKURA\",722122:\"BANKURA\",722206:\"BANKURA\",722134:\"BANKURA\",722148:\"BANKURA\",722201:\"BANKURA\",722137:\"BANKURA\",722133:\"BANKURA\",722135:\"BANKURA\",722141:\"BANKURA\",722207:\"BANKURA\",722102:\"BANKURA\",722146:\"BANKURA\",722161:\"BANKURA\",722121:\"BANKURA\",722143:\"BANKURA\",722140:\"BANKURA\",722154:\"BANKURA\",722138:\"BANKURA\",722136:\"BANKURA\",722139:\"BANKURA\",722153:\"BANKURA\",722142:\"BANKURA\",722164:\"BANKURA\",722101:\"BANKURA\",722150:\"BANKURA\",722203:\"BANKURA\",722151:\"BANKURA\",722162:\"BANKURA\",722202:\"BANKURA\",722205:\"BANKURA\",722155:\"BANKURA\",722157:\"BANKURA\",722156:\"BANKURA\",722152:\"BANKURA\",722158:\"BANKURA\",722160:\"BANKURA\",722132:\"BANKURA\",722149:\"BANKURA\",722204:\"BANKURA\",722183:\"BANKURA\",722208:\"BANKURA\",722147:\"BANKURA\",713144:\"BARDHAMAN\",713166:\"BARDHAMAN\",713428:\"BARDHAMAN\",713148:\"BARDHAMAN\",713123:\"BARDHAMAN\",713512:\"BARDHAMAN\",713502:\"BARDHAMAN\",713101:\"BARDHAMAN\",713401:\"BARDHAMAN\",713515:\"BARDHAMAN\",713122:\"BARDHAMAN\",713150:\"BARDHAMAN\",713154:\"BARDHAMAN\",713141:\"BARDHAMAN\",713125:\"BARDHAMAN\",713129:\"BARDHAMAN\",713423:\"BARDHAMAN\",713514:\"BARDHAMAN\",713408:\"BARDHAMAN\",713121:\"BARDHAMAN\",713145:\"BARDHAMAN\",713405:\"BARDHAMAN\",713147:\"BARDHAMAN\",713130:\"BARDHAMAN\",713143:\"BARDHAMAN\",713152:\"BARDHAMAN\",713146:\"BARDHAMAN\",713409:\"BARDHAMAN\",713406:\"BARDHAMAN\",713104:\"BARDHAMAN\",713427:\"BARDHAMAN\",713407:\"BARDHAMAN\",713520:\"BARDHAMAN\",713131:\"BARDHAMAN\",713421:\"BARDHAMAN\",713426:\"BARDHAMAN\",713140:\"BARDHAMAN\",713132:\"BARDHAMAN\",713124:\"BARDHAMAN\",713422:\"BARDHAMAN\",713102:\"BARDHAMAN\",713126:\"BARDHAMAN\",713149:\"BARDHAMAN\",713153:\"BARDHAMAN\",713142:\"BARDHAMAN\",713404:\"BARDHAMAN\",713513:\"BARDHAMAN\",713103:\"BARDHAMAN\",713127:\"BARDHAMAN\",713403:\"BARDHAMAN\",713424:\"BARDHAMAN\",713151:\"BARDHAMAN\",713519:\"BARDHAMAN\",713128:\"BARDHAMAN\",713420:\"BARDHAMAN\",721467:\"WEST MIDNAPORE\",721401:\"EAST MIDNAPORE\",721430:\"EAST MIDNAPORE\",721424:\"WEST MIDNAPORE\",721457:\"WEST MIDNAPORE\",721439:\"EAST MIDNAPORE\",721420:\"WEST MIDNAPORE\",721441:\"EAST MIDNAPORE\",721454:\"EAST MIDNAPORE\",721436:\"WEST MIDNAPORE\",721427:\"EAST MIDNAPORE\",721444:\"EAST MIDNAPORE\",721426:\"WEST MIDNAPORE\",721456:\"EAST MIDNAPORE\",721445:\"WEST MIDNAPORE\",721422:\"EAST MIDNAPORE\",721446:\"EAST MIDNAPORE\",721405:\"EAST MIDNAPORE\",721432:\"EAST MIDNAPORE\",721437:\"WEST MIDNAPORE\",721442:\"EAST MIDNAPORE\",721451:\"WEST MIDNAPORE\",721423:\"EAST MIDNAPORE\",721440:\"EAST MIDNAPORE\",721449:\"EAST MIDNAPORE\",721443:\"EAST MIDNAPORE\",721458:\"EAST MIDNAPORE\",721450:\"EAST MIDNAPORE\",721448:\"EAST MIDNAPORE\",721429:\"EAST MIDNAPORE\",721431:\"EAST MIDNAPORE\",721434:\"EAST MIDNAPORE\",721452:\"EAST MIDNAPORE\",721425:\"EAST MIDNAPORE\",721433:\"EAST MIDNAPORE\",721455:\"EAST MIDNAPORE\",721438:\"EAST MIDNAPORE\",721435:\"WEST MIDNAPORE\",721403:\"EAST MIDNAPORE\",721402:\"EAST MIDNAPORE\",721453:\"EAST MIDNAPORE\",721463:\"EAST MIDNAPORE\",721428:\"EAST MIDNAPORE\",721447:\"EAST MIDNAPORE\",721404:\"WEST MIDNAPORE\",721406:\"EAST MIDNAPORE\",712121:\"HOOGHLY\",712512:\"HOOGHLY\",712148:\"HOOGHLY\",712414:\"HOOGHLY\",712305:\"HOOGHLY\",712301:\"HOOGHLY\",712149:\"HOOGHLY\",712601:\"HOOGHLY\",712413:\"HOOGHLY\",712146:\"HOOGHLY\",712616:\"HOOGHLY\",712611:\"HOOGHLY\",712122:\"HOOGHLY\",712602:\"HOOGHLY\",712501:\"HOOGHLY\",712416:\"HOOGHLY\",712303:\"HOOGHLY\",712134:\"HOOGHLY\",712135:\"HOOGHLY\",712123:\"HOOGHLY\",712515:\"HOOGHLY\",712502:\"HOOGHLY\",712617:\"HOOGHLY\",712412:\"HOOGHLY\",712615:\"HOOGHLY\",712302:\"HOOGHLY\",712613:\"HOOGHLY\",712415:\"HOOGHLY\",712103:\"HOOGHLY\",712417:\"HOOGHLY\",712503:\"HOOGHLY\",712105:\"HOOGHLY\",712152:\"HOOGHLY\",712504:\"HOOGHLY\",712147:\"HOOGHLY\",712402:\"HOOGHLY\",712101:\"HOOGHLY\",712102:\"HOOGHLY\",712308:\"HOOGHLY\",712614:\"HOOGHLY\",712513:\"HOOGHLY\",712406:\"HOOGHLY\",712612:\"HOOGHLY\",712104:\"HOOGHLY\",712514:\"HOOGHLY\",712401:\"HOOGHLY\",712701:\"HOOGHLY\",712410:\"HOOGHLY\",712409:\"HOOGHLY\",712221:\"HOOGHLY\",712706:\"HOOGHLY\",712223:\"HOOGHLY\",712408:\"HOOGHLY\",712404:\"HOOGHLY\",712405:\"HOOGHLY\",712203:\"HOOGHLY\",712222:\"HOOGHLY\",712407:\"HOOGHLY\",712304:\"HOOGHLY\",712250:\"HOOGHLY\",712248:\"HOOGHLY\",712246:\"HOOGHLY\",712306:\"HOOGHLY\",712403:\"HOOGHLY\",712232:\"HOOGHLY\",712124:\"HOOGHLY\",712136:\"HOOGHLY\",712310:\"HOOGHLY\",712702:\"HOOGHLY\",712204:\"HOOGHLY\",712235:\"HOOGHLY\",712311:\"HOOGHLY\",712137:\"HOOGHLY\",712233:\"HOOGHLY\",712138:\"HOOGHLY\",712201:\"HOOGHLY\",712234:\"HOOGHLY\",712202:\"HOOGHLY\",712245:\"HOOGHLY\",712139:\"HOOGHLY\",712249:\"HOOGHLY\",712125:\"HOOGHLY\",712258:\"HOOGHLY\",711205:\"HOWRAH\",711204:\"HOWRAH\",711303:\"HOWRAH\",711312:\"HOWRAH\",711315:\"HOWRAH\",711401:\"HOWRAH\",711227:\"HOWRAH\",711301:\"HOWRAH\",711302:\"HOWRAH\",711103:\"HOWRAH\",711106:\"HOWRAH\",711316:\"HOWRAH\",711226:\"HOWRAH\",711102:\"HOWRAH\",711110:\"HOWRAH\",711109:\"HOWRAH\",711113:\"HOWRAH\",711201:\"HOWRAH\",711405:\"HOWRAH\",711322:\"HOWRAH\",711304:\"HOWRAH\",711403:\"HOWRAH\",711404:\"HOWRAH\",711305:\"HOWRAH\",711411:\"HOWRAH\",711105:\"HOWRAH\",711202:\"HOWRAH\",711313:\"HOWRAH\",711203:\"HOWRAH\",711310:\"HOWRAH\",711307:\"HOWRAH\",711104:\"HOWRAH\",711114:\"HOWRAH\",711308:\"HOWRAH\",711412:\"HOWRAH\",711314:\"HOWRAH\",711410:\"HOWRAH\",711309:\"HOWRAH\",711413:\"HOWRAH\",711107:\"HOWRAH\",711112:\"HOWRAH\",711414:\"HOWRAH\",711101:\"HOWRAH\",711111:\"HOWRAH\",711115:\"HOWRAH\",711408:\"HOWRAH\",711306:\"HOWRAH\",711409:\"HOWRAH\",711108:\"HOWRAH\",711225:\"HOWRAH\",711317:\"HOWRAH\",711206:\"HOWRAH\",721102:\"WEST MIDNAPORE\",721222:\"WEST MIDNAPORE\",721121:\"WEST MIDNAPORE\",721501:\"WEST MIDNAPORE\",721517:\"WEST MIDNAPORE\",721150:\"WEST MIDNAPORE\",721156:\"WEST MIDNAPORE\",721504:\"WEST MIDNAPORE\",721253:\"WEST MIDNAPORE\",721140:\"WEST MIDNAPORE\",721506:\"WEST MIDNAPORE\",721232:\"WEST MIDNAPORE\",721133:\"WEST MIDNAPORE\",721131:\"WEST MIDNAPORE\",721260:\"WEST MIDNAPORE\",721513:\"WEST MIDNAPORE\",721157:\"WEST MIDNAPORE\",721505:\"WEST MIDNAPORE\",721201:\"WEST MIDNAPORE\",721122:\"WEST MIDNAPORE\",721143:\"WEST MIDNAPORE\",721128:\"WEST MIDNAPORE\",721144:\"WEST MIDNAPORE\",721124:\"WEST MIDNAPORE\",721126:\"WEST MIDNAPORE\",721515:\"WEST MIDNAPORE\",721149:\"WEST MIDNAPORE\",721166:\"WEST MIDNAPORE\",721155:\"WEST MIDNAPORE\",721135:\"WEST MIDNAPORE\",721301:\"WEST MIDNAPORE\",721212:\"WEST MIDNAPORE\",721503:\"WEST MIDNAPORE\",721125:\"WEST MIDNAPORE\",721516:\"WEST MIDNAPORE\",721514:\"WEST MIDNAPORE\",721160:\"WEST MIDNAPORE\",721136:\"WEST MIDNAPORE\",721211:\"WEST MIDNAPORE\",721129:\"WEST MIDNAPORE\",721147:\"WEST MIDNAPORE\",721101:\"WEST MIDNAPORE\",721127:\"WEST MIDNAPORE\",721146:\"WEST MIDNAPORE\",721145:\"WEST MIDNAPORE\",721242:\"WEST MIDNAPORE\",721304:\"WEST MIDNAPORE\",721305:\"WEST MIDNAPORE\",721306:\"WEST MIDNAPORE\",721507:\"WEST MIDNAPORE\",721159:\"WEST MIDNAPORE\",721303:\"WEST MIDNAPORE\",721302:\"WEST MIDNAPORE\",721161:\"WEST MIDNAPORE\",721132:\"WEST MIDNAPORE\",723145:\"PURULIYA\",723121:\"PURULIYA\",723133:\"PURULIYA\",723129:\"PURULIYA\",723130:\"PURULIYA\",723154:\"PURULIYA\",723152:\"PURULIYA\",723101:\"PURULIYA\",723127:\"PURULIYA\",723148:\"PURULIYA\",723126:\"PURULIYA\",723201:\"PURULIYA\",723212:\"PURULIYA\",723151:\"PURULIYA\",723147:\"PURULIYA\",723202:\"PURULIYA\",723215:\"PURULIYA\",723146:\"PURULIYA\",723128:\"PURULIYA\",723149:\"PURULIYA\",723131:\"PURULIYA\",723213:\"PURULIYA\",723103:\"PURULIYA\",723132:\"PURULIYA\",723153:\"PURULIYA\",723102:\"PURULIYA\",723143:\"PURULIYA\",723155:\"PURULIYA\",723104:\"PURULIYA\",723156:\"PURULIYA\",723142:\"PURULIYA\",721637:\"EAST MIDNAPORE\",721635:\"EAST MIDNAPORE\",721650:\"EAST MIDNAPORE\",721137:\"EAST MIDNAPORE\",721134:\"EAST MIDNAPORE\",721631:\"EAST MIDNAPORE\",721656:\"EAST MIDNAPORE\",721628:\"EAST MIDNAPORE\",721642:\"EAST MIDNAPORE\",721139:\"EAST MIDNAPORE\",721148:\"WEST MIDNAPORE\",721626:\"EAST MIDNAPORE\",721659:\"EAST MIDNAPORE\",721633:\"EAST MIDNAPORE\",721151:\"EAST MIDNAPORE\",721627:\"EAST MIDNAPORE\",721649:\"EAST MIDNAPORE\",721158:\"EAST MIDNAPORE\",721641:\"WEST MIDNAPORE\",721645:\"EAST MIDNAPORE\",721152:\"EAST MIDNAPORE\",721652:\"EAST MIDNAPORE\",721648:\"EAST MIDNAPORE\",721647:\"EAST MIDNAPORE\",721636:\"EAST MIDNAPORE\",721657:\"EAST MIDNAPORE\",721651:\"EAST MIDNAPORE\",721658:\"EAST MIDNAPORE\",721654:\"EAST MIDNAPORE\",721602:\"EAST MIDNAPORE\",721601:\"EAST MIDNAPORE\",721629:\"EAST MIDNAPORE\",721644:\"EAST MIDNAPORE\",721653:\"EAST MIDNAPORE\",721154:\"EAST MIDNAPORE\",721634:\"EAST MIDNAPORE\",721632:\"EAST MIDNAPORE\",721172:\"EAST MIDNAPORE\",721603:\"EAST MIDNAPORE\",721643:\"EAST MIDNAPORE\",721130:\"WEST MIDNAPORE\",721646:\"EAST MIDNAPORE\",721606:\"EAST MIDNAPORE\",721607:\"EAST MIDNAPORE\",721604:\"EAST MIDNAPORE\",721625:\"EAST MIDNAPORE\",721153:\"EAST MIDNAPORE\",721655:\"EAST MIDNAPORE\",721171:\"EAST MIDNAPORE\",721624:\"EAST MIDNAPORE\"};\r\n"
  },
  {
    "path": "js/login-signup.js",
    "content": "// code added for otp:\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    const requestOtpButton = document.getElementById('requestOtpButton');\r\n    const verifyOtpButton = document.getElementById('verifyOtpButton');\r\n  \r\n    // Request OTP\r\n    requestOtpButton.addEventListener('click', async (event) => {\r\n      event.preventDefault(); // Prevent form submission\r\n  \r\n      const email = document.getElementById('inputsin').value;\r\n  \r\n      if (!email) {\r\n        alert('Please enter your email');\r\n        return;\r\n      }\r\n  \r\n      try {\r\n        const response = await fetch('http://localhost:5000/send-otp', {\r\n          method: 'POST',\r\n          headers: {\r\n            'Content-Type': 'application/json',\r\n          },\r\n          body: JSON.stringify({ email }),\r\n        });\r\n  \r\n        const result = await response.json();\r\n        if (response.ok) {\r\n          alert('OTP sent to your email');\r\n          // Show OTP verification fields here\r\n        } else {\r\n          alert(result.msg || 'Failed to send OTP');\r\n        }\r\n      } catch (error) {\r\n        console.error('Error:', error);\r\n        alert('Server will be publically available soon to send otp. ThankYou for visiting.');\r\n      }\r\n    });\r\n  \r\n    // Verify OTP\r\n    verifyOtpButton.addEventListener('click', async (event) => {\r\n      event.preventDefault(); // Prevent form submission\r\n  \r\n      const email = document.getElementById('inputi').value;\r\n      const otp = document.getElementById('otpInput').value; // Add an OTP input field with id `otpInput`\r\n  \r\n      if (!email || !otp) {\r\n        alert('Please enter your email and OTP');\r\n        return;\r\n      }\r\n  \r\n      try {\r\n        const response = await fetch('http://localhost:5000/verify-otp', {\r\n          method: 'POST',\r\n          headers: {\r\n            'Content-Type': 'application/json',\r\n          },\r\n          body: JSON.stringify({ email, otp }),\r\n        });\r\n  \r\n        const result = await response.json();\r\n        if (response.ok) {\r\n          alert('OTP verified successfully');\r\n          // Proceed with the next steps (e.g., redirect to a different page)\r\n        } else {\r\n          alert(result.msg || 'Failed to verify OTP');\r\n        }\r\n      } catch (error) {\r\n        console.error('Error:', error);\r\n        alert('An error occurred while verifying OTP');\r\n      }\r\n    });\r\n  });\r\n  \r\n\r\n\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    const components = [\r\n        { id: 'footer-login', url: '../footer/footer.html' },\r\n        { id: 'header-login', url: '../header/header.html'}\r\n    ];\r\n\r\n    components.forEach(component => {\r\n        fetch(component.url)\r\n            .then(response => response.text())\r\n            .then(data => {\r\n                document.getElementById(component.id).innerHTML = data;\r\n            })\r\n            .catch(error => console.error(`Error loading ${component.url}:`, error));\r\n    });\r\n});\r\n\r\n\r\ndocument.getElementById('buttonA').addEventListener('click', function() {\r\n    document.getElementById('divA').style.display = 'none';\r\n    document.getElementById('divB').style.display = 'block';\r\n});\r\n\r\ndocument.getElementById('buttonB').addEventListener('click', function() {\r\n    document.getElementById('divB').style.display = 'none';\r\n    document.getElementById('divA').style.display = 'block';\r\n});\r\n\r\n\r\n\r\n// header search bar search function \r\nsetTimeout(() => {  \r\n    const inputField_h = document.getElementById('inputField_h');\r\n    const fetchButton_h = document.getElementById('fetchButton_h');\r\n  \r\n    function fetchValue_h() {\r\n        const value = inputField_h.value;\r\n        window.location.href = `../search/?query=${value}`;\r\n    }\r\n   \r\n    fetchButton_h.addEventListener('click', fetchValue_h);\r\n  \r\n    inputField_h.addEventListener('keydown', (event) => {\r\n        if (event.key === 'Enter') {\r\n            fetchValue_h();\r\n        }\r\n    });\r\n  \r\n  \r\n  }, 500);\r\n  \r\n  //end "
  },
  {
    "path": "js/notification-script.js",
    "content": "// for footer\r\n\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    const components = [\r\n        { id: 'footer-notification', url: '../footer/footer.html' },\r\n        { id: 'header-notification', url: '../header/header.html' },\r\n    ];\r\n\r\n    components.forEach(component => {\r\n        fetch(component.url)\r\n            .then(response => response.text())\r\n            .then(data => {\r\n                document.getElementById(component.id).innerHTML = data;\r\n            })\r\n            .catch(error => console.error(`Error loading ${component.url}:`, error));\r\n    });\r\n});\r\n\r\n// end footer\r\n"
  },
  {
    "path": "js/notifications.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\n    const components = [\n      { id: \"footer-orders\", url: \"../footer/footer.html\" },\n      { id: \"header-orders\", url: \"../header/header.html\" },\n    ];\n  \n    components.forEach((component) => {\n      fetch(component.url)\n        .then((response) => response.text())\n        .then((data) => {\n          document.getElementById(component.id).innerHTML = data;\n        })\n        .catch((error) =>\n          console.error(`Error loading ${component.url}:`, error)\n        );\n    });\n  });"
  },
  {
    "path": "js/orders.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n  const components = [\r\n    { id: \"footer-orders\", url: \"../footer/footer.html\" },\r\n    { id: \"header-orders\", url: \"../header/header.html\" },\r\n  ];\r\n\r\n  components.forEach((component) => {\r\n    fetch(component.url)\r\n      .then((response) => response.text())\r\n      .then((data) => {\r\n        document.getElementById(component.id).innerHTML = data;\r\n      })\r\n      .catch((error) =>\r\n        console.error(`Error loading ${component.url}:`, error)\r\n      );\r\n  });\r\n});\r\n"
  },
  {
    "path": "js/rewards.js",
    "content": "document.addEventListener('DOMContentLoaded', () => {\r\n    const components = [\r\n        { id: 'footer-rewards', url: '../footer/footer.html' },\r\n        { id: 'header-rewards', url: '../header/header.html'}\r\n    ];\r\n\r\n    components.forEach(component => {\r\n        fetch(component.url)\r\n            .then(response => response.text())\r\n            .then(data => {\r\n                document.getElementById(component.id).innerHTML = data;\r\n            })\r\n            .catch(error => console.error(`Error loading ${component.url}:`, error));\r\n    });\r\n});\r\n\r\n"
  },
  {
    "path": "js/topOffers.js",
    "content": "\n// footer and content page load \ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  const components = [\n    // { id: \"content-page\", url: \"pages/content-page.html\" },\n    { id: \"footer\", url: \"footer/footer.html\" },\n  ];\n\n  components.forEach((component) => {\n    fetch(component.url)\n      .then((response) => response.text())\n      .then((data) => {\n        document.getElementById(component.id).innerHTML = data;\n      })\n      .catch((error) =>\n        console.error(`Error loading ${component.url}:`, error)\n      );\n  });\n});\n// end -footer\n"
  },
  {
    "path": "login and sign up FlipKart/dist/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>Flipkart</title>\n  <link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css'>\n  <link rel=\"stylesheet\" href=\"./style.css\">\n</head>\n<body>\n  <!-- Add Logo and Name -->\n  <div class=\"header\">\n      <img src=\"./download.jpg\" alt=\"Logo\" class=\"logo\">\n      <h1>Flipkart</h1>\n  </div>\n  \n  <!-- Existing content -->\n  <div class=\"container\" id=\"container\">\n    <div class=\"form-container sign-up-container\">\n      <form action=\"#\">\n        <h1>Create Account</h1>\n        <div class=\"social-container\">\n          <a href=\"#\" class=\"social\"><i class=\"fab fa-facebook-f\"></i></a>\n          <a href=\"#\" class=\"social\"><i class=\"fab fa-google-plus-g\"></i></a>\n          <a href=\"#\" class=\"social\"><i class=\"fab fa-linkedin-in\"></i></a>\n        </div>\n        <span>or use your email for registration</span>\n        <input type=\"text\" placeholder=\"Name\" />\n        <input type=\"email\" placeholder=\"Email\" />\n        <input type=\"password\" placeholder=\"Password\" />\n        <button>Sign Up</button>\n      </form>\n    </div>\n    <div class=\"form-container sign-in-container\">\n      <form action=\"#\">\n        <h1>Sign in</h1>\n        <div class=\"social-container\">\n          <a href=\"#\" class=\"social\"><i class=\"fab fa-facebook-f\"></i></a>\n          <a href=\"#\" class=\"social\"><i class=\"fab fa-google-plus-g\"></i></a>\n          <a href=\"#\" class=\"social\"><i class=\"fab fa-linkedin-in\"></i></a>\n        </div>\n        <span>or use your account</span>\n        <input type=\"email\" placeholder=\"Email\" />\n        <input type=\"password\" placeholder=\"Password\" />\n        <a href=\"#\">Forgot your password?</a>\n        <button>Sign In</button>\n      </form>\n    </div>\n    <div class=\"overlay-container\">\n      <div class=\"overlay\">\n        <div class=\"overlay-panel overlay-left\">\n          <h1>Welcome Back!</h1>\n          <p>To keep connected with us please login with your personal info</p>\n          <button class=\"ghost\" id=\"signIn\">Sign In</button>\n        </div>\n        <div class=\"overlay-panel overlay-right\">\n          <h1>Hello, User!</h1>\n          <p>Enter your personal details and start journey with us</p>\n          <button class=\"ghost\" id=\"signUp\">Sign Up</button>\n        </div>\n      </div>\n    </div>\n  </div>\n  \n  <script src=\"./script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "login and sign up FlipKart/dist/script.js",
    "content": "const signUpButton = document.getElementById('signUp');\nconst signInButton = document.getElementById('signIn');\nconst container = document.getElementById('container');\n\nsignUpButton.addEventListener('click', () => {\n\tcontainer.classList.add(\"right-panel-active\");\n});\n\nsignInButton.addEventListener('click', () => {\n\tcontainer.classList.remove(\"right-panel-active\");\n});"
  },
  {
    "path": "login and sign up FlipKart/dist/style.css",
    "content": "@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');\n\n* {\n\tbox-sizing: border-box;\n}\n\nbody {\n\tbackground: #f6f5f7;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n\tflex-direction: column;\n\tfont-family: 'Montserrat', sans-serif;\n\theight: 100vh;\n\tmargin: -20px 0 50px;\n}\n.header {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    margin-bottom: 20px;\n}\n\n.logo {\n    height: 50px; /* Adjust the height as needed */\n    margin-right: 15px;\n}\n\n.header h1 {\n    font-family: 'Riona Sans', italic;\n    font-weight: bold;\n    font-size: 24px; /* Adjust the size as needed */\n    margin: 0;\n    color: blue; /* Matching the color theme */\n}\n\n\nh1 {\n\tfont-weight: bold;\n\tmargin: 0;\n}\n\nh2 {\n\ttext-align: center;\n}\n\np {\n\tfont-size: 14px;\n\tfont-weight: 100;\n\tline-height: 20px;\n\tletter-spacing: 0.5px;\n\tmargin: 20px 0 30px;\n}\n\nspan {\n\tfont-size: 12px;\n}\n\na {\n\tcolor: #333;\n\tfont-size: 14px;\n\ttext-decoration: none;\n\tmargin: 15px 0;\n}\n\nbutton {\n\tborder-radius: 20px;\n\tborder: 1px solid rgb(35, 110, 222);\n\tbackground-color: rgb(35, 110, 222);\n\tcolor: #FFFFFF;\n\tfont-size: 12px;\n\tfont-weight: bold;\n\tpadding: 12px 45px;\n\tletter-spacing: 1px;\n\ttext-transform: uppercase;\n\ttransition: transform 80ms ease-in;\n}\n\nbutton:active {\n\ttransform: scale(0.95);\n}\n\nbutton:focus {\n\toutline: none;\n}\n\nbutton.ghost {\n\tbackground-color: transparent;\n\tborder-color: #FFFFFF;\n}\n\nform {\n\tbackground-color: #FFFFFF;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tflex-direction: column;\n\tpadding: 0 50px;\n\theight: 100%;\n\ttext-align: center;\n}\n\ninput {\n\tbackground-color: #eee;\n\tborder: none;\n\tpadding: 12px 15px;\n\tmargin: 8px 0;\n\twidth: 100%;\n}\n\n.container {\n\tbackground-color: #fff;\n\tborder-radius: 10px;\n  \tbox-shadow: 0 14px 28px rgba(0,0,0,0.25), \n\t\t\t0 10px 10px rgba(0,0,0,0.22);\n\tposition: relative;\n\toverflow: hidden;\n\twidth: 768px;\n\tmax-width: 100%;\n\tmin-height: 480px;\n}\n\n.form-container {\n\tposition: absolute;\n\ttop: 0;\n\theight: 100%;\n\ttransition: all 0.6s ease-in-out;\n}\n\n.sign-in-container {\n\tleft: 0;\n\twidth: 50%;\n\tz-index: 2;\n}\n\n.container.right-panel-active .sign-in-container {\n\ttransform: translateX(100%);\n}\n\n.sign-up-container {\n\tleft: 0;\n\twidth: 50%;\n\topacity: 0;\n\tz-index: 1;\n}\n\n.container.right-panel-active .sign-up-container {\n\ttransform: translateX(100%);\n\topacity: 1;\n\tz-index: 5;\n\tanimation: show 0.6s;\n}\n\n@keyframes show {\n\t0%, 49.99% {\n\t\topacity: 0;\n\t\tz-index: 1;\n\t}\n\t\n\t50%, 100% {\n\t\topacity: 1;\n\t\tz-index: 5;\n\t}\n}\n\n.overlay-container {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 50%;\n\twidth: 50%;\n\theight: 100%;\n\toverflow: hidden;\n\ttransition: transform 0.6s ease-in-out;\n\tz-index: 100;\n}\n\n.container.right-panel-active .overlay-container{\n\ttransform: translateX(-100%);\n}\n\n.overlay {\n\tbackground:rgb(211, 211, 40);\n\tbackground: -webkit-linear-gradient(to right, rgb(229, 229, 61), rgb(232, 232, 82));\n\tbackground: linear-gradient(to right, rgb(239, 239, 84), rgb(231, 231, 97));\n\tbackground-repeat: no-repeat;\n\tbackground-size: cover;\n\tbackground-position: 0 0;\n\tcolor: black;\n\tposition: relative;\n\tleft: -100%;\n\theight: 100%;\n\twidth: 200%;\n  \ttransform: translateX(0);\n\ttransition: transform 0.6s ease-in-out;\n}\n\n.container.right-panel-active .overlay {\n  \ttransform: translateX(50%);\n}\n\n.overlay-panel {\n\tposition: absolute;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tflex-direction: column;\n\tpadding: 0 40px;\n\ttext-align: center;\n\ttop: 0;\n\theight: 100%;\n\twidth: 50%;\n\ttransform: translateX(0);\n\ttransition: transform 0.6s ease-in-out;\n}\n\n.overlay-left {\n\ttransform: translateX(-20%);\n}\n\n.container.right-panel-active .overlay-left {\n\ttransform: translateX(0);\n}\n\n.overlay-right {\n\tright: 0;\n\ttransform: translateX(0);\n}\n\n.container.right-panel-active .overlay-right {\n\ttransform: translateX(20%);\n}\n\n.social-container {\n\tmargin: 20px 0;\n}\n\n.social-container a {\n\tborder: 1px solid #DDDDDD;\n\tborder-radius: 50%;\n\tdisplay: inline-flex;\n\tjustify-content: center;\n\talign-items: center;\n\tmargin: 0 5px;\n\theight: 40px;\n\twidth: 40px;\n}"
  },
  {
    "path": "manifest.json",
    "content": "{\n    \"background_color\": \"#ffffff\",\n    \"dir\": \"ltr\",\n    \"display\": \"standalone\",\n    \"name\": \"Flipkart Clone\",\n    \"orientation\": \"any\",\n    \"scope\": \"/\",\n    \"short_name\": \"Flipkart Clone\",\n    \"start_url\": \"/\",\n    \"theme_color\": \"#ffffff\",\n    \"icons\": [\n      {\n        \"src\": \"flipkart_icon.png\",\n        \"type\": \"image/png\",\n        \"sizes\": \"384x384\"\n      },\n      {\n        \"src\": \"flipkart_icon.ico\",\n        \"type\": \"image/x-icon\"\n      }\n    ]\n}"
  },
  {
    "path": "offerpage/offerpage.css",
    "content": ".promo-wrapper {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: space-between;\n    padding: 20px;\n  }\n  \n  .deal {\n    background-color: #f9f9f9;\n    border: 1px solid #ddd;\n    border-radius: 8px;\n    margin: 10px;\n    width: calc(33.333% - 20px);\n    overflow: hidden;\n    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n    transition: transform 0.3s ease;\n    text-decoration: none; /* Remove underline from links */\n    color: inherit; /* Inherit text color */\n  }\n  \n  .deal:hover {\n    transform: scale(1.05);\n  }\n  \n  .deal img {\n    width: 100%;\n    height: 200px; \n    object-fit: contain;\n  }\n  \n  .info {\n    padding: 15px;\n    text-align: center;\n  }\n  \n  .info h3 {\n    font-size: 1.2em;\n    margin-bottom: 10px;\n  }\n  \n  .price {\n    font-size: 1.1em;\n    color: #333;\n    margin-bottom: 5px;\n  }\n  \n  .discount {\n    font-size: 1em;\n    color: green;\n  }\n  \n  #back-to-top {\n    display: none; /* Initially hidden */\n    position: fixed;\n    bottom: 30px;\n    right: 50%;\n    transform: translateX(50%);\n    padding: 10px 20px;\n    font-size: 16px;\n    background-color: #007bff;\n    color: white;\n    border: none;\n    border-radius: 5px;\n    cursor: pointer;\n    z-index: 1000;\n    transition: opacity 0.3s ease;\n  }\n  \n  #back-to-top.show {\n    display: block; \n  }\n  \n  @media (max-width: 768px) {\n    .deal {\n        width: calc(48% - 20px); \n    }\n  }\n\n  @media (max-width: 576px) {\n    .deal {\n        width: calc(50% - 10px); \n    }\n}\n\n  @media (max-width: 480px) {\n    .deal {\n        width: 100%; \n    }\n  }\n  /* Search Container */\n  .search-container {\n    margin: 20px;\n    text-align: center;\n  }\n  \n  #searchInput {\n    width: 80%;\n    padding: 15px;\n    font-size: 18px;\n    border: 2px solid #ddd;\n    border-radius: 30px;\n    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n    outline: none;\n    transition: all 0.3s ease;\n  }\n  \n  #searchInput:focus {\n    border-color: #007bff;\n    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);\n  }\n  \n  /* Promo Wrapper */\n  .promo-wrapper {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: space-around;\n    margin-top: 20px;\n  }\n  \n  /* Info */\n  .info {\n    margin-top: 10px;\n  }\n  \n  .info h3 {\n    font-size: 16px;\n    margin: 10px 0;\n    color: #333;\n  }\n  \n  .info .price {\n    font-size: 14px;\n    color: #007bff;\n  }\n  \n  .info .discount {\n    font-size: 12px;\n    color: #ff6f61;\n  }\n  \n  .item:not(.visible) {\n    display: none;\n  }\n  .deal-timer {\n    font-size: 14px;\n    color: #ff6f61;\n    margin-top: 10px;\n}\n\n"
  },
  {
    "path": "offerpage/offerpage.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", function() {\n    fetch('../footer/footer.html')\n        .then(response => response.text())\n        .then(data => {\n            document.getElementById('footer').innerHTML = data;\n        })\n        .catch(error => console.error('Error loading footer:', error));\n});\n\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n    const searchInput = document.getElementById('searchInput');\n    const promoWrapper = document.getElementById('promoWrapper');\n    const deals = promoWrapper.getElementsByClassName('deal');\n\n    searchInput.addEventListener('input', function() {\n        const filter = searchInput.value.toLowerCase();\n        for (let i = 0; i < deals.length; i++) {\n            const deal = deals[i];\n            const title = deal.querySelector('h3').textContent.toLowerCase();\n            if (title.includes(filter)) {\n                deal.classList.add('visible');\n                deal.style.display = \"\";\n            } else {\n                deal.classList.remove('visible');\n                deal.style.display = \"none\";\n            }\n        }\n    });\n});\n\n\ndocument.addEventListener('DOMContentLoaded', function() {\n    // Set the end time for the countdown timer (in milliseconds)\n    const endTime = new Date().getTime() + (24 * 60 * 60 * 1000); // Example: 24 hours from now\n\n    function updateCountdown() {\n        const now = new Date().getTime();\n        const distance = endTime - now;\n\n        if (distance <= 0) {\n            document.getElementById('countdown').innerHTML = \"EXPIRED\";\n            return;\n        }\n\n        const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));\n        const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));\n        const seconds = Math.floor((distance % (1000 * 60)) / 1000);\n\n        document.getElementById('countdown').innerHTML =\n            `${pad(hours)}:${pad(minutes)}:${pad(seconds)}`;\n    }\n\n    function pad(number) {\n        return number < 10 ? '0' + number : number;\n    }\n\n    // Update the countdown every second\n    const interval = setInterval(updateCountdown, 1000);\n});\n"
  },
  {
    "path": "offerpage/offerportal.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Offer Page</title>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"../css/login-signup.css\" />\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\">\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"../css/homeHeader.css\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"offerpage.css\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/index.css\">\n\t<link rel=\"stylesheet\" href=\"../css/footer.css\">\n\t<link rel=\"stylesheet\" href=\"../css/header.css\">\n\t<style>\n\t\t #progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n\t</style>\n</head>\n<body>\n\n\t\n<div id=\"progress-container\">\n\t<div id=\"progress-bar\"></div>\n  </div>\n\n  <script>\n\t\t\n\twindow.addEventListener('scroll', function() {\n\t\tconst winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n\t\tconst height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n\t\tconst scrolled = (winScroll / height) * 100;\n\t\tdocument.getElementById('progress-bar').style.width = scrolled + '%';\n\t});\n\t</script>\n  \n\n\t<!--Header start  -->\n\t<header id=\"homeHeader\">\n\t\t<nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\n\t\t\t<a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\n\t\t\t\t\twidth=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n\t\t\t</a>\n\t\t\t<div id=\"navbarNav_\">\n\t\t\t\t<ul class=\"navbar-nav\">\n\t\t\t\t\t<li class=\"nav-item navItem1\">\n\t\t\t\t\t\t<div id=\"searchbar\" class=\"navtab\">\n\t\t\t\t\t\t\t<span id=\"searchButton\" style=\"display: flex;align-items: center;\">\n\t\t\t\t\t\t\t\t<svg width=\"24\" height=\"24\" class=\"\" viewBox=\"0 0 24 24\" fill=\"none\"\n\t\t\t\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\">\n\t\t\t\t\t\t\t\t\t<title>Search Icon</title>\n\t\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\t\td=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\n\t\t\t\t\t\t\t\t\t\tstroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t\t<path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<span class=\"flex-grow\">\n\t\t\t\t\t\t\t\t<input id=\"input_data\" type=\"text\" placeholder=\"Search for Products, Brands and More\" />\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<div id=\"autocompleteResults\" class=\"autocom-box\" style=\"display: none;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\ttop: 67px;\n\t\t\t\t\t\t\tbackground: rgb(255, 255, 255);\n\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\tborder: rgba(255, 51, 255, 0.2);\">\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul class=\"navbar-nav ml-auto\"\n\t\t\t\t\tstyle=\"flex-wrap: nowrap;flex-direction: row;width: 40vw; justify-content: space-around\">\n\t\t\t\t\t<li class=\"nav-item navItem2 dropdown\" id=\"navbarDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd acnavdd\" href=\"#\" id=\"navbarDropdown\" role=\"button\"\n\t\t\t\t\t\t\tdata-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img src=\"../img/svg/profile-.svg\" alt=\"Profile\" />\n\t\t\t\t\t\t\t<span class=\"navname navname_ac\"> Account <i class=\"bi bi-chevron-down\"></i><i\n\t\t\t\t\t\t\t\t\tclass=\"bi bi-chevron-up\"></i></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0;\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../account/home_account.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tMy Profile </a>\n\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../account/login-signup.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tSign In</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"../plus/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/fkplus-+.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tFlipkart Plus Zone</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/orders.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/orders.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tOrders</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"wishlist/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/wishList.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tWishlist</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/rewards.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/rewards.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tRewards</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"the-gift-card-store/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"../img/svg/giftCard.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tGift Cards</a>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem3\">\n\t\t\t\t\t\t<a class=\"nav-link cartLogoandname\" href=\"viewcart/\">\n\t\t\t\t\t\t\t<img\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\" />\n\t\t\t\t\t\t\t<span class=\"navname2\">Cart</span><span id=\"cartItems\"></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem4\">\n\t\t\t\t\t\t<a class=\"nav-link\" href=\"sell-online/\">\n\t\t\t\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\n\t\t\t\t\t\t\t\talt=\"Become a Seller\" />\n\t\t\t\t\t\t\t<span class=\"navname3\">Become a Seller</span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem5 dropdown \" id=\"moreLinksDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\"\n\t\t\t\t\t\t\taria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img class=\"nav-dd\"\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\"\n\t\t\t\t\t\t\t\talt=\"More Links\" />\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"notifications/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/notificationPreferences.svg\"\n\t\t\t\t\t\t\t\t\talt=\"appointment-reminders--v2\" />Notification\n\t\t\t\t\t\t\t\tPreferences</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"helpcentre/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/helpcenter.svg\" alt=\"imgcc\">24x7 Customer Care</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\"\n\t\t\t\t\t\t\t\thref=\"https://advertising.flipkart.com/\"><img\n\t\t\t\t\t\t\t\t\twidth=\"30\" height=\"20\" src=\"img/svg/advertise.svg\" alt=\"Advertise\">Advertise</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"mobile-apps/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/downloadApp.svg\" alt=\"img3\">Download App</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t\n\t\t\t\t</ul>\n\t\t\t</div>\n\t\t</nav>\n\t</header>\n    <br>\n\n    <h1><center>Today's Top Deals</center></h1>\n\t\n\t<!--Header end -->\n    <div class=\"search-container\">\n        <input type=\"text\" id=\"searchInput\" placeholder=\"Search...\">\n    </div>\n\t\t\n    <div class=\"promo-wrapper\" id=\"promoWrapper\">\n        <a href=\"#\" class=\"deal\">\n            <img src=\"../img/earphon1.webp\" alt=\"Deal 1\">\n            <div class=\"info\">\n                <h3>Product Title 1</h3>\n                <p class=\"price\">$29.99</p>\n                <p class=\"discount\">40% off</p>\n\t\t\t\t<div class=\"deal-timer\">\n\t\t\t\t\t<p>Ends in: <span id=\"countdown\">00:00:00</span></p>\n\t\t\t\t</div>\n\t\t\t\t\n            </div>\n        </a>\n        <a href=\"#\" class=\"deal\">\n            <img src=\"../img/earphone2.jpg\" alt=\"Deal 2\">\n            <div class=\"info\">\n                <h3>Product Title 2</h3>\n                <p class=\"price\">$39.99</p>\n                <p class=\"discount\">50% off</p>\n            </div>\n        </a>\n        <a href=\"#\" class=\"deal\">\n            <img src=\"../img/earphon3.jpg\" alt=\"Deal 3\">\n            <div class=\"info\">\n                <h3>Product Title 3</h3>\n                <p class=\"price\">$49.99</p>\n                <p class=\"discount\">60% off</p>\n\t\t\t\t\n            </div>\n        </a>\n        <a href=\"#\" class=\"deal\">\n            <img src=\"../img/one.png\" alt=\"Deal 3\">\n            <div class=\"info\">\n                <h3>Product Title 3</h3>\n                <p class=\"price\">$49.99</p>\n                <p class=\"discount\">60% off</p>\n            </div>\n        </a>\n        <a href=\"#\" class=\"deal\">\n            <img src=\"../img/oneplusNord5G.jpg\" alt=\"Deal 3\">\n            <div class=\"info\">\n                <h3>Product Title 3</h3>\n                <p class=\"price\">$49.99</p>\n                <p class=\"discount\">60% off</p>\n            </div>\n        </a>\n        <a href=\"#\" class=\"deal\">\n            <img src=\"../img/phone-2.webp\" alt=\"Deal 3\">\n            <div class=\"info\">\n                <h3>Product Title 3</h3>\n                <p class=\"price\">$49.99</p>\n                <p class=\"discount\">60% off</p>\n            </div>\n        </a>\n        <!-- Add more deals here -->\n    </div>\n    <button id=\"back-to-top\" onclick=\"scrollToTop()\">Top</button>\n<!-- footer fetch to components : components/footer/footer.html -->\n<footer id=\"footer\" style=\"background-color: #292d33;\"></footer>\n\n</body>\n<script src = \"offerpage.js\"></script>\n<script src=\"../js/bootstrap.bundle.min.js\"></script>\n\t<script src=\"../js/homeHeader.js\"></script>\n\t<script src=\"../js/categoryjs.js\"></script>\n\t<script src=\"../js/searchForProducts.js\"></script>\n\t<script src=\"../js/index.js\"></script>\n\n</html>"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"flipkart_clone\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Flipkart Clone\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/arghadipmanna101/Flipkart_Clone.git\"\n  },\n  \"author\": \"\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/arghadipmanna101/Flipkart_Clone/issues\"\n  },\n  \"homepage\": \"https://github.com/arghadipmanna101/Flipkart_Clone#readme\",\n  \"dependencies\": {\n    \"all\": \"^0.0.0\",\n    \"nodemon\": \"^3.1.0\",\n    \"prettier\": \"^3.2.5\"\n  },\n  \"keywords\": []\n}\n"
  },
  {
    "path": "pages/Cancellation_and_Returns/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Payments</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <h1 id=\"order-cancellation-and-return-policy\">Order Cancellation and Return Policy</h1>\n        <h1 id=\"cancellation-policy\">Cancellation Policy</h1>\n        <p>The customer can choose to cancel an order any time before it&#39;s dispatched. The order cannot be canceled once it’s out for delivery. However, the customer may choose to reject it at the doorstep.</p>\n        <p>The time window for cancellation varies based on different categories and the order cannot be canceled once the specified time has passed.</p>\n        <p>In some cases, the customer may not be allowed to cancel the order for free, post the specified time and a cancellation fee will be charged. The details about the time window mentioned on the product page or order confirmation page will be considered final.</p>\n        <p>In case of any cancellation from the seller due to unforeseen circumstances, a full refund will be initiated for prepaid orders.</p>\n        <p>Flipkart reserves the right to accept the cancellation of any order. Flipkart also reserves the right to waive off or modify the time window or cancellation fee from time to time.</p>\n        <h1 id=\"returns-policy\">Returns Policy</h1>\n        <p>Returns is a scheme provided by respective sellers directly under this policy in terms of which the option of exchange, replacement and/ or refund is offered by the respective sellers to you. All products listed under a particular category may not have the same returns policy. For all products, the returns/replacement policy provided on the product page shall prevail over the general returns policy. Do refer the respective item&#39;s applicable return/replacement policy on the product page for any exceptions to this returns policy and the table below</p>\n        <p>The return policy is divided into three parts; Do read all sections carefully to understand the conditions and cases under which returns will be accepted.</p>\n        <p>Part 1 – Category, Return Window and Actions possible</p>\n        <table cellspacing=\"0\" cellpadding=\"0\">\n        <tbody>\n        <tr>\n        <td valign=\"middle\">\n        <p>Category</p>\n        </td>\n        <td valign=\"middle\">\n        <p>Returns Window, Actions Possible and Conditions (if any)</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Furniture</p>\n        <p>Home: Pet Supplies &amp; Rest of Home. (Except Home d&eacute;cor, Furnishing, Home Improvement Tools, Household Items)</p>\n        </td>\n        <td valign=\"middle\">\n        <p>10 days</p>\n        <p>Refund or Replacement<br /><br />For products requiring installation, returns shall be eligible only<br />when such products are installed by the brand&amp;#39;s authorized<br />personnel.<br /><br />In order to help you resolve issues with your product, we may<br />troubleshoot your product either through online tools, over the<br />phone, and/or through an in-person technical visit.</p>\n        <p><br />If a defect is determined within the Returns Window, a<br />refund/replacement of the same product will be provided at no<br />additional cost. If no defect is confirmed or the issue is not<br />diagnosed within 10 days of delivery or Installation wherever<br />applicable, you will be directed to a brand service centre to<br />resolve any subsequent issues.</p>\n        <p><br />In any case, only one replacement shall be provided</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Lifestyle: Watch, T-Shirt, Footwear, Sari, Short, Dress, Kid’s (Capri, Shorts &amp; Tops), Men’s (Ethnic Wear, Shirt, Formals, Jeans, Clothing Accessory), Women’s (Ethnic Wear, Fabric, Blouse, Jean, Skirt, Trousers, Bra), Bags, Raincoat, Sunglass, Belt, Frame, Backpack, Suitcase, Luggage, etc...</p>\n        <p>Lifestyle: Jewellery, Footwear Accessories, Travel Accessories, Watch Accessories, etc..</p>\n        <p>Lifestyle: WinterWear(sweatshirt, jacket, sweater, cardigan, kids_thermal, pullover, windcheater, track_suit, thermal,shawl, track_top, glove, muffler, scarf, blazer, uniform_sweatshirt, uniform_blazer, kids_muffler, kids_mitten, shrug, poncho,uniform_sweater, cap, waistcoat, leg_warmer, legging,elder_halloween_costume)</p>\n        </td>\n        <td valign=\"middle\">\n        <p>10 days</p>\n        <p>Refund, Replacement or Exchange</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Medicine (Allopathy &amp; Homeopathy)</p>\n        </td>\n        <td valign=\"middle\">\n        <p>2 days</p>\n        <p>Refund</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Home: Home Improvement Tools, Household Items, Home d&eacute;cor, Furnishing</p>\n        </td>\n        <td valign=\"middle\">\n        <p>7 days</p>\n        <p>Refund or replacement</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Books (All books)</p>\n        <p>Sports Equipments (Racquet, ball, support, gloves, bags etc.)</p>\n        <p>Exercise &amp; Fitness Equipments (Home Gym combos, dumbbell etc.)</p>\n        <p>Auto Accessories - Car and Bike accessories (helmets, car kit, media players etc.)</p>\n        </td>\n        <td valign=\"middle\">\n        <p>7 days Replacement only</p>\n        <p>Free replacement will be provided within 7 days if the product is delivered in defective/damaged condition or different from the ordered item.</p>\n        <p>Please keep the product intact, with original accessories, user manual and warranty cards in the original packaging at the time of returning the product.</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Toys (Remote controlled toys, Learning toys, Stuffed toys etc.)</p>\n        <p>Stationary (Pens, Diary notebooks, Calculators etc.)</p>\n        <p>Musical Instruments (Microphones &amp; Accessories, Guitars, Violins etc.)</p>\n        </td>\n        <td valign=\"middle\">\n        <p>7 days Replacement only</p>\n        <p>Free replacement will be provided within 7 days if the product is delivered in defective/damaged condition or different from the ordered item.</p>\n        <p>Please keep the product intact, with original accessories, user manual and warranty cards in the original packaging at the time of returning the product.</p>\n        <p>Non-Returnable - All Wind Instruments (Harmonicas, Flutes etc.) This item is non-returnable due to hygiene and personal wellness.In case these products are delivered in damaged/defective condition or different from the ordered item, we will provide a free replacement.</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>All Mobiles (except Apple, Google,&nbsp;Motorola, Infinix, Redmi, MI, Vivo, POCO, Realme, Samsung phones),</p>\n        <p>Electronics - (except Apple / Beats, Google, Realme, Samsung, JBL&amp; Infinity, Epson, HP, Dell, Canon, MI, Dizo Products (Tablets, Laptops, Smart Watches)</p>\n        <p>All Small Home Appliances (Except Chimney, Water Purifier, Fan, Geyser)</p>\n        <p>Furniture - Hammock Swing &amp; Stool</p>\n        </td>\n        <td valign=\"middle\">\n        <p>7 days</p>\n        <p>Replacement only</p>\n        <p>In order to help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.</p>\n        <p>If a defect is determined within the Returns Window, a replacement of the same model will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 7 days of delivery, you will be directed to a brand service center to resolve any subsequent issues.</p>\n        <p>In any case, only one replacement shall be provided.</p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p><span style=\"font-weight: 400;\">Mobile – Apple, Google, Motorola, Infinix, Redmi, MI, Vivo, POCO, Realme, Samsung phones</span></p>\n        <p><span style=\"font-weight: 400;\">Electronics - Acer, AMKETTE, Apple/Beats, Bose, Brother, Canon, Compaq, CREATIVE, DELL, DIZO, Epson, Google, GoPro, GOVO, HP, INFINITY, JBL, Lenovo, LG, Lifelong, Mi, MOTOROLA, Nothing, OnePlus, OPPO, Panasonic, PHILIPS, Realme, REDMI, SAMSUNG, Sansui, Seagate, Sonos, SONY, Thomson, Total, Xiaomi products (Tablets, Laptops, Smart Watches, Headphones, Speakers)</span></p>\n        <p><span style=\"font-weight: 400;\">Large –Vu, LG, Godrej, Haier, IFB, Hindware , Glen, Faber, AGARO, Voltas, BOSCH, Pureit, PHILIPS, HAVELLS, Elica, BAJAJ, Kenstar, Eureka Forbes Aquasure from Aquaguard, Aquaguard, LIVPURE, EUREKA FORBES, Crompton, Hindware Snowcrest, Hindware Calisto, Eurodomo, Symphony, Hindware Atlantic, ONIDA, CANDY, Llyod, Voltas Beko, realme, Daikin, CARRIER, Mi, Midea, Whirlpool, Blue Star, Panasonic, Morphy Richards, iFFALCON, Hisense, TCL, TOSHIBA, Hitachi, Rockwell, KENT</span></p>\n        </td>\n        <td>\n        <p><span style=\"font-weight: 400;\">7 Days Service Center Replacement/Repair only</span></p>\n        <p><span style=\"font-weight: 400;\">Brand assistance for device related issues is subject to brand warranty guidelines and service policies. Please reach out to the nearest brand authorized service centre for more detail</span></p>\n        <p><span style=\"font-weight: 400;\">Please note that Flipkart is an online marketplace and the final decision on replacement of defective device rests with the seller/brand</span></p>\n        <p><span style=\"font-weight: 400;\">For Samsung, in case of DOA approved by brand, share the certificate of approval to the Flipkart customer support team to process your complaint</span></p>\n        <p><span style=\"font-weight: 400;\">Authorized Service partner Locator for Brands: <a href=\"https://www.flipkart.com/pages/service-partner-tnc\"><span style=\"font-weight: 400;\">Click here</span></a></span></p>\n        <p><span style=\"font-weight: 400;\">For any other issues with the product, you may contact Flipkart - Flipkart’s 24×7 Customer Care</span></p>\n        <p><span style=\"font-weight: 400;\">&nbsp;</span></p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p><span style=\"font-weight: 400;\">Furniture, Large appliances ( Except Vu, LG, Godrej,Haier, IFB, Hindware , Glen, Faber, AGARO, Voltas, BOSCH, Vu, LG, Godrej, Haier, IFB, Hindware, Glen, Faber, AGARO, Voltas, BOSCH, Pureit, PHILIPS, HAVELLS, Elica, BAJAJ, Kenstar, Eureka Forbes Aquasure from Aquaguard, Aquaguard, LIVPURE, EUREKA FORBES, Crompton, Hindware Snowcrest, Hindware Calisto, Eurodomo, Symphony, Hindware Atlantic, ONIDA, CANDY, Llyod, Voltas Beko, realme, Daikin, CARRIER, Mi, Midea, Whirlpool, Blue Star, Panasonic, Morphy Richards, iFFALCON, Hisense, TCL,TOSHIBA, Hitachi, Rockwell, KENT )</span></p>\n        <p><span style=\"font-weight: 400;\">Rest of Small Home Appliances - Chimney, Water Purifier, Fan, Geyser only</span></p>\n        </td>\n        <td>\n        <p><span style=\"font-weight: 400;\">10 days</span></p>\n        <p><span style=\"font-weight: 400;\">Replacement only</span></p>\n        <p><span style=\"font-weight: 400;\">For products requiring installation, returns shall be eligible only when such products are installed by the brand&#39;s authorized personnel.</span></p>\n        <p><span style=\"font-weight: 400;\">In order to help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.</span></p>\n        <p><span style=\"font-weight: 400;\">If a defect is determined within the Returns Window, a replacement of the same model will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 10 days of delivery or Installation wherever applicable, you will be directed to a brand service centre to resolve any subsequent issues.</span></p>\n        <p><span style=\"font-weight: 400;\">In any case, only one replacement shall be provided.</span></p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>No Questions Asked</p>\n        </td>\n        <td valign=\"middle\">\n        <p>10 days</p>\n        <p>Refund or replacement</p>\n        <p>This policy enables easy product return requests for customers through the Platform, subject to product validations at the time of pick-up and fraud prevention mechanisms.</p>\n        <p>This policy shall be applicable only if the product was bought when this policy was applicable to the product. If not, the policy provided <a href=\"https://www.flipkart.com/pages/returnpolicy\">here</a> shall apply to the order. It is clarified that a customer may only be able to seek a one-time replacement under this Policy, subject to the other terms provided herein.</p>\n        <p>Exceptions to this policy: Following claims will be covered under the policy provided <a href=\"https://www.flipkart.com/pages/returnpolicy\">here</a> and through corresponding validation processes</p>\n        <p>a. product undelivered</p>\n        <p>b. product/accessories missing</p>\n        <p>c. wrong product/accessories delivered</p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>No Returns categories</p>\n        </td>\n        <td valign=\"middle\">\n        <p>Some products in the above categories are not returnable due to their nature or other reasons. For all products, the policy on the product page shall prevail.</p>\n        <p>You can view the complete list of non-returnable products <a href=\"http://www.flipkart.com/non-returnables\">here.</a></p>\n        </td>\n        </tr>\n        <tr>\n        <td valign=\"middle\">\n        <p>Refurbished</p>\n        </td>\n        <td valign=\"middle\">\n        <p>7 days</p>\n        <p>Replacement only</p>\n        <p>To help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.</p>\n        <p>If a defect is determined within the Returns Window, a replacement of the same model will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 7 days of delivery, you will be directed to the warranty partner for resolving any subsequent issues.</p>\n        </td>\n        </tr>\n        </tbody>\n        </table>\n        <p>Part 2 - Returns Pick-Up and Processing In case of returns where you would like item(s) to be picked up from a different address, the address can only be changed if pick-up service is available at the new address During pick-up, your product will be checked for the following conditions:</p>\n        <table>\n        <thead>\n        <tr>\n        <td>\n        <p>Category</p>\n        </td>\n        <td>\n        <p>Conditions</p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p>Correct Product</p>\n        </td>\n        <td>\n        <p>IMEI/ name/ image/ brand/ serial number/ article number/ bar code should match and MRP tag should be undetached and clearly visible.</p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p>Complete Product</p>\n        </td>\n        <td>\n        <p>All in-the-box accessories (like remote control, starter kits, instruction manuals, chargers, headphones, etc.), freebies and combos (if any) should be present.</p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p>Unused Product</p>\n        </td>\n        <td>\n        <p>The product should be unused, unwashed, unsoiled, without any stains and with non-tampered quality check seals/return tags/warranty seals (wherever applicable). Before returning a Mobile/ Laptop/ Tablet, the device should be formatted and Screen Lock (Pin, Pattern or Fingerprint) must be disabled. iCloud lock must be disabled for Apple devices.</p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p>Undamaged Product</p>\n        </td>\n        <td>\n        <p>The product (including SIM trays/ charging port/ headphone port, back-panel etc.) should be undamaged and without any scratches, dents, tears or holes.</p>\n        </td>\n        </tr>\n        <tr>\n        <td>\n        <p>Undamaged Packaging</p>\n        </td>\n        <td>\n        <p>The product&rsquo;s original packaging/ box should be undamaged.</p>\n        </td>\n        </tr>\n        </thead>\n        </table>\n\n        <p>The field executive will refuse to accept the return if any of the above conditions are not met.</p>\n        <p>For any products for which a refund is to be given, the refund will be processed once the returned product has been received by the seller.</p>\n        <p>Part 3 - General Rules for a successful Return</p>\n        <ol>\n        <li>In certain cases where the seller is unable to process a replacement for any reason whatsoever, a refund will be given.</li>\n        <li>In cases where a product accessory is found missing/damaged/defective, the seller may either process a replacement of the particular accessory or issue an eGV for an amount equivalent to the price of the accessory, at the seller’s discretion.</li>\n        <li>During open box deliveries, while accepting your order, if you received a different or a damaged product, you will be given a refund (on the spot refunds for cash-on-delivery orders). Once you have accepted an open box delivery, no return request will be processed, except for manufacturing defects. In such cases, these category-specific replacement/return general conditions will be applicable. <a href=\"https://www.flipkart.com/pages/open-box-delivery-tnc\">Click here</a> to know more about Open Box Delivery</li>\n        <li>For products where installation is provided by Flipkart&#39;s service partners, do not open the product packaging by yourself. Flipkart authorised personnel shall help in unboxing and installation of the product.</li>\n        <li>For Furniture, any product-related issues will be checked by authorised service personnel (free of cost) and attempted to be resolved by replacing the faulty/ defective part of the product. Full replacement will be provided only in cases where the service personnel opines that replacing the faulty/defective part will not resolve the issue.&#39;</li>\n        </ol>\n        <p>Flipkart holds the right to restrict the number of returns created per order unit, post the evaluation of the product/order defect is undertaken by Flipkart’s authorized representative.</p>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"./script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Cancellation_and_Returns/script.js",
    "content": "// to apply styling to the first paragraph that is immediately followed by a ul element\n\ndocument.querySelectorAll('p + ul').forEach(ul => {\n    ul.previousElementSibling.classList.add('highlight');\n});"
  },
  {
    "path": "pages/Cancellation_and_Returns/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    padding: 2rem 5%;\n    margin-top: 4rem;\n}\n\nmain > div > a::after\n{\n    content: \" | \";\n}\n\nmain > div > a:last-of-type::after\n{\n    content: \"\";\n}\n\np\n{\n    margin: 1rem 0rem;\n}\n\np > strong\n{\n    font-weight: 700;\n}\n\nul\n{\n    padding: 1rem;\n}\n\nli\n{\n    margin: 1rem 0rem;\n}\n\n.highlight\n{\n    color: #2874F0;\n    font-weight: 700;\n    font-style: italic;\n}\n\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\n#order-cancellation-and-return-policy\n{\n    margin: 3rem auto;\n    text-decoration: underline;\n}\n\nh1\n{\n    margin: 2rem 0rem;\n}\n\nh2\n{\n    margin: 2rem 0rem;\n}\n\ntable, tr, th, td \n{\n    border: 1px solid black;\n    border-collapse: collapse;\n}\n\ntd, th \n{\n    padding: 10px;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/Corporate_Information/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Corporate Information</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <img src=\"./corp-info_image.jpeg\" alt=\"corporate-building-image\">\n        <div>\n            <h1>Corporate Information</h1>\n            <ul>\n                <li>\n                    <a href=\"#\">Corporate Social Responsibility Policy</a>\n                </li>\n                <li>\n                    <a href=\"#\">Annual Returns</a>\n                </li>\n                <li>\n                    <a href=\"#\">Director's Information</a>\n                </li>\n            </ul>\n        </div>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n</body>\n</html>"
  },
  {
    "path": "pages/Corporate_Information/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    margin-top: 4rem;\n}\nmain > *\n{\n    width: 50%;\n}\nmain > div\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    /* margin-left: 5rem; */\n}\nh1\n{\n    font-weight: 700;\n    margin-top: -10rem;\n    margin-bottom: 3rem;\n    border-left: 1rem solid #346f8d;\n    padding: 30px 10px;\n}\nli\n{\n    list-style-type: none;\n    font-size: 1.5rem;\n    margin-left: 2rem;\n    margin-bottom: 1rem;\n}\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/EPR/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title> EPR Compilance - Flipkart Clone</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n\n    <style>\n        #progress-container {\n            position: fixed;\n            top: 0px;\n            left: 0;\n            width: 100%;\n            height: 15px;\n            z-index: 99990;\n            /* background: #f3f3f3; */\n        }\n\n        #progress-bar {\n            height: 53%;\n            width: 0;\n            background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n            box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n            transition: width 0.09s ease-in-out;\n            border-radius: 10px;\n        }\n    </style>\n</head>\n\n<body>\n\n\n    <div id=\"progress-container\">\n        <div id=\"progress-bar\"></div>\n    </div>\n\n    <script>\n\n        window.addEventListener('scroll', function () {\n            const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n            const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n            const scrolled = (winScroll / height) * 100;\n            document.getElementById('progress-bar').style.width = scrolled + '%';\n        });\n    </script>\n\n    <header>\n        <h1>EPR Compilance</h1>\n    </header>\n\n    <main>\n\n        <section>\n            <br>\n\n            <div style=\"font-weight: 600;\">FLIPKART INDIA PRIVATE LIMITED E-WASTE RECYCLING POLICY</div>\n\n            <br>\n\n            <div>The Information and Communication revolution has brought enormous changes in the way we organize our lives, our\n            economies, industries and institutions. These spectacular developments in modern times have undoubtedly enhanced the\n            quality of our lives, but at the same time, have led to manifold problems including the problem of massive amount of\n            hazardous waste and other waste generated from electric products. Such waste poses a serious threat to human health and\n            environment. The issue of proper management of such hazardous E-Waste is therefore critical to the protection of\n            livelihood, health and environment.</div>\n\n            <br>\n\n            <div>To deal with this ever-rising problem of E-Waste, the government of India, through its Ministry of Environment and\n            forest, formulated the E-Waste (Management and Handling) Rules in 2016.</div>\n            <br>\n\n            <div style=\"font-weight: 600; font-size: 13px;\">FLIPKART INDIA PRIVATE LIMITED STANDS COMMITTED TO IMPLEMENT THE E-WASTE UNDER E-WASTE RULES.\n            </div>\n            <br>\n\n            <div style=\"font-weight: 600; font-size: 14px;\">The Basel Convention defines wastes as-</div>\n            <br>\n\n            <div>“Substances or objects, which are disposed off or are intended to be disposed off, or are required to be disposed off by\n            the provisions of national laws”.</div>\n            <br>\n\n            <div style=\"font-weight: 600; font-size: 14px;\">E waste has been defined as-</div>\n            <br>\n\n            <div>“Waste electrical and electronic equipment, whole or in part or rejects from their manufacturing and repair process,\n            which are intended to be discarded.”</div>\n            <br>\n\n            <div>Whereas, Electrical and electronic equipment has been defined as:-</div>\n            <br>\n\n            <i>\"Equipment which is dependent on electrical currents or electro-magnetic fields to fully functional\".</i>\n            <br>\n\n            <p>Like hazardous waste, the problem of e-waste has become an immediate and long-term concern as its unregulated\n            accumulation and recycling can lead to major environmental problems endangering human health. This calls for an urgent\n            need for E-Waste Management so as to preserve the ecological balance and reduce landfills. Recycling end-of-life\n            products is vital if we are to save resources and minimize waste. In this regard, we at Flipkart India private limited\n            have tied up with Reteck Envirotech Pvt. Ltd, one of the world’s largest authorized E-Waste recycler, for facilitating\n            our Organization and our customers to enable them to dispose E-Waste products after its end-of-life.</p>\n\n            <p style=\"font-weight: 600; font-size: 13px;\">AS AN ENVIRONMENTALLY CONSCIOUS ORGANISATION, FLIPKART INDIA PRIVATE LIMITED HAS INITIATED VARIOUS ACTIVITIES TO PROMOTE\n            E-WASTE RECYCLING.</p>\n\n            <p>100% recycling and disposal through authorized recycler to avoid the adverse effects of E-Waste.</p>\n\n            <i style=\"font-weight: 600;\">ADVERSE EFFECTS OF EWASTE</i>\n\n            <ul>\n                <li>Toxic material present in e-waste get mixed with earth, air, water, etc and causes health issues.</li>\n                <li>Oil & Gases which is present in e-waste like compressor and CRT causes environment pollution.</li>\n                <li>Batteries contains highly hazardous elements.</li>\n                <li>Burning of rubber & Plastic in open area causes air pollution.</li>\n                <li>Bad impact on human being, animal, and other animates.</li>\n                <li>Wastage of natural resources.</li>\n            </ul>\n\n            <br>\n\n            <i style=\"font-weight: 600;\">HOW CAN YOU CONTRIBUTE TO A GREENER ENVIRONMENT?</i>\n\n            <ul>\n                <li>All electrical and electronic products are required to be handed over only to the authorised recycler for recycling.</li>\n                <li>The E-Waste product should be handed over only to an authorised recycler for disposal.\n                </li>\n                <li>Keep the e-waste in isolated area, after it becomes non-functional/un-repairable so as to prevent its accidental\n                breakage.\n</li>\n                <li>Please call on toll free number <strong>1800-123-8783</strong> for collection of E-Waste.\n</li>\n            </ul>\n\n            <br>\n\n            <h4>Why Recycle.</h4>\n            \n            <h4>Conserve Resources</h4>\n\n            <p>Creation requires raw resources. But when we recycle, extant material is put to use. Recycling saves this extraction of\n            the fresh raw resources, and revives the existing ones that are no longer of use. This way there is lesser exploitation\n            and more conservation of natural resources.</p>\n\n            <h4>Save Energy</h4>\n\n            <p>Each time we recycle a product, it requires lesser energy than producing a new one from the scratch. The considerable\n            difference in manufacturing time is a result of skipping the usual process of extraction of raw material, its\n            transportation, refining etc., which is way more than having a market ready product that to have a raw material ready\n            for production.</p>\n\n            <h4>Prevent Pollution </h4>\n\n            <p>Production and disposal of products require a great deal of extraction, refining, processing and dumping of material,\n            which have larger impact on the environment. By recycling, we cut down the pollution of air, water and land, thus\n            reducing the greenhouse gas emission and avoiding any contribution to global warming.</p>\n\n            <h4>Don'ts for E- Waste</h4>\n\n            <ul>\n                <li>The product should not be opened/dismantled by the User himself/herself, but only by authorized service personnel.</li>\n                <li>The product is not meant for re-sale to any unauthorized agencies/scrap dealer</li>\n                <li>The product is not meant for mixing into household waste stream.</li>\n                <li>Do not keep any replaced spare part(s) from the product in exposed area</li>\n            </ul>\n\n            <br>\n\n            <i style=\"font-weight: bold;\">Terms and Conditions</i>\n            <br><br>\n\n            <ul>\n                <li>This initiative is a step towards our commitment for a cleaner and greener earth.</li>\n                <li>This move is one of the ways to show that we are concerned and thus we request all our customers to join this movement\n                to make it successful by way of contributing their end-of-life product.</li>\n                <li>For more information about e-waste please visit: [www.reteck.co][]</li>\n                <li>For any assistance/guidance for disposal of e-waste please call on toll free number: 1800-212-8783 . .</li>\n                <li>Products offered for recycling are not eligible for exchange offers.</li>\n                <li>The service is available as per conditions applicable in the respective area by recyclers.\n</li>\n                \n            </ul>\n\n\n        </section>\n\n    </main>\n\n    <footer>\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "pages/EPR/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nmain {\n    max-width: 800px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\nsection {\n    margin-bottom: 5rem;\n}\n\nh2 {\n    color: #2874f0;\n}\n\nh3 {\n    color: #2b2b2b;\n    margin-bottom: 0.5rem;\n}\n\nul {\n    list-style-type: disc;\n    margin: 0;\n    padding-left: 1.5rem;\n}\n\nfooter {\n    text-align: center;\n    padding: 1rem 0;\n    background-color: #2874f0;\n    color: white;\n    position: fixed;\n    width: 100%;\n    height: 1.5rem;\n    bottom: 0cqmax;\n}\n\na {\n    color: #2874f0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}"
  },
  {
    "path": "pages/EPR_Page/epr.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    background-color: #f4f4f4;\n    margin: 0;\n    padding: 0;\n}\n\n.container {\n    max-width: 500px;\n    margin: 20px auto;\n    padding: 20px;\n    background-color: #fff;\n    border-radius: 8px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\n\ntr,\ntd {\n    border: 1px solid black;\n}\n\n\n.faq,\n.privacy-policy,\n.contact-us {\n    margin: 20px 0;\n}\n\n\np {\n    font-size: 14px;\n    color: #666;\n    line-height: 1.6;\n}\n\na {\n    color: #0066c0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}"
  },
  {
    "path": "pages/EPR_Page/epr.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Safe and Secure Shopping</title>\n    <link rel=\"stylesheet\" href=\"epr.css\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/bootstrap.min.css\">\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"../../css/homeHeader.css\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/index.css\">\n\t<link rel=\"stylesheet\" href=\"../../css/footer.css\">\n\t\t<!-- <link href=\"../../css/contactus.css\" rel=\"stylesheet\"> -->\n     <style>\n       #progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n\n     </style>\n</head>\n<body>\n  \n\n<div id=\"progress-container\">\n  <div id=\"progress-bar\"></div>\n</div>\n\n<script>\n      \n  window.addEventListener('scroll', function() {\n      const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n      const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n      const scrolled = (winScroll / height) * 100;\n      document.getElementById('progress-bar').style.width = scrolled + '%';\n  });\n  </script>\n\n\n    <header id=\"homeHeader\">\n\t\t<nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\n\t\t\t<a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\n\t\t\t\t\twidth=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n\t\t\t</a>\n\t\t\t<div id=\"navbarNav_\">\n\t\t\t\t<ul class=\"navbar-nav\">\n\t\t\t\t\t<li class=\"nav-item navItem1\">\n\t\t\t\t\t\t<div id=\"searchbar\" class=\"navtab\" style=\"background-color: #F0F5FF; width:43vw; margin-left:-1vw\">\n\t\t\t\t\t\t\t<span id=\"searchButton\" style=\"display: flex;align-items: center; justify-content:space-between;margin-left:15vw;\">\n\t\t\t\t\t\t\t\t<svg width=\"300\" height=\"24\" class=\"\" viewBox=\"0 0 24 24\" fill=\"none\"\n\t\t\t\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\">\n\t\t\t\t\t\t\t\t\t<title>Search Icon</title>\n\t\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\t\td=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\n\t\t\t\t\t\t\t\t\t\tstroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t\t<path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<span class=\"flex-grow\">\n\t\t\t\t\t\t\t\t<input id=\"input_data\" class=\"searchbar\"   type=\"text\" placeholder=\"Search for Products, Brands and More\" />\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<div id=\"autocompleteResults\" class=\"autocom-box\" style=\"display: none;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\ttop: 67px;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tbackground:#f0f5ff;\n\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\tborder: rgba(255, 51, 255, 0.2);\">\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul  class=\"navbar-nav ml-auto\"\n\t\t\t\t\tstyle=\"flex-wrap: nowrap;flex-direction: row;width: 30vw; justify-content: space-between;margin-left: 20px;\">\n\t\t\t\t\t<li class=\"nav-item navItem2 dropdown\" id=\"navbarDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd acnavdd\" href=\"#\" id=\"navbarDropdown\" role=\"button\" style=\"width: 10vw; margin-top:2vh;\"\n\t\t\t\t\t\t\tdata-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img src=\"img/svg/profile-.svg\" alt=\"Profile\" />\n\t\t\t\t\t\t\t<span class=\"navname navname_ac\" style=\"width:50vw;\"> Login <i class=\"bi bi-chevron-down\"></i><i\n\t\t\t\t\t\t\t\t\tclass=\"bi bi-chevron-up\"></i></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0px;\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/home_account.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tMy Profile </a>\n\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"login/login.html\">\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\t\tLog into account </a>\n\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/login-signup.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tSign In</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"plus/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/fkplus-+.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tFlipkart Plus Zone</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/orders.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/orders.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tOrders</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"wishlist/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/wishList.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tWishlist</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/notifications.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/notifications.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tNotifications</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/rewards.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/rewards.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tRewards</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"the-gift-card-store/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/giftCard.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tGift Cards</a>\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/contact.html\">\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"https://pngimg.com/uploads/phone/phone_PNG48988.png\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\t\tContact Us </a>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem3\">\n\t\t\t\t\t\t<a class=\"nav-link cartLogoandname\" style=\"width: 10vw; margin-top:2vh;\" href=\"viewcart/\">\n\t\t\t\t\t\t\t<img\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\" />\n\t\t\t\t\t\t\t<span class=\"navname2\">Cart</span><span id=\"cartItems\"></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem4\">\n\t\t\t\t\t\t<a class=\"nav-link\" href=\"sell-online/\" style=\"width: 12vw;font-size:small; margin-top:2vh;\">\n\t\t\t\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\n\t\t\t\t\t\t\t\talt=\"Become a Seller\" />\n\t\t\t\t\t\t\t<span class=\"navname3\">Become a Seller</span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem5 dropdown \" id=\"moreLinksDropdow\" style=\"width: 10vw; margin-top:2vh;\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\"\n\t\t\t\t\t\t\taria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img class=\"nav-dd\"\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\"\n\t\t\t\t\t\t\t\talt=\"More Links\" />\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"notifications/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/notificationPreferences.svg\"\n\t\t\t\t\t\t\t\t\talt=\"appointment-reminders--v2\" />Notification\n\t\t\t\t\t\t\t\tPreferences</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"helpcentre/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/helpcenter.svg\" alt=\"imgcc\">24x7 Customer Care</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\"\n\t\t\t\t\t\t\t\thref=\"https://advertising.flipkart.com/\"><img\n\t\t\t\t\t\t\t\t\twidth=\"30\" height=\"20\" src=\"img/svg/advertise.svg\" alt=\"Advertise\">Advertise</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"mobile-apps/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/downloadApp.svg\" alt=\"img3\">Download App</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t\n\t\t\t\t</ul>\n\t\t\t</div>\n\t\t</nav>\n\t</header>\n<div class=\"container\">\n  <p>FLIPKART INDIA PRIVATE LIMITED E-WASTE RECYCLING POLICY</p>\n  <p>The Information and Communication revolution has brought enormous changes in the way we organize our lives, our economies, industries and institutions. These spectacular developments in modern times have undoubtedly enhanced the quality of our lives, but at the same time, have led to manifold problems including the problem of massive amount of hazardous waste and other waste generated from electric products. Such waste poses a serious threat to human health and environment. The issue of proper management of such hazardous E-Waste is therefore critical to the protection of livelihood, health and environment.</p>\n  <p>To deal with this ever-rising problem of E-Waste, the government of India, through its Ministry of Environment and forest, formulated the E-Waste (Management and Handling) Rules in 2016.</p>\n  <p >FLIPKART INDIA PRIVATE LIMITED STANDS COMMITTED TO IMPLEMENT THE E-WASTE UNDER E-WASTE RULES.</p>\n  <p>The Basel Convention defines wastes as-</p>\n  <blockquote>\n    “Substances or objects, which are disposed off or are intended to be disposed off, or are required to be disposed off by the provisions of national laws”.\n  </blockquote>\n  <p>E waste has been defined as-</p>\n  <blockquote>\n    “Waste electrical and electronic equipment, whole or in part or rejects from their manufacturing and repair process, which are intended to be discarded.”\n  </blockquote>\n  <p>Whereas, Electrical and electronic equipment has been defined as:-</p>\n  <blockquote>\n    \"Equipment which is dependent on electrical currents or electro-magnetic fields to fully functional\".\n  </blockquote>\n  <p>Like hazardous waste, the problem of e-waste has become an immediate and long-term concern as its unregulated accumulation and recycling can lead to major environmental problems endangering human health. This calls for an urgent need for E-Waste Management so as to preserve the ecological balance and reduce landfills. Recycling end-of-life products is vital if we are to save resources and minimize waste. In this regard, we at Flipkart India private limited have tied up with Reteck Envirotech Pvt. Ltd, one of the world’s largest authorized E-Waste recycler, for facilitating our Organization and our customers to enable them to dispose E-Waste products after its end-of-life.</p>\n  <p>AS AN ENVIRONMENTALLY CONSCIOUS ORGANISATION, FLIPKART INDIA PRIVATE LIMITED HAS INITIATED VARIOUS ACTIVITIES TO PROMOTE E-WASTE RECYCLING.</p>\n  <ul>\n    <li>100% recycling and disposal through authorized recycler to avoid the adverse effects of E-Waste.</li>\n  </ul>\n  <p>ADVERSE EFFECTS OF EWASTE</p>\n  <ul>\n    <li>Toxic material present in e-waste get mixed with earth, air, water, etc and causes health issues.</li>\n    <li>Oil & Gases which is present in e-waste like compressor and CRT causes environment pollution.</li>\n    <li>Batteries contain highly hazardous elements.</li>\n    <li>Burning of rubber & Plastic in open area causes air pollution.</li>\n    <li>Bad impact on human being, animal, and other animates.</li>\n    <li>Wastage of natural resources.</li>\n  </ul>\n  <p>HOW CAN YOU CONTRIBUTE TO A GREENER ENVIRONMENT?</p>\n  <ul>\n    <li>All electrical and electronic products are required to be handed over only to the authorised recycler for recycling.</li>\n    <li>The E-Waste product should be handed over only to an authorised recycler for disposal.</li>\n    <li>Keep the e-waste in isolated area, after it becomes non-functional/un-repairable so as to prevent its accidental breakage.</li>\n    <li>Please call on toll free number 1800-123-8783 for collection of E-Waste.</li>\n  </ul>\n  <p>Why Recycle</p>\n  <p>Conserve Resources</p>\n  <p>Creation requires raw resources. But when we recycle, extant material is put to use. Recycling saves this extraction of the fresh raw resources, and revives the existing ones that are no longer of use. This way there is lesser exploitation and more conservation of natural resources.</p>\n  <p>Save Energy</p>\n  <p>Each time we recycle a product, it requires lesser energy than producing a new one from the scratch. The considerable difference in manufacturing time is a result of skipping the usual process of extraction of raw material, its transportation, refining etc., which is way more than having a market ready product that to have a raw material ready for production.</p>\n  <p>Prevent Pollution</p>\n  <p>Production and disposal of products require a great deal of extraction, refining, processing and dumping of material, which have larger impact on the environment. By recycling, we cut down the pollution of air, water and land, thus reducing the greenhouse gas emission and avoiding any contribution to global warming.</p>\n  <p>Don'ts for E- Waste</p>\n  <ul>\n    <li>The product should not be opened/dismantled by the User himself/herself, but only by authorized service personnel.</li>\n    <li>The product is not meant for re-sale to any unauthorized agencies/scrap dealer.</li>\n    <li>The product is not meant for mixing into household waste stream.</li>\n    <li>Do not keep any replaced spare part(s) from the product in exposed area.</li>\n  </ul>\n  <p>Terms and Conditions</p>\n  <ul>\n    <li>This initiative is a step towards our commitment for a cleaner and greener earth.</li>\n    <li>This move is one of the ways to show that we are concerned and thus we request all our customers to join this movement to make it successful by way of contributing their end-of-life product.</li>\n    <li>For more information about e-waste please visit: <a href=\"http://www.reteck.co\">www.reteck.co</a></li>\n    <li>For any assistance/guidance for disposal of e-waste please call on toll free number: 1800-212-8783.</li>\n    <li>Products offered for recycling are not eligible for exchange offers.</li>\n    <li>The service is available as per conditions applicable in the respective area by recyclers.</li>\n    <li>You can also deposit your E-Waste directly at the collection points. For information of collection points please see below mentioned list.</li>\n  </ul>\n  <table>\n    <thead>\n      <tr>\n        <th>Sr. No.</th>\n        <th>Name of State/UT</th>\n        <th>Name of Town/City</th>\n        <th>Revised Address of collection points</th>\n        <th>Toll-Free Number/ Alternate No.</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n        <td>1</td>\n        <td>New Delhi</td>\n        <td>New Delhi</td>\n        <td>Plot No. 619, Block A, Near Tata Telco Service Station,Rangpuri, Mahipalpur,Delhi - 110037</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>2</td>\n        <td>Uttar Pradesh</td>\n        <td>Lucknow</td>\n        <td>S 317, Transport Nagar, Near RTO Office,Lucknow,UP- 226012</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>3</td>\n        <td>Maharashtra</td>\n        <td>Mumbai</td>\n        <td>Plot No. 92, Gali No. – 01, Sector 19C,Vashi,Navi Mumbai – 400705</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>4</td>\n        <td>Maharashtra</td>\n        <td>Pune</td>\n        <td>Plot No 24, Sector 4, Shikshak Colony,Near Spine City, Moshi Pradhikaran,Maharashtra- 412105</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>5</td>\n        <td>Tamil Nadu</td>\n        <td>Chennai</td>\n        <td>3/27 Sakthi Garden Phase II, Senneerkuppam,Poonamallee, Near Bisleri Water Plant,Tamil Nadu-600056</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>6</td>\n        <td>Haryana</td>\n        <td>Gurugram</td>\n        <td>J-171, New Palam Vihar Phase-1, Gurugram,Haryana 122017</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>7</td>\n        <td>Telangana</td>\n        <td>Hyderabad</td>\n        <td>Plot No.-111,JK Nagar Quthbullapur Rangaraddy Near Bharat Patrol Pump ,Near Bharat Patrol Pump ,Hyderabad-500055</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>8</td>\n        <td>Karnataka</td>\n        <td>Bangalore</td>\n        <td>No.43 1st floor 2nd Main D.D.U.T.T.L.,Yeshwantpur,Karnataka -560022</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>9</td>\n        <td>Assam</td>\n        <td>Guwahati</td>\n        <td>HN-34, Kundil Nagar Basistha Chariali,Near Parbhat Apartment,Guwahati-781029</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>10</td>\n        <td>Gujarat</td>\n        <td>Ahmedabad</td>\n        <td>Shop No D-9, Pushp Tenament,Behind Mony Hotel, Isanpur,Gujarat - 382443</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>11</td>\n        <td>Bihar</td>\n        <td>Patna</td>\n        <td>Dr. A K Pandey (IPS) Malyanil,Buddha Colony,Bihar-800001</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>12</td>\n        <td>West Bengal</td>\n        <td>Kolkata</td>\n        <td>104 B T ROAD , SHED NO - 15/3, R I C I E , BLOCK -2,Near by locknath mandir<br>BONHOOGHLY<br>KOLKATA 700108,WB – 700108</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>13</td>\n        <td>Punjab</td>\n        <td>Chandigarh</td>\n        <td>Shop No: -15 & 16, Pabhat Road,Opp – Tennis Academy, Zirakpur,Punjab-140603</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>14</td>\n        <td>Rajasthan</td>\n        <td>Jaipur</td>\n        <td>81, 200 ft. By Pass,Near Ajmer, Road, Heerapura,Rajasthan - 302021</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>15</td>\n        <td>JAMMU</td>\n        <td>J&amp;K</td>\n        <td>SOAP NO 1 FIST FLOOR<br>NEAR SBI BANK BARIBRAMNA JAMMU-181133</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>16</td>\n        <td>Kerala</td>\n        <td>Cochin</td>\n        <td>H.O -Building No-11/286A Kallarackal House Palliamkara H.M.T Colony P.O,Near HMT Post Office Ernakulam ,Cochin, Kerala -683504</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>17</td>\n        <td>Madhya Pradesh</td>\n        <td>Bhopal</td>\n        <td>C-317, ShriRameshwaram, Baghmugaliya, Bhopal 462043</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>18</td>\n        <td>Orissa</td>\n        <td>Bhubneswar</td>\n        <td>2946/7055 Saptasati Bihar,Near Isa Diagnostic, Rasulgarh Palasuni,Bhubneswar-751010</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>19</td>\n        <td>Uttrakhand</td>\n        <td>Dehradun</td>\n        <td>Prem Nagar IMA,Dehradun Uttrakhand,Dehradun</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>20</td>\n        <td>Jharkhand</td>\n        <td>Ranchi</td>\n        <td>Radha Complex Khel Gaon More,Deepa Toli Ranchi, Jharkhand</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>21</td>\n        <td>Himachal</td>\n        <td>Himachal</td>\n        <td>Darnu, K.B Dharamshala dist Kangra,Himachal,Himachal-176215</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>22</td>\n        <td>Goa</td>\n        <td>Goa</td>\n        <td>Shop No.40, Iind Floor Ponda Commerce Center,Near IDBI Bank Tisk Ponda,Goa-403401</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>23</td>\n        <td>Andhra Pradesh</td>\n        <td>Visakhapatnam</td>\n        <td>Godown No-12-18/3 Near Mary Palam Bus Stop,Lankelapalem,Visakhapatnam-531021</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>24</td>\n        <td>Arunnachal Pradesh</td>\n        <td>Itanagar</td>\n        <td>Mithun Gate Near Town Baptist ,Church Nyokum Lapang ,Itanagar-791111</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>25</td>\n        <td>Chhattisgarh</td>\n        <td>Raipur</td>\n        <td>MIG 245 Kabir Nagar Near Commercial Complex,Raipur,Chhattisgarh-492099</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n      <tr>\n        <td>26</td>\n        <td>Goa</td>\n        <td>Chicalim</td>\n        <td>3rd Office No.304, Dr. Ozler Forum, Near St Andrew Chruch, Vasco da Gama, South Goa, Goa -403802</td>\n        <td>1800-123-8783/ 9321743538</td>\n      </tr>\n    </tbody>\n  </table>\n</div>\n\n\n    <footer id=\"footer\" style=\"background-color: #292d33;\"></footer>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Grievance Redressal/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Grievance Redressal - Flipkart Clone</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n    \n    <style>\n\n        #progress-container {\n            position: fixed;\n            top: 0px;\n            left: 0;\n            width: 100%;\n            height: 15px;\n            z-index: 99990;\n            /* background: #f3f3f3; */\n        }\n\n        #progress-bar {\n            height: 53%;\n            width: 0;\n            background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n            box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n            transition: width 0.09s ease-in-out;\n            border-radius: 10px;\n        }\n    </style>\n</head>\n\n<body>\n\n\n    <div id=\"progress-container\">\n        <div id=\"progress-bar\"></div>\n    </div>\n\n    <script>\n\n        window.addEventListener('scroll', function () {\n            const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n            const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n            const scrolled = (winScroll / height) * 100;\n            document.getElementById('progress-bar').style.width = scrolled + '%';\n        });\n    </script>\n\n    <header>\n        <h1>Grievance Redressal Mechanism</h1>\n    </header>\n\n    <main>\n        \n        <section>\n\n        <p>Flipkart is duty bound to provide fair treatment to our Consumer and Consumer grievances.</p>\n\n        <h4>What does \"Grievance\" mean?</h4>\n        <p>Grievance means any issue related to the product/service which has been availed by the consumer from the Flipkart\n        Platform and consumer is seeking resolution for the same.</p>\n\n        <h5>In case of any query or complaint the Consumer can approach us and reach out to us through ‘Contact us’ and ‘Help\n        Centre’ tab available on this page.</h5>\n\n        <p>Journey:</p>\n        <ul>\n            <li>Click on <a href=\"../pages/contact_us/contact_us.html\">‘Contact Us’</a> or <a href=\"\">‘Help Centre’</a> tab</li>\n            <li>It will open to Flipkart Help Center | 24x7 Customer Care Support</li>\n            <li>Choose from Type of Issue / Help Topics</li>\n            <li>Submit</li>\n        </ul>\n\n        <p>If your query / complaint not resolved needs to be escalated : As per the applicable laws, Flipkart has appointed a\n        “Grievance Officer” to address your grievances.</p>\n\n        <p>Here are the details for Grievance officer:</p>\n\n        <p style=\"font-weight: bold;\">Mr. Shremanth M</p>\n        <p style=\"font-weight: bold;\">Designation: Senior Manager</p>\n        <p style=\"font-weight: bold;\">Flipkart Internet Pvt Ltd Block B (Begonia),</p>\n        <p style=\"font-weight: bold;\">8th Floor Embassy Tech Village,</p>\n        <p style=\"font-weight: bold;\">Outer Ring Road, Devarabeesanahalli Village,</p>\n        <p style=\"font-weight: bold;\">Varthur Hobli, Bengaluru East Taluk,</p>\n        <p style=\"font-weight: bold;\">Bengaluru District, Karnataka : 560103, India</p>\n        <p style=\"font-weight: bold;\">Contact no. : 044-45614700</p>\n\n        <ul>\n            <li>Our ‘Grievance Redressal Mechanism’ is as follows:</li>\n\n            <ul>\n                <li>Upon the receipt of a Consumer Grievance on the channels specified above.</li>\n\n                <ul>\n                    <li>The Consumer shall receive an acknowledgment for its grievance within 48 (Forty-Eight) hours through email OR phone call\n                    or SMS, and</li>\n                    <li>The Consumer shall receive a system generated “Unique ID” to track the grievance status\n                        </li>\n                </ul>\n\n                <li>“Consumer Care” and “Grievance Officer” shall take all the best endeavors to resolve the grievance as expeditiously\n                within the timeline as prescribed in the applicable laws.</li>\n\n                <li>A Grievance will be considered as closed and disposed-off and in any of the following instances, namely:</li>\n\n                <ul>\n                    <li>When the consumer is communicated by Consumer Care / Grievance Officer / any other person associated with the website\n                    and offers solutions to its grievance</li>\n                </ul>\n            </ul>\n        </ul>\n\n        <p>For more details, please visit Terms of Use</p>\n\n        </section>\n\n    </main>\n\n    <footer>\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\n    </footer>\n</body>\n\n</html>"
  },
  {
    "path": "pages/Grievance Redressal/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nmain {\n    max-width: 800px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\nsection {\n    margin-bottom: 5rem;\n}\n\nh2 {\n    color: #2874f0;\n}\n\nh3 {\n    color: #2b2b2b;\n    margin-bottom: 0.5rem;\n}\n\nul {\n    list-style-type: disc;\n    margin: 0;\n    padding-left: 1.5rem;\n}\n\nfooter {\n    text-align: center;\n    padding: 1rem 0;\n    background-color: #2874f0;\n    color: white;\n    position: fixed;\n    width: 100%;\n    height: 1.5rem;\n    bottom: 0cqmax;\n}\n\na {\n    color: #2874f0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}"
  },
  {
    "path": "pages/Licensing/Licensing.css",
    "content": "/* Basic reset and styling */\n* {\n    margin: 0;\n    padding: 0;\n    box-sizing: border-box;\n    font-family: 'Arial', 'sans-serif';\n}\n\nbody {\n    background-color: #fdfdfd;\n    color: #212121;\n    line-height: 1.6;\n}\n\n.container {\n    max-width: 850px;\n    margin: 30px auto;\n    padding: 20px;\n    height: 850px;\n    background-color: #ffffff;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n    border-radius: 8px;\n}\n\n.legal-heading {\n    margin-top: 0px;\n    font-size: 37px;\n}\n.backtohome img {\n    display: inline;\n    width: 32px;\n    height: 32px;\n}\n\n.backtohome img:hover{\n    transform: translate(0px, 1px);\n}\nheader {\n    text-align: center;\n    margin-bottom: 20px;\n}\n\n.legal-main-heading {\n    font-size: 3rem;\n    color: #000;\n    /* background-color: rgba(250, 233, 0, 0.203); */\n    border-radius: 23px;\n    /* background: linear-gradient(to bottom, rgb(225, 255, 0), rgb(255, 162, 0)); */\n}\n\nhr {\n    width: 24%;\n    margin: auto;\n}\n\n.legal-para {\n    font-size: 18.5px;\n}\n\n.legal-tagline\n{\n    font-size: 24px;\n}\n\n\n/* Footer styling */\nfooter {\n    text-align: center;\n    margin-top: 20px;\n    color: #777;\n}\n\nfooter p  {\n    font-size: 17px;\n}\n"
  },
  {
    "path": "pages/Payments/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Payments</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <h2 id=\"payments\">Payments</h2>\n        <h2 id=\"how-do-i-pay-for-a-flipkart-purchase-\">How do I pay for a Flipkart purchase?</h2>\n        <p>Flipkart offers you multiple payment methods. Whatever your online mode of payment, you can rest assured that Flipkart&#39;s trusted payment gateway partners use secure encryption technology to keep your transaction details confidential at all times.</p>\n        <p>You may use Internet Banking, Gift Card, Cash on Delivery and Wallet to make your purchase.</p>\n        <p>Flipkart also accepts payments made using Visa, MasterCard, Maestro and American Express credit/debit cards in India and 21 other countries.</p>\n        <h2 id=\"are-there-any-hidden-charges-octroi-or-sales-tax-when-i-make-a-purchase-on-flipkart-\">Are there any hidden charges (Octroi or Sales Tax) when I make a purchase on Flipkart?</h2>\n        <p>There are NO hidden charges when you make a purchase on Flipkart. The prices listed for all the items are final and all-inclusive. The price you see on the product page is exactly what you pay.</p>\n        <p>Delivery charges may be extra depending on the seller policy. Please check individual seller for the same. In case of seller WS Retail, the ₹50 delivery charge is waived off on orders worth ₹500 and over.</p>\n        <h2 id=\"what-is-cash-on-delivery-\">What is Cash on Delivery?</h2>\n        <p>If you are not comfortable making an online payment on Flipkart.com, you can opt for the Cash on Delivery (C-o-D) payment method instead. With C-o-D you can pay in cash at the time of actual delivery of the product at your doorstep, without requiring you to make any advance payment online.</p>\n        <p>The maximum order value for a Cash on Delivery (C-o-D) payment is ₹50,000. It is strictly a cash-only payment method. Gift Cards or store credit cannot be used for C-o-D orders. Foreign currency cannot be used to make a C-o-D payment. Only Indian Rupees accepted.</p>\n        <h2 id=\"how-do-i-pay-using-a-credit-debit-card-\">How do I pay using a credit/debit card?</h2>\n        <p>We accept payments made by credit/debit cards issued in India and 21 other countries.</p>\n        <p><strong>Credit cards</strong></p>\n        <p>We accept payments made using Visa, MasterCard and American Express credit cards.</p>\n        <p>To pay using your credit card at checkout, you will need your card number, expiry date, three-digit CVV number (found on the backside of your card). After entering these details, you will be redirected to the bank&#39;s page for entering the online 3D Secure password.</p>\n        <p><strong>Debit cards</strong></p>\n        <p>We accept payments made using Visa, MasterCard and Maestro debit cards.</p>\n        <p>To pay using your debit card at checkout, you will need your card number, expiry date (optional for Maestro cards), three-digit CVV number (optional for Maestro cards). You will then be redirected to your bank&#39;s secure page for entering your online password (issued by your bank) to complete the payment.</p>\n        <p>Internationally issued credit/debit cards cannot be used for Flyte, Wallet and eGV payments/top-ups.</p>\n        <h2 id=\"is-it-safe-to-use-my-credit-debit-card-on-flipkart-\">Is it safe to use my credit/debit card on Flipkart?</h2>\n        <p>Your online transaction on Flipkart is secure with the highest levels of transaction security currently available on the Internet. Flipkart uses 256-bit encryption technology to protect your card information while securely transmitting it to the respective banks for payment processing.</p>\n        <p>All credit card and debit card payments on Flipkart are processed through secure and trusted payment gateways managed by leading banks. Banks now use the 3D Secure password service for online transactions, providing an additional layer of security through identity verification.</p>\n        <h2 id=\"what-steps-does-flipkart-take-to-prevent-card-fraud-\">What steps does Flipkart take to prevent card fraud?</h2>\n        <p>Flipkart realizes the importance of a strong fraud detection and resolution capability. We and our online payments partners monitor transactions continuously for suspicious activity and flag potentially fraudulent transactions for manual verification by our team.</p>\n        <p>In the rarest of rare cases, when our team is unable to rule out the possibility of fraud categorically, the transaction is kept on hold, and the customer is requested to provide identity documents. The ID documents help us ensure that the purchases were indeed made by a genuine card holder. We apologise for any inconvenience that may be caused to customers and request them to bear with us in the larger interest of ensuring a safe and secure environment for online transactions.</p>\n        <h2 id=\"what-is-a-3d-secure-password-\">What is a 3D Secure password?</h2>\n        <p>The 3D Secure password is implemented by VISA and MasterCard in partnership with card issuing banks under the &quot;Verified by VISA&quot; and &quot;Mastercard SecureCode&quot; services, respectively.</p>\n        <p>The 3D Secure password adds an additional layer of security through identity verification for your online credit/debit card transactions. This password, which is created by you, is known only to you. This ensures that only you can use your card for online purchases.</p>\n        <h2 id=\"how-can-i-get-the-3d-secure-password-for-my-credit-debit-card-\">How can I get the 3D Secure password for my credit/debit card?</h2>\n        <p>You can register for the 3D Secure password for your credit/debit card by visiting your bank&#39;s website. The registration links for some of the banks have been provided below for easy reference:</p>\n        <table>\n        <thead>\n        <tr>\n        <th><a href=\"https://retail.onlinesbi.com/personal/secure_card_transactions.html\">State Bank of India</a></th>\n        <th><a href=\"http://www.icicibank.com/aboutus/article/ivr.html\">ICICI Bank</a></th>\n        <th><a href=\"https://netsafe.hdfcbank.com/ACSWeb/enrolljsp/Registration1.jsp\">HDFC Bank</a></th>\n        <th><a href=\"https://acs2.enstage-sas.com/ACSWeb/EnrollWeb/PNB/main/index.jsp\">Punjab National Bank</a></th>\n        </tr>\n        </thead>\n        <tbody>\n        <tr>\n        <td><a href=\"https://secure.axisbank.com/ACSWeb/EnrollWeb/AxisBank/main/index.jsp\">Axis Bank</a></td>\n        <td><a href=\"https://corpbank.electracard.com/corpbank/enrollment/enroll_welcome.jsp\">Corporation Bank</a></td>\n        <td><a href=\"https://cardsecurity.enstage.com/ACSWeb/EnrollWeb/AndhraBank/main/index.jsp\">Andhra Bank</a></td>\n        <td><a href=\"http://www.bankofbaroda.com/vbv.asp\">Bank of Baroda</a></td>\n        </tr>\n        <tr>\n        <td><a href=\"http://www.standardchartered.co.in/personal/credit-cards/en/3d_secure.html\">Standard Chartered India</a></td>\n        <td><a href=\"https://ubi.electracard.com/ubi/enrollment/WhatisVerifyByVisa.jsp\">Union Bank of India</a></td>\n        <td><a href=\"https://cbi.electracard.com/cbi/enrollment/enroll_welcome.jsp\">Central Bank of India</a></td>\n        <td><a href=\"https://www.online.citibank.co.in/products-services/online-services/online-security.htm\">Citibank</a></td>\n        </tr>\n        <tr>\n        <td><a href=\"https://www.deutschebank.co.in/direct_debit.html\">Deutsche Bank</a></td>\n        <td><a href=\"http://www.dhanbank.com/personal/vbv-faq.aspx\">Dhanlakshmi Bank</a></td>\n        <td><a href=\"https://secureonline.idbibank.com/ACSWeb/EnrollWeb/IDBIBank/main/index.jsp\">IDBI Bank</a></td>\n        <td><a href=\"https://cardsecurity.enstage.com/ACSWeb/EnrollWeb/CanaraBank/main/termsandconditions.jsp\">Canara Bank</a></td>\n        </tr>\n        <tr>\n        <td><a href=\"http://www.indusind.com/Terms-and-Conditions-for-IBL-e-Secure-service.html\">IndusInd Bank</a></td>\n        <td><a href=\"https://cardsecurity.enstage.com/ACSWeb/EnrollWeb/FederalBank/main/index.jsp\">Federal Bank</a></td>\n        <td><a href=\"https://cardsecurity.enstage.com/ACSWeb/EnrollWeb/KotakBank/main/init.jsp?go=2\">Kotak Mahindra Bank</a></td>\n        <td><a href=\"https://cardsecurity.enstage.com/ACSWeb/EnrollWeb/KVB/main/vbv.jsp\">Karur Vysya Bank</a></td>\n        </tr>\n        <tr>\n        <td><a href=\"https://www.obcindia.co.in/obcnew/site/inner.aspx?status=R1&amp;menu_id=16\">Oriental Bank of Commerce</a></td>\n        <td><a href=\"https://www.southindianbank.com/content/viewContentLvl2.aspx?linkIdLvl2=16&amp;linkId=920\">South Indian Bank</a></td>\n        <td><a href=\"https://www.vijayabank.com/Card-Services/Verified-by-VISA\">Vijaya Bank</a></td>\n        <td>-</td>\n        </tr>\n        </tbody>\n        </table>\n        <h2 id=\"can-i-use-my-bank-39-s-internet-banking-feature-to-make-a-payment-\">Can I use my bank&#39;s Internet Banking feature to make a payment?</h2>\n        <p>Yes. Flipkart offers you the convenience of using your bank&#39;s Internet Banking service to make a payment towards your order. With this you can directly transfer funds from your bank account, while conducting a highly secure transaction.</p>\n        <p>We accept payment through Internet Banking for the following banks:</p>\n        <table>\n        <thead>\n        <tr>\n        <th>ABN Amro Bank</th>\n        <th>Axis Bank</th>\n        <th>Allahabad Bank</th>\n        <th>Andhra Bank</th>\n        </tr>\n        </thead>\n        <tbody>\n        <tr>\n        <td>Bank of Bahrain and Kuwait</td>\n        <td>Bank of Baroda</td>\n        <td>Bank of India</td>\n        <td>Bank of Maharashtra</td>\n        </tr>\n        <tr>\n        <td>Bank of Rajasthan</td>\n        <td>Central Bank of India</td>\n        <td>Citibank</td>\n        <td>City Union Bank</td>\n        </tr>\n        <tr>\n        <td>Corporation Bank</td>\n        <td>Deutsche Bank</td>\n        <td>Development Credit Bank</td>\n        <td>Dhanlaxmi Bank</td>\n        </tr>\n        <tr>\n        <td>Federal Bank</td>\n        <td>HDFC Bank</td>\n        <td>ICICI Bank</td>\n        <td>IDBI Bank</td>\n        </tr>\n        <tr>\n        <td>ING Vysya Bank</td>\n        <td>Indian Overseas Bank</td>\n        <td>Indian Bank</td>\n        <td>IndusInd Bank</td>\n        </tr>\n        <tr>\n        <td>Jammu &amp; Kashmir Bank</td>\n        <td>Karnataka Bank</td>\n        <td>Karur Vysya Bank</td>\n        <td>Kotak Mahindra Bank</td>\n        </tr>\n        <tr>\n        <td>Lakshmi Vilas Bank</td>\n        <td>Oriental Bank of Commerce</td>\n        <td>Punjab National Bank</td>\n        <td>Royal Bank of Scotland</td>\n        </tr>\n        <tr>\n        <td>South Indian Bank</td>\n        <td>Standard Chartered Bank</td>\n        <td>State Bank of Hyderabad</td>\n        <td>State Bank of India</td>\n        </tr>\n        <tr>\n        <td>State Bank of Mysore</td>\n        <td>State Bank of Travancore</td>\n        <td>Syndicate Bank</td>\n        <td>Tamilnad Mercantile Bank</td>\n        </tr>\n        <tr>\n        <td>Union Bank of India</td>\n        <td>United Bank of India</td>\n        <td>Vijaya Bank</td>\n        <td>YES Bank</td>\n        </tr>\n        </tbody>\n        </table>\n        <h2 id=\"can-i-make-a-credit-debit-card-or-internet-banking-payment-on-flipkart-through-my-mobile-\">Can I make a credit/debit card or Internet Banking payment on Flipkart through my mobile?</h2>\n        <p>Yes, you can make credit card payments through the Flipkart mobile site and application. Flipkart uses 256-bit encryption technology to protect your card information while securely transmitting it to the secure and trusted payment gateways managed by leading banks.</p>\n        <h2 id=\"how-does-39-instant-cashback-39-work-\">How does &#39;Instant Cashback&#39; work?</h2>\n        <p>The &#39;Cashback&#39; offer is instant and exclusive to Flipkart.com. You only pay the final price you see in your shopping cart.</p>\n        <h2 id=\"how-do-i-place-a-cash-on-delivery-c-o-d-order-\">How do I place a Cash on Delivery (C-o-D) order?</h2>\n        <p>All items that have the &quot;Cash on Delivery Available&quot; icon are valid for order by Cash on Delivery.</p>\n        <p>Add the item(s) to your cart and proceed to checkout. When prompted to choose a payment option, select &quot;Pay By Cash on Delivery&quot;. Enter the CAPTCHA text as shown, for validation.</p>\n        <p>Once verified and confirmed, your order will be processed for shipment in the time specified, from the date of confirmation. You will be required to make a cash-only payment to our courier partner at the time of delivery of your order to complete the payment.</p>\n        <p>Terms &amp; Conditions:</p>\n        <ul>\n        <li>The maximum order value for C-o-D is ₹50,000</li>\n        <li>Gift Cards or Store Credit cannot be used for C-o-D orders</li>\n        <li>Cash-only payment at the time of delivery.</li>\n        </ul>\n        <h2 id=\"what-is-flipkart-39-s-credit-card-emi-option-\">What is Flipkart&#39;s credit card EMI option?</h2>\n        <p>With Flipkart&#39;s credit card EMI option, you can choose to pay in easy installments of 3, 6, 9, 12, 18*, or 24 months* with credit cards from the following banks:</p>\n        <ul>\n        <li>HDFC</li>\n        <li>Citi</li>\n        <li>ICICI</li>\n        <li>Kotak</li>\n        <li>Axis</li>\n        <li>IndusInd</li>\n        <li>SBI</li>\n        <li>Standard Chartered</li>\n        <li>HSBC</li>\n        </ul>\n        <p>*18 &amp; 24 months EMI options are available from select banks only. Please refer to the table below for more details:</p>\n        <table>\n        <thead>\n        <tr>\n        <th><strong>Banks</strong></th>\n        <th><strong>Supports 18 &amp; 24 months tenure</strong></th>\n        <th><strong>Minimum order value to avail 18 &amp; 24 months EMI options</strong></th>\n        </tr>\n        </thead>\n        <tbody>\n        <tr>\n        <td>HDFC</td>\n        <td>Yes</td>\n        <td>₹ 10,000</td>\n        </tr>\n        <tr>\n        <td>Citi</td>\n        <td>Yes</td>\n        <td>₹ 10,000</td>\n        </tr>\n        <tr>\n        <td>ICICI</td>\n        <td>Yes</td>\n        <td>₹ 10,000</td>\n        </tr>\n        <tr>\n        <td>Kotak</td>\n        <td>Yes</td>\n        <td>₹ 4,000</td>\n        </tr>\n        <tr>\n        <td>Axis</td>\n        <td>Yes</td>\n        <td>₹ 4,000</td>\n        </tr>\n        <tr>\n        <td>IndusInd</td>\n        <td>Yes</td>\n        <td>₹ 4,000</td>\n        </tr>\n        <tr>\n        <td>SBI</td>\n        <td>No</td>\n        <td>NA</td>\n        </tr>\n        <tr>\n        <td>Standard Chartered</td>\n        <td>Yes</td>\n        <td>₹ 4,000</td>\n        </tr>\n        <tr>\n        <td>HSBC</td>\n        <td>No</td>\n        <td>NA</td>\n        </tr>\n        </tbody>\n        </table>\n        <p>There is NO processing fee charged for availing Flipkart&#39;s EMI payment option. On return or exchange, interest charged by the bank till that time will not be refunded by Flipkart.</p>\n        <p>You may check with the respective bank/issuer on how a cancellation, refund or pre-closure could affect the EMI terms, and what interest charges would be levied on you for the same.</p>\n        <p><strong>Example and Calculations</strong></p>\n        <p>The table below shows a representative rendering of EMI plans for a Rs 20,000 purchase on Flipkart paid using the EMI payment plan</p>\n        <table>\n        <thead>\n        <tr>\n        <th><strong>Tenure (months)</strong></th>\n        <th><strong>Loan amount</strong></th>\n        <th><strong>Monthly installment</strong></th>\n        <th><strong>Bank interest rate</strong></th>\n        <th><strong>Total effective price you pay</strong></th>\n        <th><strong>Interest paid to Bank</strong></th>\n        </tr>\n        </thead>\n        <tbody>\n        <tr>\n        <td>3</td>\n        <td>Rs 20,000</td>\n        <td>Rs 6,800.44</td>\n        <td>12.00%</td>\n        <td>Rs. 20,401.33</td>\n        <td>Rs. 401.33</td>\n        </tr>\n        <tr>\n        <td>6</td>\n        <td>Rs 20,000</td>\n        <td>Rs 3,450.97</td>\n        <td>12.00%</td>\n        <td>Rs 20,705.80</td>\n        <td>Rs. 705.80</td>\n        </tr>\n        <tr>\n        <td>9</td>\n        <td>Rs 20,000</td>\n        <td>Rs 2,344.32</td>\n        <td>13.00%</td>\n        <td>Rs 21,098.89</td>\n        <td>Rs. 1,098.89</td>\n        </tr>\n        <tr>\n        <td>12</td>\n        <td>Rs 20,000</td>\n        <td>Rs 1,786.35</td>\n        <td>13.00%</td>\n        <td>Rs 21,436.15</td>\n        <td>Rs. 1,436.15</td>\n        </tr>\n        </tbody>\n        </table>\n        <h2 id=\"how-do-i-make-a-payment-using-flipkart-39-s-credit-card-emi-option-\">How do I make a payment using Flipkart&#39;s credit card EMI option?</h2>\n        <p>Once you&#39;ve added the desired items to your Flipkart shopping cart, proceed with your order as usual by entering your address. When you&#39;re prompted to choose a payment mode for your order, select &#39;EMI&#39; &amp; follow these simple steps:</p>\n        <ol>\n        <li><p>Choose your credit-card issuing bank you wish to pay from</p>\n        </li>\n        <li><p>Select the EMI plan of your preference</p>\n        </li>\n        <li><p>Enter your credit card details</p>\n        </li>\n        <li><p>Click &#39;Save and Pay&#39;</p>\n        </li>\n        </ol>\n        <p>Please note that the full amount will be charged on your card the day of the transaction.</p>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"./script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Payments/script.js",
    "content": "// to apply styling to the first paragraph that is immediately followed by a ul element\n\ndocument.querySelectorAll('p + ul').forEach(ul => {\n    ul.previousElementSibling.classList.add('highlight');\n});"
  },
  {
    "path": "pages/Payments/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    padding: 2rem 5%;\n    margin-top: 4rem;\n}\n\nmain > div > a::after\n{\n    content: \" | \";\n}\n\nmain > div > a:last-of-type::after\n{\n    content: \"\";\n}\n\np\n{\n    margin: 1rem 0rem;\n}\n\np > strong\n{\n    font-weight: 700;\n}\n\nul\n{\n    padding: 1rem;\n}\n\nli\n{\n    margin: 1rem 0rem;\n}\n\n.highlight\n{\n    color: #2874F0;\n    font-weight: 700;\n    font-style: italic;\n}\n\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\nh2\n{\n    margin: 2rem 0rem;\n}\n\ntable, tr, th, td \n{\n    border: 1px solid black;\n    border-collapse: collapse;\n}\n\ntd, th \n{\n    padding: 10px;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/Privacy/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Security</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <p><strong>PRIVACY POLICY</strong></p>\n        <p>We value the trust you place in us and recognize the importance of secure transactions and information privacy. This Privacy Policy describes how Flipkart Internet Private Limited and its affiliates (collectively “Flipkart, we, our, us”) collect, use, share or otherwise process your personal data through Flipkart website <a href=\"http://www.flipkart.com/\">www.flipkart.com</a>, its mobile application, and m-site (hereinafter referred to as the “Platform”).</p>\n        <p>While you can browse sections of the Platform without the need of sharing any information with us, however, please note we do not offer any product or service under this Platform outside India and your personal data will primarily be stored and processed in India. By visiting this Platform, providing your information or availing out product/service, you expressly agree to be bound by the terms and conditions of this Privacy Policy, the <a href=\"https://www.flipkart.com/pages/terms\">Terms of Use</a> and the applicable service/product terms and conditions, and agree to be governed by the laws of India including but not limited to the laws applicable to data protection and privacy. If you do not agree please do not use or access our Platform.</p>\n        <p><strong>Collection of Your Information</strong></p>\n        <p>When you use our Platform, we collect and store your information which is provided by you from time to time. Once you give us your personal data, you are not anonymous to us. Where possible, we indicate which fields are required and which fields are optional. You always have the option to not provide data by choosing not to use a particular service, product or feature on the Platform.</p>\n        <p>We may track your buying behavior, preferences, and other information that you choose to provide on our Platform. We use this information to do internal research on our users&#39; demographics, interests, and behavior to better understand, protect and serve our users. This information is compiled and analyzed on an aggregated basis. This information may include the URL that you just came from (whether this URL is on our Platform or not), which URL you next go to (whether this URL is on our Platform or not), your computer browser information, and your IP address.</p>\n        <p>We may collect personal data (such as email address, delivery address, name, phone number, credit card/debit card and other payment instrument details or medical or health related information) from you when you set up an account or transact with us or participate in any event or contest. While you can browse some sections of our Platform without being a registered member, certain activities (such as placing an order or consuming our online content or services) do require registration. We use your contact information to send you offers based on your previous orders and your interests.</p>\n        <p>If you choose to post messages on our message boards, chat rooms or other message areas or leave feedback on the Platform or the social media handles maintained by us or if you use voice commands or virtual try and buy or similar features to shop on the Platform, we will collect that information you provide to us. We retain this information as necessary to resolve disputes, provide customer support, troubleshoot problems or for internal research and analysis as permitted by law.</p>\n        <p>If you send us personal correspondence, such as emails or letters, or if other users or third parties send us correspondence about your activities or postings on the Platform, we may collect such information into a file specific to you.</p>\n        <p>If you enroll into our loyalty and membership program, such SuperCoin, VIP or similar programs offered by Flipkart, we will collect and store your personal data such as name, contact number, email address, communication address, date of birth, gender, zip code, lifestyle information, demographic and work details which is provided by you to Flipkart or a third-party business partner that operates online/offline establishments or platforms where you can earn loyalty points for purchase of goods and services, and redeem loyalty points. We will also collect your information related to your transactions on Flipkart platform and such third-party business partner platforms. When such a third-party business partner collects your personal data directly from you, you will be governed by their privacy policies. Additionally, we collect your UPI ID if you choose to pay via our Flipkart UPI platform. Flipkart shall not be responsible for the third-party business partner’s privacy practices or the content of their privacy policies, and we request you to read their privacy policies prior to disclosing any information.</p>\n        <p>Flipkart has onboarded certain third-party business partners on the Platform who specialize in the categories like travel ticket reservations, booking online movie tickets, paying online bills and more (Ultra-Partners). If you use the services of Ultra-Partners, you will be redirected to Ultra-Partners websites/applications and your entry to Ultra-Partners websites/applications will be based on your Flipkart login credentials after seeking your permissions to share the data further. Flipkart shall not be responsible for the Ultra-Partner’s privacy practices or the content of their privacy policies, and we request you to read their privacy policies prior to disclosing any information.</p>\n        <p><strong>Use of Demographic / Profile Data / Your Information</strong></p>\n        <p>We use your personal data to take and fulfill orders, deliver products and services, process payments, and communicate with you about orders, products and services, and promotional offers. To the extent we use your personal data to market to you, we will provide you the ability to opt-out of such uses. We use your personal data to assist sellers and business partners in handling and fulfilling orders; enhancing customer experience; resolve disputes; troubleshoot problems; help promote a safe service; collect money; measure consumer interest in our products and services; inform you about online and offline offers, products, services, and updates; customize and enhance your experience; report to regulatory authorities wherever required, detect and protect us against error, fraud and other criminal activity; enforce our terms and conditions; and as otherwise described to you at the time of collection of information.</p>\n        <p>With your consent, we may have access to your SMS, instant messages, contacts in your directory, location, camera, photo gallery and device information. We may also request you to provide your PAN, credit information report (from credit agencies), GST Number, Government issued ID cards/number and Know-Your-Customer (KYC) details to: (i) check your eligibility for certain products and services like insurance, credit and payment products; (ii) issue GST invoice for the products and services purchased for your business requirements; (iii) enhance your experience on the Platform and provide you access to the products and services being offered by us, sellers, affiliates or lending partners. You understand that your access to these products/services may be affected in the event consent is not provided to us.</p>\n        <p>In our efforts to continually improve our product and service offerings, we and our affiliates collect and analyze demographic and profile data about our users&#39; activity on our Platform. We identify and use your IP address to help diagnose problems with our server, and to administer our Platform. Your IP address is also used to help identify you and to gather broad demographic information.</p>\n        <p>We will occasionally ask you to participate in optional surveys conducted either by us or through a third-party market research agency. These surveys may ask you for personal data, contact information, date of birth, demographic information (like zip code, age, or income level), attributes such as your interests, household or lifestyle information, your purchasing behavior or history, preferences, and other such information that you may choose to provide. The surveys may involve collection of voice data or video recordings, the participation of which would purely be voluntary in nature. We use this data to tailor your experience at our Platform, providing you with content that we think you might be interested in and to display content according to your preferences.</p>\n        <p><strong>Cookies</strong></p>\n        <p>We use data collection devices such as &quot;cookies&quot; on certain pages of the Platform to help analyze our web page flow, measure promotional effectiveness, and promote trust and safety. &quot;Cookies&quot; are small files placed on your hard drive that assist us in providing our services. Cookies do not contain any of your personal data. We offer certain features that are only available through the use of a &quot;cookie&quot;. We also use cookies to allow you to enter your password less frequently during a session. Cookies can also help us provide information that is targeted to your interests. Most cookies are &quot;session cookies,&quot; meaning that they are automatically deleted from your hard drive at the end of a session. You are always free to decline/delete our cookies if your browser permits, although in that case you may not be able to use certain features on the Platform and you may be required to re-enter your password more frequently during a session. Additionally, you may encounter &quot;cookies&quot; or other similar devices on certain pages of the Platform that are placed by third parties. We do not control the use of cookies by third parties. We use cookies from third-party partners such as Google Analytics for marketing and analytical purposes. Google Analytics helps us understand how our customers use the site. You can read more about how Google uses your personal data here: <a href=\"https://www.google.com/intl/en/policies/privacy/\">https://www.google.com/intl/en/policies/privacy/</a>. You can opt-out of Google Analytics here: <a href=\"https://tools.google.com/dlpage/gaoptout\">https://tools.google.com/dlpage/gaoptout</a>. You can also control the use of cookies at the individual browser level, but if you choose to disable cookies, it may limit your use of certain features or functions on the services.</p>\n        <p><strong>Sharing of personal data</strong></p>\n        <p>We may share personal data internally within Flipkart group companies including Flipkart Advanz Private Limited, Scapic Innovations Private Limited, and other Flipkart affiliates, related companies and third parties, including Credit Bureaus and business partners (such as UPI platform), for purposes of providing products and services offered by them, such as, personal loans offered by Scapic Innovations Private Limited through its lending partners, insurance, the deferred payment options, Flipkart PayLater offered by Flipkart Advanz Private Limited through its lending partners. These entities and affiliates may share such information with their affiliates, business partners and other third parties for the purpose of conducting the required checks, namely for the purpose of credit underwriting, providing you their products and services and may market to you as a result of such sharing unless you explicitly opt-out.</p>\n        <p>For products that are required to be prescribed by qualified professionals under law, we permit processing of such orders on the Platform only upon confirmation that a valid prescription has been uploaded by you. In cases where the prescriptions uploaded by you are invalid, illegible, or expired or if prescription is not uploaded by you, we may, through third-party vendors connect You with medical practitioners, teleconsultants or third-party professionals where required to rectify the prescription or in case of invalid/illegible/expired prescription or issue a prescription in case prescription is not uploaded by you, based on the information that You provide to them. You agree and acknowledge that you will be redirected to the teleconsultation services only in limited cases where prescription validation or prescription issuance is required.</p>\n        <p>We may disclose your personal data to third parties, such as sellers, business partners. This disclosure may be required for us to provide you access to our products and services; for fulfillment of your orders; for enhancing your experience; for providing feedback on products; to collect payments from you; to comply with our legal obligations; to conduct market research or surveys; to enforce our Terms of Use; to facilitate our marketing and advertising activities; to analyze data; for customer service assistance; to prevent, detect, mitigate, and investigate fraudulent or illegal activities related to our product and services. We may disclose personal data if required to do so by law or in the good faith belief that such disclosure is reasonably necessary to respond to subpoenas, court orders, or other legal process. We may disclose personal data to law enforcement agencies, third party rights owners, or others in the good faith belief that such disclosure is reasonably necessary to enforce our Terms of Use or Privacy Policy; respond to claims that an advertisement, posting or other content violates the rights of a third party; or protect the rights, property or personal safety of our users or the general public.</p>\n        <p>We and our affiliates will share / sell some or all of your personal data with another business entity should we (or our assets) plan to merge with, or be acquired by that business entity, or reorganization, amalgamation, restructuring of business. Should such a transaction occur that another business entity (or the new combined entity) will be required to follow this Privacy Policy with respect to your personal data.</p>\n        <p><strong>Links to Other Sites</strong></p>\n        <p>Our Platform may provide links to other websites or applications that may collect personal data about you and you will be governed by their privacy policies. Flipkart shall not be responsible for the privacy practices or the content of their privacy policies, and we request you to read their privacy policies prior to disclosing any information.</p>\n        <p><strong>Security Precautions</strong></p>\n        <p>We maintain reasonable physical, electronic and procedural safeguards to protect your information. Whenever you access your account information, we offer the use of a secure server. Once your information is in our possession, we adhere to our security guidelines to protect it against unauthorized access. However, by using the Platform, the users accept the inherent security implications of data transmission over the internet and the World Wide Web which cannot always be guaranteed as completely secure, and therefore, there would always remain certain inherent risks regarding use of the Platform. Users are responsible for ensuring the protection of login and password records for their account.</p>\n        <p><strong>Choice/Opt-Out</strong></p>\n        <p>We provide all users with the opportunity to opt-out of receiving non-essential (promotional, marketing-related) communications after setting up an account with us. If you do not wish to receive promotional communications from us, then please login into the Notification Preference page of Platform [<a href=\"https://www.flipkart.com/communication-preferences/email\">https://www.flipkart.com/communication-preferences/email</a>] to unsubscribe/opt-out.</p>\n        <p><strong>Advertisements on Platform</strong></p>\n        <p>We use third-party advertising companies to serve ads when you visit our Platform. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide personalized advertisements about goods and services of interest to you. You have an option to opt out from tracking of personalized advertising using the “Opt out of Ads Personalization” settings using your device’s settings application. Flipkart will have no access to your GAID once you select this feature.</p>\n        <p><strong>Children Information</strong></p>\n        <p>Use of our Platform is available only to persons who can form a legally binding contract under the Indian Contract Act, 1872. We do not knowingly solicit or collect personal data from children under the age of 18 years. If you have shared any personal data of children under the age of 18 years, you represent that you have the authority to do so and permit us to use the information in accordance with this Privacy Policy.</p>\n        <p><strong>Data Retention</strong></p>\n        <p>We retain your personal data in accordance with applicable laws, for a period no longer than is required for the purpose for which it was collected or as required under any applicable law. However, we may retain data related to you if we believe it may be necessary to prevent fraud or future abuse, to enable Flipkart to exercise its legal rights and/or defend against legal claims or if required by law or We may continue to retain your data in anonymised form for analytical and research purposes.</p>\n        <p><strong>Your Rights</strong></p>\n        <p>We take every reasonable step to ensure that your personal data that we process is accurate and, where necessary, kept up to date, and any of your personal data that we process that you inform us is inaccurate (having regard to the purposes for which they are processed) is erased or rectified. You may access, correct, and update your personal data directly through the functionalities provided on the Platform. You may delete certain non-mandatory information by logging into our website and visiting Profile and Settings sections. You can also write to us at the contact information provided below to assist you with these requests.</p>\n        <p>You have an option to withdraw your consent that you have already provided by writing to us at the contact information provided below. Please mention “for withdrawal of consent” in the subject line of your communication. We will verify such requests before acting upon your request. Please note, however, that withdrawal of consent will not be retroactive and will be in accordance with the terms of this Privacy Policy, related Terms of Use and applicable laws. In the event you withdraw consent given to us under this Privacy Policy, such withdrawal may hamper your access to the Platform or restrict provision of our services to you for which we consider that information to be necessary.</p>\n        <p><strong>Your Consent</strong></p>\n        <p>By visiting our Platform or by providing your personal data, you consent to the collection, use, storage, disclosure and otherwise processing of your personal data on the Platform in accordance with this Privacy Policy. If you disclose to us any personal data relating to other people, you represent that you have the authority to do so and to permit us to use the data in accordance with this Privacy Policy.</p>\n        <p>You, while providing your personal data over the Platform or any partner platforms or establishments, consent to us (including our other corporate entities, affiliates, lending partners, technology partners, marketing channels, business partners and other third parties like credit bureaus ) to contact you through SMS, instant messaging apps, call and/or e-mail for the purposes specified in this Privacy Policy.</p>\n        <p><strong>Changes to this Privacy Policy</strong></p>\n        <p>Please check our Privacy Policy periodically for changes . We may update this Privacy Policy to reflect changes to our information practices. We will alert you to significant changes by posting the date our policy got last updated, placing a notice on our Platform, or by sending you an email when we are required to do so by applicable law.</p>\n        <p><strong>Grievance Officer</strong></p>\n        <p>In accordance with Information Technology Act 2000 and rules made there under, the name and contact details of the Grievance Officer are provided below:</p>\n        <p>Mr. Shremanth M</p>\n        <p>Designation: Senior Manager</p>\n        <p>Flipkart Internet Pvt Ltd.</p>\n        <p>Embassy tech village</p>\n        <p>8th floor Block &#39;B&#39; Devarabeesanahalli Village,</p>\n        <p>Varthur Hobli, Bengaluru East Taluk,</p>\n        <p>Bengaluru District,</p>\n        <p>Karnataka, India, 560103.</p>\n        <p>Email: privacy.grievance@flipkart.com</p>\n        <p><strong>Customer Support</strong></p>\n        <p>If you have a query, concern, or complaint in relation to collection or usage of your personal data under this Privacy Policy, please contact us at privacy.grievance@flipkart.com</p>\n        <p>You can reach our customer support team to address any of your queries or complaints related to product and services by clicking the link, selecting your order and choosing &#39;Need Help&#39; option: <a href=\"https://www.flipkart.com/helpcentre\">https://www.flipkart.com/helpcentre</a></p>\n        <p><em>Last Updated: March 2024</em></p>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"./script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Privacy/script.js",
    "content": "// to apply styling to the first paragraph that is immediately followed by a ul element\n\ndocument.querySelectorAll('p + ul').forEach(ul => {\n    ul.previousElementSibling.classList.add('highlight');\n});"
  },
  {
    "path": "pages/Privacy/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    padding: 2rem 5%;\n    margin-top: 4rem;\n}\n\nmain > div > a::after\n{\n    content: \" | \";\n}\n\nmain > div > a:last-of-type::after\n{\n    content: \"\";\n}\n\np\n{\n    margin: 1rem 0rem;\n}\n\np > strong\n{\n    font-weight: 700;\n}\n\nul\n{\n    padding: 1rem;\n}\n\nli\n{\n    margin: 1rem 0rem;\n}\n\n.highlight\n{\n    color: #2874F0;\n    font-weight: 700;\n    font-style: italic;\n}\n\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\nh2\n{\n    margin: 2rem 0rem;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/Security/security.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    background-color: #f4f4f4;\n    margin: 0;\n    padding: 0;\n}\n\n.container {\n    max-width: 800px;\n    margin: 20px auto;\n    padding: 20px;\n    background-color: #fff;\n    border-radius: 8px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\n.h2 {\n    font-size: 12px;\n    color: #333;\n}\n\n.h3 {\n    font-size: 12px;\n}\n\n\n.faq,\n.privacy-policy,\n.contact-us {\n    margin: 20px 0;\n}\n\n\np {\n    font-size: 14px;\n    color: #666;\n    line-height: 1.6;\n}\n\na {\n    color: #0066c0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}"
  },
  {
    "path": "pages/Security/security.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Safe and Secure Shopping</title>\n    <link rel=\"stylesheet\" href=\"security.css\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/bootstrap.min.css\">\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"../../css/homeHeader.css\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/index.css\">\n\t<link rel=\"stylesheet\" href=\"../../css/footer.css\">\n\t\t<!-- <link href=\"../../css/contactus.css\" rel=\"stylesheet\"> -->\n\t\t <style>\n\t\t\t #progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n\t\t </style>\n</head>\n<body>\n\t\n<div id=\"progress-container\">\n\t<div id=\"progress-bar\"></div>\n  </div>\n\n  <script>\n\t\t\n\twindow.addEventListener('scroll', function() {\n\t\tconst winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n\t\tconst height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n\t\tconst scrolled = (winScroll / height) * 100;\n\t\tdocument.getElementById('progress-bar').style.width = scrolled + '%';\n\t});\n\t</script>\n  \n    <header id=\"homeHeader\">\n\t\t<nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\n\t\t\t<a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\n\t\t\t\t\twidth=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n\t\t\t</a>\n\t\t\t<div id=\"navbarNav_\">\n\t\t\t\t<ul class=\"navbar-nav\">\n\t\t\t\t\t<li class=\"nav-item navItem1\">\n\t\t\t\t\t\t<div id=\"searchbar\" class=\"navtab\" style=\"background-color: #F0F5FF; width:43vw; margin-left:-1vw\">\n\t\t\t\t\t\t\t<span id=\"searchButton\" style=\"display: flex;align-items: center; justify-content:space-between;margin-left:15vw;\">\n\t\t\t\t\t\t\t\t<svg width=\"300\" height=\"24\" class=\"\" viewBox=\"0 0 24 24\" fill=\"none\"\n\t\t\t\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\">\n\t\t\t\t\t\t\t\t\t<title>Search Icon</title>\n\t\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\t\td=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\n\t\t\t\t\t\t\t\t\t\tstroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t\t<path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<span class=\"flex-grow\">\n\t\t\t\t\t\t\t\t<input id=\"input_data\" class=\"searchbar\"   type=\"text\" placeholder=\"Search for Products, Brands and More\" />\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<div id=\"autocompleteResults\" class=\"autocom-box\" style=\"display: none;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\ttop: 67px;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tbackground:#f0f5ff;\n\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\tborder: rgba(255, 51, 255, 0.2);\">\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul  class=\"navbar-nav ml-auto\"\n\t\t\t\t\tstyle=\"flex-wrap: nowrap;flex-direction: row;width: 30vw; justify-content: space-between;margin-left: 20px;\">\n\t\t\t\t\t<li class=\"nav-item navItem2 dropdown\" id=\"navbarDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd acnavdd\" href=\"#\" id=\"navbarDropdown\" role=\"button\" style=\"width: 10vw; margin-top:2vh;\"\n\t\t\t\t\t\t\tdata-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img src=\"img/svg/profile-.svg\" alt=\"Profile\" />\n\t\t\t\t\t\t\t<span class=\"navname navname_ac\" style=\"width:50vw;\"> Login <i class=\"bi bi-chevron-down\"></i><i\n\t\t\t\t\t\t\t\t\tclass=\"bi bi-chevron-up\"></i></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0px;\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/home_account.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tMy Profile </a>\n\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"login/login.html\">\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\t\tLog into account </a>\n\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/login-signup.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tSign In</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"plus/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/fkplus-+.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tFlipkart Plus Zone</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/orders.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/orders.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tOrders</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"wishlist/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/wishList.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tWishlist</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/notifications.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/notifications.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tNotifications</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/rewards.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/rewards.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tRewards</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"the-gift-card-store/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/giftCard.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tGift Cards</a>\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/contact.html\">\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"https://pngimg.com/uploads/phone/phone_PNG48988.png\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\t\tContact Us </a>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem3\">\n\t\t\t\t\t\t<a class=\"nav-link cartLogoandname\" style=\"width: 10vw; margin-top:2vh;\" href=\"viewcart/\">\n\t\t\t\t\t\t\t<img\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\" />\n\t\t\t\t\t\t\t<span class=\"navname2\">Cart</span><span id=\"cartItems\"></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem4\">\n\t\t\t\t\t\t<a class=\"nav-link\" href=\"sell-online/\" style=\"width: 12vw;font-size:small; margin-top:2vh;\">\n\t\t\t\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\n\t\t\t\t\t\t\t\talt=\"Become a Seller\" />\n\t\t\t\t\t\t\t<span class=\"navname3\">Become a Seller</span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem5 dropdown \" id=\"moreLinksDropdow\" style=\"width: 10vw; margin-top:2vh;\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\"\n\t\t\t\t\t\t\taria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img class=\"nav-dd\"\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\"\n\t\t\t\t\t\t\t\talt=\"More Links\" />\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"notifications/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/notificationPreferences.svg\"\n\t\t\t\t\t\t\t\t\talt=\"appointment-reminders--v2\" />Notification\n\t\t\t\t\t\t\t\tPreferences</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"helpcentre/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/helpcenter.svg\" alt=\"imgcc\">24x7 Customer Care</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\"\n\t\t\t\t\t\t\t\thref=\"https://advertising.flipkart.com/\"><img\n\t\t\t\t\t\t\t\t\twidth=\"30\" height=\"20\" src=\"img/svg/advertise.svg\" alt=\"Advertise\">Advertise</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"mobile-apps/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/downloadApp.svg\" alt=\"img3\">Download App</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t\n\t\t\t\t</ul>\n\t\t\t</div>\n\t\t</nav>\n\t</header>\n    <div class=\"container\">\n        <p>Safe and Secure Shopping</p>\n\n        <div class=\"faq\">\n            <p>Is making online payment secure on Flipkart?</p>\n            <p>Yes, making the online payment is secure on Flipkart</p>\n        </div>\n\n        <div class=\"faq\">\n            <p>Does Flipkart store my credit/debit card information?</p>\n            <p>No. Flipkart only stores the last 4 digits of your card number for the purpose of card identification.</p>\n        </div>\n\n        <div class=\"faq\">\n            <p>What credit/debit cards are accepted on Flipkart?</p>\n            <p>We accept VISA, MasterCard, Maestro, Rupay, American Express, Diner's Club and Discover credit/debit cards.</p>\n        </div>\n\n        <div class=\"faq\">\n            <p>Do you accept payment made by credit/debit cards issued in other countries?</p>\n            <p>Yes! We accept VISA, MasterCard, Maestro, American Express credit/debit cards issued by banks in India and in the following countries: Australia, Austria, Belgium, Canada, Cyprus, Denmark, Finland, France, Germany, Ireland, Italy, Luxembourg, the Netherlands, New Zealand, Norway, Portugal, Singapore, Spain, Sweden, the UK and the US. Please note that we do not accept internationally issued credit/debit cards for eGV payments/top-ups.</p>\n        </div>\n\n        <div class=\"faq\">\n            <p>What other payment options are available on Flipkart?</p>\n            <p>Apart from Credit and Debit Cards, we accept payments via Internet Banking (covering 44 banks), Cash on Delivery, Equated Monthly Installments (EMI), E-Gift Vouchers, Flipkart Pay Later, UPI, Wallet, and Paytm Postpaid.</p>\n        </div>\n\n        <div class=\"privacy-policy\">\n            <p>Privacy Policy</p>\n            <p>Flipkart.com respects your privacy and is committed to protecting it. For more details, please see our <a href=\"#\">Privacy Policy</a></p>\n        </div>\n\n        <div class=\"contact-us\">\n            <p>Contact Us</p>\n            <p>Couldn't find the information you need? Please <a href=\"#\">Contact Us</a></p>\n        </div>\n    </div>\n\n    <footer id=\"footer\" style=\"background-color: #292d33;\"></footer>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Security_Page/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Security</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <h2 id=\"safe-and-secure-shopping\">Safe and Secure Shopping</h2>\n        <p><strong>Is making online payment secure on Flipkart?</strong></p>\n        <p>Yes, making the online payment is secure on Flipkart</p>\n        <p><strong>Does Flipkart store my credit/debit card infomation?</strong></p>\n        <p>No. Flipkart only stores the last 4 digits of your card number for the purpose of card identification.</p>\n        <p><strong>What credit/debit cards are accepted on Flipkart?</strong></p>\n        <p>We accept VISA, MasterCard, Maestro, Rupay, American Express, Diner&#39;s Club and Discover credit/debit cards.</p>\n        <p><strong>Do you accept payment made by credit/debit cards issued in other countries?</strong></p>\n        <p>Yes! We accept VISA, MasterCard, Maestro, American Express credit/debit cards issued by banks in India and in the following countries:\n        Australia, Austria, Belgium, Canada, Cyprus, Denmark, Finland, France, Germany, Ireland, Italy, Luxembourg, the Netherlands, New Zealand, Norway, Portugal, Singapore, Spain, Sweden, the UK and the US.\n        Please note that we do not accept internationally issued credit/debit cards for eGV payments/top-ups.</p>\n        <p><strong>What other payment options are available on Flipkart?</strong></p>\n        <p>Apart from Credit and Debit Cards, we accept payments via Internet Banking (covering 44 banks), Cash on Delivery, Equated Monthly Installments (EMI), E-Gift Vouchers, Flipkart Pay Later, UPI, Wallet, and Paytm Postpaid.</p>\n        <p><strong>Privacy Policy</strong></p>\n        <p>Flipkart.com respects your privacy and is committed to protecting it. For more details, please see our <a href=\"http://www.flipkart.com/s/privacypolicy\">Privacy Policy</a></p>\n        <p><strong>Contact Us</strong></p>\n        <p>Couldn&#39;t find the information you need? Please <a href=\"http://www.flipkart.com/s/contact\">Contact Us</a></p>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"./script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Security_Page/script.js",
    "content": "// to apply styling to the first paragraph that is immediately followed by a ul element\n\ndocument.querySelectorAll('p + ul').forEach(ul => {\n    ul.previousElementSibling.classList.add('highlight');\n});"
  },
  {
    "path": "pages/Security_Page/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    padding: 2rem 5%;\n    margin-top: 2rem;\n}\n\nmain > div > a::after\n{\n    content: \" | \";\n}\n\nmain > div > a:last-of-type::after\n{\n    content: \"\";\n}\n\np\n{\n    margin: 1rem 0rem;\n}\n\np > strong\n{\n    font-weight: 700;\n}\n\nul\n{\n    padding: 1rem;\n}\n\nli\n{\n    margin: 1rem 0rem;\n}\n\n.highlight\n{\n    color: #2874F0;\n    font-weight: 700;\n    font-style: italic;\n}\n\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\nh2\n{\n    margin: 2rem 0rem;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/Sell_Online/script.js",
    "content": "const sidebar = document.querySelector('.sidebar');\nconst body = document.querySelector('body');\n\nconst showSidebar = () => {\n    sidebar.style.display = \"flex\";\n}\n\nconst hideSidebar = () => {\n    sidebar.style.display = \"none\";\n}\n\nconst loadSmallerImage = (query) => {\n    const image = document.getElementById('sellers-image');\n    if(query.matches){\n        image.src = \"images/sellers_image_mobile_devices.png\";\n    }\n    else{\n        image.src = \"images/sellers_image.webp\";   \n    }\n}\n\nconst mediaQuery1 = window.matchMedia(\"(max-width: 1354px)\");\nloadSmallerImage(mediaQuery1);\nmediaQuery1.addEventListener('change', () => {loadSmallerImage(mediaQuery1)});\n\nconst carousel_browse_left_btn = document.getElementById('carousel-browse-left');\nconst carousel_browse_right_btn = document.getElementById('carousel-browse-right');\n\nconst testimonials = document.getElementsByClassName('testimonial');\nlet prevTestimonial = testimonials[0];\nlet tID = 0;\n\nconst carousel_nav_blocks = document.querySelectorAll('.carousel-indicators');\nlet prev_nav_block = carousel_nav_blocks[0];\n\nconst leftBrowseBtn = document.getElementById('carousel-browse-left');\nconst rightBrowseBtn = document.getElementById('carousel-browse-right');\n\nconst updateBrowseBtnStatus = () => {\n    if(tID === 0){\n        leftBrowseBtn.classList.add('disabled');\n    }\n    else{\n        leftBrowseBtn.classList.remove('disabled');\n    }\n\n    if(tID === testimonials.length-1){\n        rightBrowseBtn.classList.add('disabled');\n    }\n    else{\n        rightBrowseBtn.classList.remove('disabled');\n    }\n};\n\nconst browseLeft = () => {\n    if(tID !== 0){\n        tID--;\n        testimonials[tID].style.display = \"flex\";\n        prevTestimonial.style.display = \"none\";\n        prevTestimonial = testimonials[tID];\n\n        prev_nav_block.classList.remove('highlighted-carousel-indicator');\n        carousel_nav_blocks[tID].classList.add(\"highlighted-carousel-indicator\");\n\n        prev_nav_block = carousel_nav_blocks[tID];\n    }\n    else{\n        clearInterval(intervalId);\n        browseRight();\n        intervalId = setInterval(browseRight, 4000);\n    }\n\n    updateBrowseBtnStatus();\n}\n\nconst browseRight = () => {\n    if(tID !== testimonials.length-1){\n        tID++;\n        testimonials[tID].style.display = \"flex\";\n        prevTestimonial.style.display = \"none\";\n        prevTestimonial = testimonials[tID];\n\n        prev_nav_block.classList.remove('highlighted-carousel-indicator');\n        carousel_nav_blocks[tID].classList.add(\"highlighted-carousel-indicator\");\n\n        prev_nav_block = carousel_nav_blocks[tID];\n    }\n    else{\n        clearInterval(intervalId);\n        browseLeft();\n        intervalId = setInterval(browseLeft, 4000);\n    }\n\n    updateBrowseBtnStatus();\n}\n\nlet intervalId = setInterval(browseRight, 4000);\n\ncarousel_browse_left_btn.addEventListener('click', browseLeft);\ncarousel_browse_right_btn.addEventListener('click', browseRight);\n\nfunction navigateToSection(id){\n    id = Number(id.substring(id.length-1));\n    tID = id-1;\n\n    prevTestimonial.style.display = \"none\";\n    testimonials[tID].style.display = \"flex\";\n    prevTestimonial = testimonials[tID];\n\n    prev_nav_block.classList.remove('highlighted-carousel-indicator');\n    carousel_nav_blocks[tID].classList.add(\"highlighted-carousel-indicator\");\n    \n    prev_nav_block = carousel_nav_blocks[tID];\n\n    updateBrowseBtnStatus();\n}\n\nupdateBrowseBtnStatus();"
  },
  {
    "path": "pages/Sell_Online/sell_online.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"style.css\">\n    <title>Sell Online - Start Selling Online</title>\n    #progress-container {\n        position: fixed ;\n        top: 0px;\n        left: 0;\n        width: 100%;\n        height: 15px;\n        z-index: 99990;\n        /* background: #f3f3f3; */\n    }\n    \n    #progress-bar {\n        height: 53%;\n        width: 0;\n        background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n        box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n        transition: width 0.09s ease-in-out;\n        border-radius: 10px;\n    }\n</head>\n<body>\n    \n\n\n<div id=\"progress-container\">\n    <div id=\"progress-bar\"></div>\n  </div>\n\n  <script>\n        \n    window.addEventListener('scroll', function() {\n        const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n        const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n        const scrolled = (winScroll / height) * 100;\n        document.getElementById('progress-bar').style.width = scrolled + '%';\n    });\n    </script>\n  \n    <div id=\"app-container\">\n        <nav>\n            <ul class=\"sidebar\">\n                <ul id=\"sidebar-head\">\n                    <div>\n                        <li><img id=\"logo-sidebar\" src=\"images/flipkart_seller_hub_logo.svg\" alt=\"flipkart_seller_hub_logo\"></li>\n                    </div>\n                    <div>\n                        <li onclick=\"hideSidebar()\"><svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#000\"><path d=\"m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z\"/></svg></li>\n                    </div>\n                </ul>\n                <li><a href=\"sell_online.html\">Sell Online</a></li>\n                <li><a href=\"sell_online.html\">Fees and Commission</a></li>\n                <li><a href=\"sell_online.html\">Grow</a></li>\n                <li><a href=\"sell_online.html\">Learn</a></li>\n                <li><a href=\"sell_online.html\">Shopsy</a></li>\n                <li><a href=\"sell_online.html\">Login</a></li>\n                <li><a href=\"sell_online.html\">Start Selling</a></li>\n            </ul>\n            <ul id=\"navbar\">\n                <li><img id=\"logo-main\" src=\"images/flipkart_seller_hub_logo.svg\" alt=\"flipkart_seller_hub_logo\"></li>\n                <li class=\"hideOnShorterScreens\"><a href=\"sell_online.html\">Sell Online</a></li>\n                <li class=\"hideOnShorterScreens\"><a href=\"sell_online.html\">Fees and Commission</a></li>\n                <li class=\"hideOnShorterScreens\"><a href=\"sell_online.html\">Grow</a></li>\n                <li class=\"hideOnShorterScreens\"><a href=\"sell_online.html\">Learn</a></li>\n                <li class=\"hideOnShorterScreens\"><a href=\"sell_online.html\">Shopsy</a></li>\n                <li class=\"hideOnShorterScreens\"><a href=\"sell_online.html\">Login</a></li>\n                <li id=\"start-selling-item\"><a href=\"sell_online.html\">Start Selling</a></li>\n                <li id=\"sidebar-btn\" onclick=\"showSidebar()\"><svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#000\"><path d=\"M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z\"/></svg></a></li>\n            </ul>\n        </nav>\n        <div id=\"banner-wrapper\">\n            <div id=\"banner\">\n                <div id=\"breadcrumb\">\n                    <ul id=\"breadcrumb-list\">\n                        <li><a href=\"../../index.html\">Home</a></li>\n                        <li><svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#000\"><path d=\"M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z\"/></svg></li>\n                        <li><a href=\"sell_online.html\">Sell Online</a></li>\n                    </ul>\n                </div>\n                <div id=\"image-title-span\">Sell Online With Flipkart</div>\n                <div id=\"sellers-image-container\">\n                    <img id=\"sellers-image\" src=\"images/sellers_image.webp\" alt=\"sellers_image\">\n                </div>\n            </div>\n            <div id=\"highlights-container\">\n                <div>\n                    <img src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/crore_users_revamp.svg\" alt=\"\">\n                    <span class=\"highlights-info\">45 crore+ Flipkart customers</span>\n                </div>\n                <i id=\"minus-logo\" class=\"fa-solid fa-minus\"></i>\n                <div>\n                    <img src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/wallet-icon.svg\" alt=\"\">\n                    <span class=\"highlights-info\">7* days secure & regular payments</span>\n                </div>\n                <i id=\"minus-logo\" class=\"fa-solid fa-minus\"></i>\n                <div>\n                    <img src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/low-cost-icon.svg\" alt=\"\">\n                    <span class=\"highlights-info\">Low cost of doing business</span>\n                </div>\n                <i id=\"minus-logo\" class=\"fa-solid fa-minus\"></i>\n                <div>\n                    <img src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/seller-support-icon.svg\" alt=\"\">\n                    <span class=\"highlights-info\">One click Seller Support</span>\n                </div>\n                <i id=\"minus-logo\" class=\"fa-solid fa-minus\"></i>\n                <div>\n                    <img src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/shopping-bag-icon.svg\" alt=\"\">\n                    <span class=\"highlights-info\">Access to The Big Billion Days & more</span>\n                </div>\n            </div>\n            <div id=\"success-stories-section\">\n                <div id=\"title-success-stories\">\n                    <span id=\"tss-text-1\">Seller Success</span><span id=\"tss-text-2\">&nbsp;Stories</span>\n                </div>\n                <div id=\"success-stories-inner-container\">\n                    <div id=\"carousel-browse-left\" class=\"carousel-browse-btn\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#333333\"><path d=\"M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z\"/></svg>\n                    </div>\n                    <div id=\"testimonial-container\">\n                        <div id=\"testimonial-1\" class=\"testimonial\">\n                            <div class=\"seller-profile-pic-container\">\n                                <img class=\"seller-profile-pic\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/sellers/Raju_yellow.webp\" alt=\"seller-profile-picture\">\n                            </div>\n                            <div class=\"seller-profile-inner-container\">\n                                <div class=\"seller-name\">Raju Lunawanth, Amazestore</div>\n                                <div class=\"seller-testimonial\">\n                                    Starting with just one category, their unwavering support and innovative platform empowered me to grow exponentially, expanding to six diverse categories and achieving an astounding 5x growth year on year.\n                                </div>\n                            </div>\n                        </div>\n                        <div id=\"testimonial-2\" class=\"testimonial\">\n                            <div class=\"seller-profile-pic-container\">\n                                <img class=\"seller-profile-pic\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/sellers/Vinay_Garg_yellow.webp\" alt=\"seller-profile-picture\">\n                            </div>\n                            <div class=\"seller-profile-inner-container\">\n                                <div class=\"seller-name\">Vinay Garg, Activa & Digi Smart</div>\n                                <div class=\"seller-testimonial\">\n                                    When moving from offline to online business, our aim was to sell 300 orders per month. Today, we sell  more than 700 orders per day and this has been possible because of the growth features on the Flipkart seller dashboard, Flipkart Ads and regular payments.\n                                </div>\n                            </div>\n                        </div>\n                        <div id=\"testimonial-3\" class=\"testimonial\">\n                            <div class=\"seller-profile-pic-container\">\n                                <img class=\"seller-profile-pic\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/sellers/Dinesh_yellow.webp\" alt=\"seller-profile-picture\">\n                            </div>\n                            <div class=\"seller-profile-inner-container\">\n                                <div class=\"seller-name\">Dinesh Kumar Rajpurohit, Kemei</div>\n                                <div class=\"seller-testimonial\">\n                                    On Flipkart, your listings are live in less than 2 hours and you can start selling anywhere in India. I started my business with 3 products, and today I own 3 brands and have also created employment opportunities for my family and team of 25.\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                    <div id=\"carousel-browse-right\" class=\"carousel-browse-btn\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"##333333\"><path d=\"M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z\"/></svg>\n                    </div>\n                </div>\n                <div id=\"carousel-navigator\">\n                    <div class=\"carousel-indicators highlighted-carousel-indicator\" id=\"carousel-indicator-1\" onclick=\"navigateToSection(this.id)\"></div>\n                    <div class=\"carousel-indicators\" id=\"carousel-indicator-2\" onclick=\"navigateToSection(this.id)\"></div>\n                    <div class=\"carousel-indicators\" id=\"carousel-indicator-3\" onclick=\"navigateToSection(this.id)\"></div>\n                </div>\n            </div>\n        </div>\n    </div>\n    <div id=\"popular-categories-section\">\n        <h2 id=\"popular-categories-section-headline\">Popular Categories to sell across India</h2>\n        <div id=\"inner-container\">\n            <div id=\"first-half\">\n                <div>\n                    <div><a href=\"\">Sell Mobile Online</a></div>\n                    <div><a href=\"\">Sell Clothes Online</a></div>\n                    <div><a href=\"\">Sell Sarees Online</a></div>\n                    <div><a href=\"\">Sell Electronics Online</a></div>\n                </div>\n                <div>\n                    <div><a href=\"\">Sell Women Clothes Online</a></div>\n                    <div><a href=\"\">Sell Shoes Online</a></div>\n                    <div><a href=\"\">Sell Jewellery Online</a></div>\n                    <div><a href=\"\">Sell Tshirts Online</a></div>\n                </div>\n                <div>\n                    <div><a href=\"\">Sell Furniture Online</a></div>\n                    <div><a href=\"\">Sell Makeup Online</a></div>\n                    <div><a href=\"\">Sell Paintings Online</a></div>\n                    <div><a href=\"\">Sell Watch Online</a></div>\n                </div>\n                <div>\n                    <div><a href=\"\">Sell Books Online</a></div>\n                    <div><a href=\"\">Sell Home Products Online</a></div>\n                    <div><a href=\"\">Sell Kurtis Online</a></div>\n                    <div><a href=\"\">Sell Beauty Products Online</a></div>\n                </div>\n                <div>\n                    <div><a href=\"\">Sell Toys Online</a></div>\n                    <div><a href=\"\">Sell Appliances Online</a></div>\n                    <div><a href=\"\">Sell Shirts Online</a></div>\n                    <div><a href=\"\">Sell Indian Clothes Online</a></div>\n                </div>            \n            </div>\n            <div id=\"footer-list-divider\"></div>\n            <div id=\"second-half\">\n                <div>\n                    <div class=\"headline\">Sell Online</div>\n                    <div>\n                        <div><a href=\"\">Create Account</a></div>\n                        <div><a href=\"\">List Products</a></div>\n                        <div><a href=\"\">Storage & Shipping</a></div>\n                        <div><a href=\"\">Fees & Commission</a></div>\n                        <div><a href=\"\">Help and Support</a></div>\n                    </div>\n                </div>            \n                <div>\n                    <div class=\"headline\">Grow Your Business</div>\n                    <div>\n                        <div><a href=\"\">Insights & Tools</a></div>\n                        <div><a href=\"\">Flipkart Ads</a></div>\n                        <div><a href=\"\">Flipkart Value Services</a></div>\n                        <div><a href=\"\">Shopping Festivals</a></div>\n                    </div>\n                </div>\n                <div>\n                    <div class=\"headline\">Learn More</div>\n                    <div>\n                        <div><a href=\"\">FAQs</a></div>\n                        <div><a href=\"\">Seller Success Stories</a></div>\n                        <div><a href=\"\">Seller Blogs</a></div>\n                    </div>\n                </div>\n                <div>\n                    <div id=\"download-app-headline\">Download Mobile App</div>\n                    <div><img class=\"footer-download-app-logo\" src=\"images/play_store_logo.png\" alt=\"play_store_logo\"></div>\n                    <div><img class=\"footer-download-app-logo\" src=\"images/apple_store_logo.png\" alt=\"apple_store_logo\"></div>\n                    <div>\n                        <p id=\"socials-headline\">Stay Connected</p>\n                        <div id=\"socials-container-inner\">\n                                <a href=\"\"><img class=\"socials-icon\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/images/group_1000000988.webp\" alt=\"\"></a>\n                                <a href=\"\"><img class=\"socials-icon\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/images/group_1000000986.webp\" alt=\"\"></a>\n                                <a href=\"\"><img class=\"socials-icon\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/images/group_1000000985.webp\" alt=\"\"></a>\n                                <a href=\"\"><img class=\"socials-icon\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/images/group_1000000984.webp\" alt=\"\"></a>\n                                <a href=\"\"><img class=\"socials-icon\" src=\"https://static-assets-web.flixcart.com/fk-sp-static/images/prelogin/images/group_1000000987.webp\" alt=\"\"></a>\n                        </div>\n                    </div>\n                </div>                  \n            </div>\n        </div>\n    </div>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"images/flipkart_seller_hub_logo.svg\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script type=\"text/javascript\" src=\"script.js\"></script>\n    <script src=\"https://kit.fontawesome.com/4ca0345904.js\" crossorigin=\"anonymous\"></script>\n</body>\n</html>"
  },
  {
    "path": "pages/Sell_Online/style.css",
    "content": "*\n{\n    margin: 0;\n    padding: 0;\n}\nhtml\n{\n    overflow-x: hidden;\n}\nbody\n{\n    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;\n    min-height: 100vh;\n    overflow-x: hidden;\n}\nnav\n{\n    background-color: white;\n    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);\n}\nnav ul\n{\n    box-sizing: border-box;\n    width: 100%;\n    list-style: none;\n    display: flex;\n    justify-content: flex-start;\n    align-items: center;\n    padding-left: 30px;\n    padding-right: 30px;\n}\nnav li\n{\n    height: 60px;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\nnav a\n{\n    padding-left: 30px;\n    padding-right: 30px;\n    padding-top: 12px;\n    padding-bottom: 15px;\n    text-decoration: none;\n    color: black;\n}\nnav li:nth-child(6)\n{\n    margin-right: auto;\n}\nnav li :hover\n{\n    color: rgb(2, 124, 213);\n}\n#navbar\n{\n    background-color: white;\n    position: fixed;\n    z-index: 999;\n    top: 0px;\n    left: 0px;\n    right: 0px;\n}\n#headline\n{\n    padding: 10px;\n    font-style: normal;\n    font-weight: 200;\n    font-size: 14px;\n    line-height: 24px;\n    margin-top: 10px;\n    margin-left: 30px;\n    color: rgb(53, 53, 53);\n}\n.sidebar\n{\n    position: fixed;\n    top: 0;\n    right: 0;\n    height: 100vh;\n    width: 250px;\n    z-index: 1000;\n    background-color: rgba(255, 255, 255, 0.8);\n    backdrop-filter: blur(10px);\n    box-shadow: -10px 0 0 10px rgba(0, 0, 0, 0.1);\n    display: none;\n    flex-direction: column;\n    align-items: flex-start;\n    justify-content: flex-start;\n    padding: 35px;\n}\n#sidebar-btn\n{\n    display: none;\n}\n#sidebar-head\n{\n    display: flex;\n    justify-content: flex-start;\n    align-items: center;\n    width: 250px;\n}\n#logo-sidebar\n{\n    width: 10em;\n}\n.sidebar li\n{\n    width: 100%;\n}\n.sidebar ul\n{\n    width: 100%;\n}\n.sidebar :first-child\n{\n    margin-bottom: 1em;\n}\n#start-selling-item\n{\n    background-color: #ffcd00;\n}\n#banner-wrapper\n{\n    margin: 0.7em 7%;\n}\n#breadcrumb\n{\n    position: absolute;\n    top: 15%;\n}\n#breadcrumb-list\n{\n    list-style: none;\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n}\n#breadcrumb-list a\n{\n    color: black;\n    text-decoration: none;\n}\n#sellers-image-container\n{\n    overflow-x: hidden;\n}\n#image-title-span\n{\n    font-size: 40px;\n    font-weight: 600;\n    position: absolute;\n    z-index: 997;\n}\n#banner\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: flex-start;\n}\n#highlights-container\n{\n    display: flex;\n    justify-content: space-around;\n    align-items: center;\n    border: solid 1px transparent;\n    border-radius: 15px;\n    flex-wrap: wrap;\n    box-shadow: 1px 1px 3px gray;\n    position: relative;\n    bottom: 60px;\n    background: white;\n}\n#highlights-container div\n{\n    box-sizing: border-box;\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: center;\n    text-align: center;\n    width: 130px;\n    height: 130px;\n    margin-bottom: 1em;\n}\n#minus-logo\n{\n    transform: rotate(90deg);\n    color: #87c8e9;\n    scale: 1.5;\n}\n#title-success-stories\n{\n    margin-bottom: 50px;\n}\n#tss-text-1\n{\n    color: rgb(2, 124, 213);\n}\n#tss-text-2\n{\n    color: black;\n}\n#tss-text-1, #tss-text-2\n{\n    font-style: normal;\n    font-size: 40px;\n    font-weight: 600;\n}\n#testimonial-container\n{\n    background-color: rgb(243, 250, 253);\n    border-radius: 30px;\n    padding: 2em;\n}\n#success-stories-inner-container\n{\n    display: flex;\n    align-items: center;\n}\n.testimonial\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    display: none;\n}\n#testimonial-1\n{\n    display: flex;\n}\n.seller-profile-inner-container\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    align-items: flex-start;\n}\n.carousel-browse-btn\n{\n    padding: 15px;\n    border-radius: 50%;\n    z-index: 1;\n    box-shadow: rgba(0, 0, 0, 0.11) 0px 1px 5px 0px;\n    backdrop-filter: blur(5px);\n    color: #333333;\n    background-color: white;\n    cursor: pointer;\n}\n#carousel-browse-left\n{\n    position: absolute;\n    left: 80px;\n}\n#carousel-browse-right\n{\n    position: absolute;\n    right: 80px;\n}\n.seller-name\n{\n    font-style: normal;\n    font-size: 24px;\n    font-weight: 600;\n    line-height: 60px;\n    color: rgb(53, 53, 53);\n}\n.seller-testimonial\n{\n    line-height: 2em;\n}\n.seller-profile-pic\n{\n    border-radius: 50%;\n}\n.seller-profile-pic-container\n{\n    margin: 2em;\n}\n#carousel-navigator\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n.carousel-indicators\n{\n    background-color: rgb(174, 173, 174);\n    margin-top: 1em;\n    margin-right: 0.5em;\n    height: 0.75em;\n    width: 0.75em;\n    border-radius: 50%;\n    cursor: pointer;\n}\n.highlighted-carousel-indicator\n{\n    background-color: rgb(2, 124, 213);\n    height: 0.75em;\n    width: 1.75em;\n    border-radius: 16px;\n}\n.disabled\n{\n    pointer-events: none;\n    opacity: 0.5;\n}\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n#popular-categories-section\n{\n    background-color: #3f3f3f;\n    color: white;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: space-evenly;\n    height: 80dvh;\n    overflow-x: hidden;\n}\n#popular-categories-section a\n{\n    text-decoration: none;\n    color: white;\n}\n#popular-categories-section-headline\n{\n    font-size: 32px;\n    font-weight: 600;\n}\n#popular-categories-section #first-half, #popular-categories-section #second-half\n{\n    display: flex;\n    align-items: start;\n}\n#popular-categories-section #first-half > div, #popular-categories-section #second-half > div\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    align-items: flex-start;\n}\n#popular-categories-section #first-half > div div, #popular-categories-section #second-half > div div\n{\n    margin-bottom: 0.6em;\n    font-weight: 600;\n    font-size: 16px;\n    width: 250px;\n}\n#popular-categories-section #first-half > div > div a, #popular-categories-section #second-half > div > div a\n{\n    font-size: 13.5px;\n    font-weight: 500;\n}\n#popular-categories-section #second-half .headline\n{\n    margin-bottom: 1.2em;\n}\n#popular-categories-section #inner-container\n{\n    display: flex;\n    flex-direction: column;\n}\n#footer-list-divider\n{\n    border: 1px solid rgb(113, 113, 113);\n    height: 0px;\n    width: 100%;\n    margin: 20px 0px;\n    opacity: 0.5;\n}\n#socials-headline\n{\n    font-weight: 600;\n    margin-bottom: 1em;\n}\n#socials-container-inner\n{\n    display: flex;\n    flex-direction: row;\n}\n#socials-container-inner > a\n{\n    margin-right: 1em;\n}\n.socials-icon\n{\n    width: 30px;\n    height: 30px;\n}\n@media(max-width: 1024px)\n{\n    #image-title-span\n    {\n        font-size: 30px;\n        font-weight: 600;\n        position: absolute;\n        top: 90px;\n        z-index: 997;\n    }\n    #sellers-image\n    {\n        position: relative;\n        top: 25px;\n    }\n    #banner\n    {\n        display: flex;\n        flex-direction: column;\n        justify-content: center;\n        align-items: flex-start;\n    }\n    #breadcrumb-list\n    {\n        display: none;\n    }\n    #highlights-container\n    {\n        bottom: 100px;\n    }\n    .hideOnShorterScreens\n    {\n        display: none;\n    }\n    #sidebar-btn\n    {\n        display: flex;\n    }\n    nav ul\n    {\n        justify-content: flex-end;\n    }\n    nav ul :first-child\n    {\n        margin-right: auto;\n    }\n    #sellers-image\n    {\n        scale: 0.5;\n    }\n    #success-stories-inner-container\n    {\n        align-items: flex-end;\n    }\n    .testimonial\n    {\n        flex-direction: column;\n    }\n    .seller-profile-inner-container\n    {\n        justify-content: center;\n        align-items: center;\n    }\n    .carousel-browse-btn\n    {\n        padding: 0px;\n        border-radius: 0%;\n        box-shadow: none;\n    }\n    #carousel-browse-left\n    {\n        position: relative;\n        top: 35px;\n    }\n    #carousel-browse-right\n    {\n        position: relative;\n        top: 35px;\n    }\n    .seller-testimonial\n    {\n        text-align: center;\n    }\n    .seller-name\n    {\n        font-size: 20px;\n        line-height: 40px;\n        text-align: center;\n    }\n}\n@media(max-width: 800px)\n{\n    #navbar\n    {\n        width: 795px;\n    }\n    #popular-categories-section\n    {\n        height: 65vh;\n    }\n    #popular-categories-section-headline\n    {\n        font-size: 17px;\n        font-weight: 600;\n    }\n    #popular-categories-section #first-half > div div, #popular-categories-section #second-half > div div\n    {\n        font-size: 10px;\n        width: 65px;\n        margin-right: 0.2em;\n    }\n    #popular-categories-section #first-half > div > div a, #popular-categories-section #second-half > div > div a\n    {\n        font-size: 8px;\n    }\n    #socials-headline\n    {\n        font-size: 10px;\n    }\n    .socials-icon\n    {\n        width: 20px;\n        height: 20px;\n    }\n    .footer-download-app-logo\n    {\n        scale: 0.8;\n    }\n}\n@media(max-width: 796px)\n{\n    #navbar\n    {\n        width: 750px;\n    }   \n}\n@media(max-width: 725px)\n{\n    #navbar\n    {\n        width: 700px;\n    }   \n}\n@media(max-width: 700px)\n{\n    #navbar\n    {\n        width: 650px;\n    }   \n}\n@media(max-width: 617px)\n{\n    #navbar\n    {\n        width: 607px;\n    }   \n    #sellers-image\n    {\n        position: relative;\n        right: 250px;\n    }\n    nav ul \n    {\n        padding: 0;\n        justify-content: center;\n    }\n    .sidebar\n    {\n        width: 100%;\n    }\n}\n@media(max-width: 596px)\n{\n    #navbar\n    {\n        width: 550px;\n    }   \n}\n@media(max-width: 556px)\n{\n    #navbar\n    {\n        width: 510px;\n    }   \n}\n@media(max-width: 530px)\n{\n    #navbar\n    {\n        width: 500px;\n    }\n    #logo-footer\n    {\n        scale: 0.9;\n    }\n    #footer-inner-container\n    {\n        font-size: 10px;\n    }\n}\n@media(max-width: 496px)\n{\n    #navbar\n    {\n        width: 450px;\n    }   \n}\n@media(max-width: 450px)\n{\n    #navbar\n    {\n        width: 445px;\n    }\n}\n@media(max-width: 425px)\n{\n    #navbar\n    {\n        width: 410px;\n    }\n}\n@media(max-width: 400px)\n{\n    #navbar\n    {\n        width: 345px;\n    }\n}\n@media(max-width: 320px)\n{\n    #navbar\n    {\n        width: 300px;\n    }\n    #popular-categories-section-headline\n    {\n        font-size: 12px;\n        font-weight: 600;\n    }\n    #popular-categories-section #first-half > div div, #popular-categories-section #second-half > div div\n    {\n        font-size: 4px;\n        width: 60px;\n        margin-right: 0.1em;\n    }\n    #popular-categories-section #first-half > div > div a, #popular-categories-section #second-half > div > div a\n    {\n        font-size: 5px;\n    }\n    #socials-headline, #download-app-headline\n    {\n        font-size: 5px;\n    }\n    .socials-icon\n    {\n        width: 20px;\n        height: 20px;\n    }\n    .footer-download-app-logo\n    {\n        scale: 0.7;\n    }\n}"
  },
  {
    "path": "pages/Shipping/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Shipping</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <h2 id=\"shipping\">Shipping</h2>\n        <p><strong>What are the delivery charges?</strong></p>\n        <p>Delivery charge varies with each Seller.</p>\n        <p>Sellers incur relatively higher shipping costs on low value items. In such cases, charging a nominal delivery charge helps them offset logistics costs. Please check your order summary to understand the delivery charges for individual products.</p>\n        <p> For Products listed as Flipkart Plus, a Rs 40 charge for delivery per item may be applied if the order value is less than Rs 500. While, orders of Rs 500 or above are delivered free.</p>\n        <p><strong>Why does the delivery date not correspond to the delivery timeline of X-Y business days?</strong></p>\n        <p>It is possible that the Seller or our courier partners have a holiday between the day your placed your order and the date of delivery, which is based on the timelines shown on the product page. In this case, we add a day to the estimated date. Some courier partners and Sellers do not work on Sundays and this is factored in to the delivery dates.</p>\n        <p><strong>What is the estimated delivery time?</strong></p>\n        <p>Sellers generally procure and ship the items within the time specified on the product page. Business days exclude public holidays and Sundays.</p>\n        <p>Estimated delivery time depends on the following factors:</p>\n        <ul>\n        <li>The Seller offering the product</li>\n        <li>Product&#39;s availability with the Seller </li>\n        <li>The destination to which you want the order shipped to and location of the Seller.</li>\n        </ul>\n        <p><strong>Are there any hidden costs (sales tax, octroi etc) on items sold by Sellers on Flipkart?</strong></p>\n        <p>There are NO hidden charges when you make a purchase on Flipkart. List prices are final and all-inclusive. The price you see on the product page is exactly what you would pay.</p>\n        <p>Delivery charges are not hidden charges and are charged (if at all) extra depending on the Seller&#39;s shipping policy.</p>\n        <p><strong>Why does the estimated delivery time vary for each seller?</strong></p>\n        <p>You have probably noticed varying estimated delivery times for sellers of the product you are interested in. Delivery times are influenced by product availability, geographic location of the Seller, your shipping destination and the courier partner&#39;s time-to-deliver in your location.</p>\n        <p>Please enter your default pin code on the product page (you don&#39;t have to enter it every single time) to know more accurate delivery times on the product page itself.</p>\n        <p><strong>Seller does not/cannot ship to my area. Why?</strong></p>\n        <p>Please enter your pincode on the product page (you don&#39;t have to enter it every single time) to know whether the product can be delivered to your location.</p>\n        <p>If you haven&#39;t provided your pincode until the checkout stage, the pincode in your shipping address will be used to check for serviceability.</p>\n        <p>Whether your location can be serviced or not depends on</p>\n        <ul>\n        <li>Whether the Seller ships to your location</li>\n        <li>Legal restrictions, if any, in shipping particular products to your location</li>\n        <li>The availability of reliable courier partners in your location</li>\n        </ul>\n        <p>At times Sellers prefer not to ship to certain locations. This is entirely at their discretion.</p>\n        <p><strong>Why is the CoD option not offered in my location?</strong></p>\n        <p>Availability of CoD depends on the ability of our courier partner servicing your location to accept cash as payment at the time of delivery.</p>\n        <p>Our courier partners have limits on the cash amount payable on delivery depending on the destination and your order value might have exceeded this limit. Please enter your pin code on the product page to check if CoD is available in your location.</p>\n        <p><strong>I need to return an item, how do I arrange for a pick-up?</strong></p>\n        <p>Returns are easy. Contact Us to initiate a return. You will receive a call explaining the process, once you have initiated a return.</p>\n        <p>Wherever possible Ekart Logistics will facilitate the pick-up of the item. In case, the pick-up cannot be arranged through Ekart, you can return the item through a third-party courier service. Return fees are borne by the Seller.</p>\n        <p><strong>I did not receive my order but got a delivery confirmation SMS/Email.</strong></p>\n        <p>In case the product was not delivered and you received a delivery confirmation email/SMS, report the issue within 7 days from the date of delivery confirmation for the seller to investigate.</p>\n        <p><strong>What do the different tags like &quot;In Stock&quot;, &quot;Available&quot; mean?</strong></p>\n        <p><strong>&#39;In Stock&#39;</strong></p>\n        <p>For items listed as &quot;In Stock&quot;, Sellers will mention the delivery time based on your location pincode (usually 2-3 business days, 4-5 business days or 4-6 business days in areas where standard courier service is available). For other areas, orders will be sent by Registered Post through the Indian Postal Service which may take 1-2 weeks depending on the location.</p>\n        <p><strong>&#39;Available&#39;</strong></p>\n        <p>The Seller might not have the item in stock but can procure it when an order is placed for the item. The delivery time will depend on the estimated procurement time and the estimated shipping time to your location.</p>\n        <p><strong>&#39;Preorder&#39; or &#39;Forthcoming&#39;</strong></p>\n        <p>Such items are expected to be released soon and can be pre-booked for you. The item will be shipped to you on the day of it&#39;s official release launch and will reach you in 2 to 6 business days. The Preorder duration varies from item to item. Once known, release time and date is mentioned. (Eg. 5th May, August 3rd week)</p>\n        <p><strong>&#39;Out of Stock&#39;</strong></p>\n        <p>Currently, the item is not available for sale. Use the &#39;Notify Me&#39; feature to know once it is available for purchase.</p>\n        <p><strong>&#39;Imported&#39;</strong></p>\n        <p>Sometimes, items have to be sourced by Sellers from outside India. These items are mentioned as &#39;Imported&#39; on the product page and can take at least 10 days or more to be delivered to you.</p>\n        <p><strong>&#39;Back In Stock Soon&#39;</strong></p>\n        <p>The item is popular and is sold out. You can however &#39;book&#39; an order for the product and it will be shipped according to the timelines mentioned by the Seller.</p>\n        <p><strong>&#39;Temporarily Unavailable&#39;</strong></p>\n        <p>The product is currently out of stock and is not available for purchase. The product could to be in stock soon. Use the &#39;Notify Me&#39; feature to know when it is available for purchase.</p>\n        <p><strong>&#39;Permanently Discontinued&#39;</strong></p>\n        <p>This product is no longer available because it is obsolete and/or its production has been discontinued.</p>\n        <p><strong>&#39;Out of Print&#39;</strong></p>\n        <p>This product is not available because it is no longer being published and has been permanently discontinued.</p>\n        <h2 id=\"-does-flipkart-deliver-internationally-\"><strong>Does Flipkart deliver internationally?</strong></h2>\n        <p>As of now, Flipkart doesn&#39;t deliver items internationally.</p>\n        <p>You will be able to make your purchases on our site from anywhere in the world with credit/debit cards issued in India and 21 other countries, but please ensure the delivery address is in India.</p>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"./script.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "pages/Shipping/script.js",
    "content": "// to apply styling to the first paragraph that is immediately followed by a ul element\n\ndocument.querySelectorAll('p + ul').forEach(ul => {\n    ul.previousElementSibling.classList.add('highlight');\n});"
  },
  {
    "path": "pages/Shipping/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    padding: 2rem 5%;\n    margin-top: 3rem;\n}\n\nmain > div > a::after\n{\n    content: \" | \";\n}\n\nmain > div > a:last-of-type::after\n{\n    content: \"\";\n}\n\np\n{\n    margin: 1rem 0rem;\n}\n\np > strong\n{\n    font-weight: 700;\n}\n\nul\n{\n    padding: 1rem;\n}\n\nli\n{\n    margin: 1rem 0rem;\n}\n\n.highlight\n{\n    color: #2874F0;\n    font-weight: 700;\n    font-style: italic;\n}\n\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\nh2\n{\n    margin: 2rem 0rem;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/Sitemap/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <link rel=\"stylesheet\" href=\"./style.css\">\n    <title>Flipkart - Sitemap</title>\n</head>\n<body>\n    <nav>\n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n    </nav>\n    <main>\n        <h1>Categories</h1>\n        <h2><a href=\"/books/pr?sid=bks\">Books</a></h2><div><a class=\"link\" href=\"/magazines/pr?sid=bks,wsm\">Magazines</a> <a class=\"link\" href=\"/higher-education-and-professional-books/pr?sid=bks,f50\">Higher Education and Professional Books</a> <a class=\"link\" href=\"/electronics-and-communications-engineering-books/pr?sid=bks,f50,pw8\">Electronics and Communications Engineering Books</a> <a class=\"link\" href=\"/mechanical-engineering-and-material-books/pr?sid=bks,f50,kf5\">Mechanical Engineering and Material Books</a> <a class=\"link\" href=\"/mathematics-and-science-books/pr?sid=bks,f50,d9p\">Mathematics and Science Books</a> <a class=\"link\" href=\"/law-books/pr?sid=bks,f50,9pq\">Law Books</a> <a class=\"link\" href=\"/earth-sciences-books/pr?sid=bks,f50,vex\">Earth Sciences Books</a> <a class=\"link\" href=\"/computing-and-information-technology-books/pr?sid=bks,f50,ksz\">Computing and  Information Technology Books</a> <a class=\"link\" href=\"/medical-and-nursing-books/pr?sid=bks,f50,f15\">Medical and Nursing Books</a> <a class=\"link\" href=\"/applied-sciences-and-other-technologies-books/pr?sid=bks,f50,pz1\">Applied Sciences and Other Technologies Books</a> <a class=\"link\" href=\"/civil-engineering-books/pr?sid=bks,f50,8zs\">Civil Engineering Books</a> <a class=\"link\" href=\"/history-and-archaeology-books/pr?sid=bks,9xa\">History and Archaeology Books</a> <a class=\"link\" href=\"/indian-and-asian-history-books/pr?sid=bks,9xa,8rb\">Indian and Asian History Books</a> <a class=\"link\" href=\"/archaeology-books/pr?sid=bks,9xa,3cy\">Archaeology Books</a> <a class=\"link\" href=\"/other-history-books/pr?sid=bks,9xa,das\">Other History Books</a> <a class=\"link\" href=\"/military-history-books/pr?sid=bks,9xa,z0q\">Military History Books</a> <a class=\"link\" href=\"/lifestyle-hobby-and-sport-books/pr?sid=bks,wcr\">Lifestyle, Hobby and Sport Books</a> <a class=\"link\" href=\"/other-lifestyle-books/pr?sid=bks,wcr,np5\">Other Lifestyle Books</a> <a class=\"link\" href=\"/sports-and-adventure-books/pr?sid=bks,wcr,bae\">Sports and Adventure Books</a> <a class=\"link\" href=\"/cookery-books/pr?sid=bks,wcr,imt\">Cookery Books</a> <a class=\"link\" href=\"/hobby-quizzes-and-game-books/pr?sid=bks,wcr,qjr\">Hobby, Quizzes and Game Books</a> <a class=\"link\" href=\"/humour-books/pr?sid=bks,wcr,8nw\">Humour Books</a> <a class=\"link\" href=\"/travel-and-holiday-books/pr?sid=bks,wcr,pf5\">Travel and Holiday Books</a> <a class=\"link\" href=\"/test-preparation-books/pr?sid=bks,4b5\">Test Preparation Books</a> <a class=\"link\" href=\"/medical-entrance-exam-books/pr?sid=bks,4b5,108\">Medical Entrance Exam Books</a> <a class=\"link\" href=\"/civil-services-entrance-exam-books/pr?sid=bks,4b5,97c\">Civil Services Entrance Exam Books</a> <a class=\"link\" href=\"/defence-entrance-exam-books/pr?sid=bks,4b5,3e3\">Defence Entrance Exam Books</a> <a class=\"link\" href=\"/legal-entrance-exam-books/pr?sid=bks,4b5,ccn\">Legal Entrance Exam Books</a> <a class=\"link\" href=\"/banking-recruitment-exam-books/pr?sid=bks,4b5,nzl\">Banking Recruitment Exam Books</a> <a class=\"link\" href=\"/finance-entrance-exam-books/pr?sid=bks,4b5,h9j\">Finance Entrance Exam Books</a> <a class=\"link\" href=\"/government-recruitment-exam-books/pr?sid=bks,4b5,zvx\">Government Recruitment Exam Books</a> <a class=\"link\" href=\"/engineering-entrance-exam-books/pr?sid=bks,4b5,gpe\">Engineering Entrance Exam Books</a> <a class=\"link\" href=\"/management-entrance-exam-books/pr?sid=bks,4b5,ydu\">Management Entrance Exam Books</a> <a class=\"link\" href=\"/international-entrance-exam-books/pr?sid=bks,4b5,enk\">International Entrance Exam Books</a> <a class=\"link\" href=\"/other-entrance-exam-books/pr?sid=bks,4b5,0n3\">Other Entrance Exam Books</a> <a class=\"link\" href=\"/literature-books/pr?sid=bks,w4n\">Literature Books</a> <a class=\"link\" href=\"/mythological-text-books/pr?sid=bks,w4n,iqg\">Mythological Text Books</a> <a class=\"link\" href=\"/other-literature-books/pr?sid=bks,w4n,tal\">Other Literature Books</a> <a class=\"link\" href=\"/poetry-books/pr?sid=bks,w4n,24u\">Poetry Books</a> <a class=\"link\" href=\"/plays/pr?sid=bks,w4n,4ua\">Plays</a> <a class=\"link\" href=\"/healthy-living-and-wellness-books/pr?sid=bks,4z4\">Healthy Living and Wellness Books</a> <a class=\"link\" href=\"/family-and-wellness-books/pr?sid=bks,4z4,yc9\">Family and Wellness Books</a> <a class=\"link\" href=\"/other-health-books/pr?sid=bks,4z4,val\">Other Health Books</a> <a class=\"link\" href=\"/body-mind-and-spirit-books/pr?sid=bks,4z4,c9i\">Body, Mind and Spirit Books</a> <a class=\"link\" href=\"/biographies-memoirs-and-general-nonficton-books/pr?sid=bks,wmz\">Biographies, Memoirs and General Non-Ficton Books</a> <a class=\"link\" href=\"/biographies-and-autobiographies/pr?sid=bks,wmz,kdl\">Biographies and Autobiographies</a> <a class=\"link\" href=\"/diaries-letters-and-speeches/pr?sid=bks,wmz,vtw\">Diaries, Letters and Speeches</a> <a class=\"link\" href=\"/memoirs/pr?sid=bks,wmz,b8f\">Memoirs</a> <a class=\"link\" href=\"/graphic-novels-and-comics/pr?sid=bks,2vh\">Graphic Novels and Comics</a> <a class=\"link\" href=\"/manga/pr?sid=bks,2vh,bno\">Manga</a> <a class=\"link\" href=\"/other-comics/pr?sid=bks,2vh,l3z\">Other Comics</a> <a class=\"link\" href=\"/indian-comics/pr?sid=bks,2vh,ylo\">Indian Comics</a> <a class=\"link\" href=\"/school-books/pr?sid=bks,ptf\">School Books</a> <a class=\"link\" href=\"/school-textbooks/pr?sid=bks,ptf,bwv\">School Textbooks</a> <a class=\"link\" href=\"/olympiads-and-test-books/pr?sid=bks,ptf,9vj\">Olympiads and Test Books</a> <a class=\"link\" href=\"/school-guide-books/pr?sid=bks,ptf,wya\">School Guide Books</a> <a class=\"link\" href=\"/selfhelp-books/pr?sid=bks,5uw\">Self-Help Books</a> <a class=\"link\" href=\"/career-advice-books/pr?sid=bks,5uw,e6z\">Career Advice Books</a> <a class=\"link\" href=\"/personal-finance-books/pr?sid=bks,5uw,wp9\">Personal Finance Books</a> <a class=\"link\" href=\"/popular-psychology-books/pr?sid=bks,5uw,tee\">Popular Psychology Books</a> <a class=\"link\" href=\"/other-selfhelp-books/pr?sid=bks,5uw,f1w\">Other Self-Help Books</a> <a class=\"link\" href=\"/philosophy-and-religion-books/pr?sid=bks,sqa\">Philosophy and Religion Books</a> <a class=\"link\" href=\"/philosophy-books/pr?sid=bks,sqa,cmq\">Philosophy Books</a> <a class=\"link\" href=\"/religion-and-belief-books/pr?sid=bks,sqa,0j0\">Religion and Belief Books</a> <a class=\"link\" href=\"/other-philosophy-and-religion-books/pr?sid=bks,sqa,tpn\">Other Philosophy and Religion Books</a> <a class=\"link\" href=\"/social-science-books/pr?sid=bks,rbc\">Social Science Books</a> <a class=\"link\" href=\"/society-and-culture-books/pr?sid=bks,rbc,aza\">Society and Culture Books</a> <a class=\"link\" href=\"/politics-books/pr?sid=bks,rbc,afq\">Politics Books</a> <a class=\"link\" href=\"/sociology-and-anthropology-books/pr?sid=bks,rbc,iyt\">Sociology and Anthropology Books</a> <a class=\"link\" href=\"/psychology-books/pr?sid=bks,rbc,th4\">Psychology Books</a> <a class=\"link\" href=\"/reference-books/pr?sid=bks,hbw\">Reference Books</a> <a class=\"link\" href=\"/arts-language-and-linguistic-books/pr?sid=bks,mzb\">Arts, Language and Linguistic Books</a> <a class=\"link\" href=\"/language-and-linguistic-books/pr?sid=bks,mzb,bm2\">Language and Linguistic Books</a> <a class=\"link\" href=\"/art-books/pr?sid=bks,mzb,vwl\">Art Books</a> <a class=\"link\" href=\"/children-and-young-adult-books/pr?sid=bks,xql\">Children and Young Adult Books</a> <a class=\"link\" href=\"/action-and-adventure-books/pr?sid=bks,xql,n8a\">Action and Adventure Books</a> <a class=\"link\" href=\"/fantasy-and-science-fiction-books/pr?sid=bks,xql,ajj\">Fantasy and Science Fiction Books</a> <a class=\"link\" href=\"/other-children-books/pr?sid=bks,xql,ira\">Other Children Books</a> <a class=\"link\" href=\"/childrens-picture-and-activity-books/pr?sid=bks,xql,5hj\">Children's Picture and Activity Books</a> <a class=\"link\" href=\"/general-fiction-and-classic-books/pr?sid=bks,xql,a5i\">General Fiction and Classic Books</a> <a class=\"link\" href=\"/other-books/pr?sid=bks,8y7\">Other Books</a> <a class=\"link\" href=\"/religion-spirituality-books/pr?sid=bks,b8u\">Religion & Spirituality Books</a> <a class=\"link\" href=\"/holy-books/pr?sid=bks,b8u,9qr\">Holy Books</a> <a class=\"link\" href=\"/institutions/pr?sid=bks,b8u,nt6\">Institutions</a> <a class=\"link\" href=\"/new-age-and-occult/pr?sid=bks,b8u,bhj\">New Age and Occult</a> <a class=\"link\" href=\"/prayer/pr?sid=bks,b8u,ugo\">Prayer</a> <a class=\"link\" href=\"/religions/pr?sid=bks,b8u,ei7\">Religions</a> <a class=\"link\" href=\"/religious-philosphy/pr?sid=bks,b8u,lg2\">Religious Philosphy</a> <a class=\"link\" href=\"/eastern/pr?sid=bks,b8u,zzs\">Eastern</a> <a class=\"link\" href=\"/philosophy/pr?sid=bks,b8u,en7\">Philosophy</a> <a class=\"link\" href=\"/bahai/pr?sid=bks,b8u,dz1\">Baha'i</a> <a class=\"link\" href=\"/others/pr?sid=bks,b8u,rp4\">Others</a> <a class=\"link\" href=\"/religious-studies/pr?sid=bks,b8u,nmb\">Religious Studies</a> <a class=\"link\" href=\"/tarot-deck-collection/pr?sid=bks,b8u,ljk\">Tarot deck & Collection</a> <a class=\"link\" href=\"/spirituality/pr?sid=bks,b8u,dro\">Spirituality</a> <a class=\"link\" href=\"/economics-business-and-management-books/pr?sid=bks,xjk\">Economics, Business and Management Books</a> <a class=\"link\" href=\"/industrial-studies-books/pr?sid=bks,xjk,ye7\">Industrial Studies Books</a> <a class=\"link\" href=\"/finance-and-accounting-books/pr?sid=bks,xjk,n8m\">Finance and Accounting Books</a> <a class=\"link\" href=\"/business-and-management-books/pr?sid=bks,xjk,cyn\">Business and Management Books</a> <a class=\"link\" href=\"/general-commerce-books/pr?sid=bks,xjk,skm\">General Commerce Books</a> <a class=\"link\" href=\"/economics-books/pr?sid=bks,xjk,u8r\">Economics Books</a> <a class=\"link\" href=\"/selfhelp-books/pr?sid=bks,keq\">Self-Help Books</a> <a class=\"link\" href=\"/affirmations/pr?sid=bks,keq,7b5\">Affirmations</a> <a class=\"link\" href=\"/eating-disorders/pr?sid=bks,keq,eug\">Eating Disorders</a> <a class=\"link\" href=\"/spiritual-self-help-and-meditation/pr?sid=bks,keq,nm0\">Spiritual Self Help and Meditation</a> <a class=\"link\" href=\"/adult-children-of-substance-abusers/pr?sid=bks,keq,7fg\">Adult Children of Substance Abusers</a> <a class=\"link\" href=\"/for-dummies-series/pr?sid=bks,keq,wvn\">For Dummies Series</a> <a class=\"link\" href=\"/handwriting-analysis-or-graphology/pr?sid=bks,keq,1w0\">Handwriting Analysis or Graphology</a> <a class=\"link\" href=\"/substance-abuse-addictions/pr?sid=bks,keq,8eb\">Substance Abuse & Addictions</a> <a class=\"link\" href=\"/codependency/pr?sid=bks,keq,1ox\">Codependency</a> <a class=\"link\" href=\"/mood-disorders/pr?sid=bks,keq,7c6\">Mood Disorders</a> <a class=\"link\" href=\"/neurolinguistic-programming-nlp/pr?sid=bks,keq,5uj\">Neuro-Linguistic Programming (NLP)</a> <a class=\"link\" href=\"/motivational-inspirational-books/pr?sid=bks,keq,a2p\">Motivational & Inspirational</a> <a class=\"link\" href=\"/sexual-instruction/pr?sid=bks,keq,87q\">Sexual Instruction</a> <a class=\"link\" href=\"/abuse/pr?sid=bks,keq,b4s\">Abuse</a> <a class=\"link\" href=\"/personal-growth/pr?sid=bks,keq,5go\">Personal Growth</a> <a class=\"link\" href=\"/aging/pr?sid=bks,keq,wjb\">Aging</a> <a class=\"link\" href=\"/twelvestep-programs/pr?sid=bks,keq,xk6\">Twelve-Step Programs</a> <a class=\"link\" href=\"/hobbies-interests-books/pr?sid=bks,xbg\">Hobbies & Interests Books</a> <a class=\"link\" href=\"/sports-and-games/pr?sid=bks,xbg,r8t\">Sports and Games</a> <a class=\"link\" href=\"/antiques-collectibles/pr?sid=bks,xbg,s3v\">Antiques & Collectibles</a> <a class=\"link\" href=\"/outdoors-nature/pr?sid=bks,xbg,2l4\">Outdoors & Nature</a> <a class=\"link\" href=\"/photography/pr?sid=bks,xbg,hzz\">Photography</a> <a class=\"link\" href=\"/music-films-and-entertainment-books/pr?sid=bks,xbg,62w\">Music, Films and Entertainment Books</a> <a class=\"link\" href=\"/cooking-food-wine-books/pr?sid=bks,xbg,43p\">Cooking, Food & Wine Books</a> <a class=\"link\" href=\"/home-garden/pr?sid=bks,xbg,ylr\">Home & Garden</a> <a class=\"link\" href=\"/arts-crafts/pr?sid=bks,xbg,riu\">Arts & Crafts</a> <a class=\"link\" href=\"/travel/pr?sid=bks,xbg,5u5\">Travel</a> <a class=\"link\" href=\"/educational-and-professional-books/pr?sid=bks,enp\">Educational and Professional Books</a> <a class=\"link\" href=\"/computers-internet-books/pr?sid=bks,enp,wum\">Computers & Internet Books</a> <a class=\"link\" href=\"/academic-texts-books/pr?sid=bks,enp,q2s\">Academic Texts Books</a> <a class=\"link\" href=\"/medical-books/pr?sid=bks,enp,wsf\">Medical Books</a> <a class=\"link\" href=\"/school-books/pr?sid=bks,enp,zze\">School Books</a> <a class=\"link\" href=\"/entrance-exams-preparation-books/pr?sid=bks,enp,uhu\">Entrance Exams Preparation Books</a> <a class=\"link\" href=\"/indian-writing-books/pr?sid=bks,97s\">Indian Writing Books</a> <a class=\"link\" href=\"/academic-and-professional-books/pr?sid=bks,97s,p3p\">Academic and Professional Books</a> <a class=\"link\" href=\"/history-and-politics-books/pr?sid=bks,97s,5k9\">History and Politics Books</a> <a class=\"link\" href=\"/literature-fiction-books/pr?sid=bks,97s,kk4\">Literature & Fiction Books</a> <a class=\"link\" href=\"/children-teens-books/pr?sid=bks,97s,szt\">Children & Teens Books</a> <a class=\"link\" href=\"/business-investing-and-management-books/pr?sid=bks,97s,a5w\">Business, Investing and Management Books</a> <a class=\"link\" href=\"/travel-books/pr?sid=bks,97s,4p1\">Travel Books</a> <a class=\"link\" href=\"/perinatology-neonatology/pr?sid=bks,97s,sk9\">Perinatology & Neonatology</a> <a class=\"link\" href=\"/religion-spirituality-books/pr?sid=bks,97s,y88\">Religion & Spirituality Books</a> <a class=\"link\" href=\"/others/pr?sid=bks,97s,hdv\">Others</a> <a class=\"link\" href=\"/biographies-autobiographies-books/pr?sid=bks,97s,n7a\">Biographies & Autobiographies Books</a> <a class=\"link\" href=\"/fiction-books/pr?sid=bks,wbi\">Fiction Books</a> <a class=\"link\" href=\"/science-fiction-books/pr?sid=bks,wbi,hax\">Science Fiction Books</a> <a class=\"link\" href=\"/fantasy-fiction-books/pr?sid=bks,wbi,z5d\">Fantasy Fiction Books</a> <a class=\"link\" href=\"/general-fiction-books/pr?sid=bks,wbi,noa\">General Fiction Books</a> <a class=\"link\" href=\"/myths-and-fairytale-books/pr?sid=bks,wbi,7pg\">Myths and Fairytale Books</a> <a class=\"link\" href=\"/religion-and-spirituality-fiction-books/pr?sid=bks,wbi,qy8\">Religion and Spirituality Fiction Books</a> <a class=\"link\" href=\"/action-and-adventure-books/pr?sid=bks,wbi,emb\">Action and Adventure Books</a> <a class=\"link\" href=\"/crime-mystery-and-thriller-books/pr?sid=bks,wbi,mbl\">Crime, Mystery and Thriller Books</a> <a class=\"link\" href=\"/romance-books/pr?sid=bks,wbi,nac\">Romance Books</a> <a class=\"link\" href=\"/supernatural-and-horror-fiction-books/pr?sid=bks,wbi,by5\">Supernatural and Horror Fiction Books</a> <a class=\"link\" href=\"/historical-fiction-books/pr?sid=bks,wbi,js5\">Historical Fiction Books</a> <a class=\"link\" href=\"/erotica-books/pr?sid=bks,wbi,fiu\">Erotica Books</a> <a class=\"link\" href=\"/fiction-nonfiction-books/pr?sid=bks,fnf\">Fiction & Non-Fiction Books</a> <a class=\"link\" href=\"/comics-graphic-novels-books/pr?sid=bks,fnf,cfl\">Comics & Graphic Novels Books</a> <a class=\"link\" href=\"/art-architecture-design-books/pr?sid=bks,fnf,3rq\">Art, Architecture & Design Books</a> <a class=\"link\" href=\"/children-books/pr?sid=bks,fnf,fs6\">Children Books</a> <a class=\"link\" href=\"/history-and-politics-books/pr?sid=bks,fnf,uza\">History and Politics Books</a> <a class=\"link\" href=\"/teens-books/pr?sid=bks,fnf,v40\">Teens Books</a> <a class=\"link\" href=\"/business-investing-and-management-books/pr?sid=bks,fnf,22j\">Business, Investing and Management Books</a> <a class=\"link\" href=\"/literature-fiction-books/pr?sid=bks,fnf,gld\">Literature & Fiction Books</a> <a class=\"link\" href=\"/biographies-autobiographies-books/pr?sid=bks,fnf,d19\">Biographies & Autobiographies Books</a> <a class=\"link\" href=\"/health-fitness-books/pr?sid=bks,fnf,9b8\">Health & Fitness Books</a> <a class=\"link\" href=\"/coffee-table-books/pr?sid=bks,fnf,2ir\">Coffee Table Books</a> <a class=\"link\" href=\"/reference-books/pr?sid=bks,gpr\">Reference Books</a> <a class=\"link\" href=\"/curiosities-wonders/pr?sid=bks,gpr,jiz\">Curiosities & Wonders</a> <a class=\"link\" href=\"/writing-skills/pr?sid=bks,gpr,xgb\">Writing Skills</a> <a class=\"link\" href=\"/word-lists/pr?sid=bks,gpr,c18\">Word Lists</a> <a class=\"link\" href=\"/handbooks-manuals/pr?sid=bks,gpr,2zi\">Handbooks & Manuals</a> <a class=\"link\" href=\"/dictionaries/pr?sid=bks,gpr,cf5\">Dictionaries</a> <a class=\"link\" href=\"/catalogs/pr?sid=bks,gpr,gn4\">Catalogs</a> <a class=\"link\" href=\"/weddings/pr?sid=bks,gpr,dzz\">Weddings</a> <a class=\"link\" href=\"/etiquette/pr?sid=bks,gpr,ezu\">Etiquette</a> <a class=\"link\" href=\"/yearbooks-annuals/pr?sid=bks,gpr,u9c\">Yearbooks & Annuals</a> <a class=\"link\" href=\"/atlases-gazetteers/pr?sid=bks,gpr,zf3\">Atlases & Gazetteers</a> <a class=\"link\" href=\"/questions-answers/pr?sid=bks,gpr,ary\">Questions & Answers</a> <a class=\"link\" href=\"/quotations/pr?sid=bks,gpr,mhc\">Quotations</a> <a class=\"link\" href=\"/current-affairs/pr?sid=bks,gpr,7pc\">Current Affairs</a> <a class=\"link\" href=\"/thesauri/pr?sid=bks,gpr,km8\">Thesauri</a> <a class=\"link\" href=\"/bibliographies-indexes/pr?sid=bks,gpr,ex4\">Bibliographies & Indexes</a> <a class=\"link\" href=\"/consumer-guides/pr?sid=bks,gpr,k5s\">Consumer Guides</a> <a class=\"link\" href=\"/encyclopedias-books/pr?sid=bks,gpr,z38\">Encyclopedias</a> <a class=\"link\" href=\"/almanacs-and-calendars/pr?sid=bks,gpr,iw4\">almanacs and calendars</a> <a class=\"link\" href=\"/trivia/pr?sid=bks,gpr,mac\">Trivia</a> <a class=\"link\" href=\"/personal-practical-guides/pr?sid=bks,gpr,4y8\">Personal & Practical Guides</a> <a class=\"link\" href=\"/genealogy-heraldry/pr?sid=bks,gpr,wfp\">Genealogy & Heraldry</a> <a class=\"link\" href=\"/directories/pr?sid=bks,gpr,5m9\">Directories</a> <a class=\"link\" href=\"/philosophy-books/pr?sid=bks,1zh\">Philosophy Books</a> <a class=\"link\" href=\"/others/pr?sid=bks,1zh,dxl\">Others</a> <a class=\"link\" href=\"/epistemology/pr?sid=bks,1zh,6yz\">Epistemology</a> <a class=\"link\" href=\"/good-evil/pr?sid=bks,1zh,n3h\">Good & Evil</a> <a class=\"link\" href=\"/mind-body/pr?sid=bks,1zh,uzd\">Mind & Body</a> <a class=\"link\" href=\"/religious-books/pr?sid=bks,1zh,lt7\">Religious</a> <a class=\"link\" href=\"/criticism/pr?sid=bks,1zh,vae\">Criticism</a> <a class=\"link\" href=\"/reference/pr?sid=bks,1zh,60b\">Reference</a> <a class=\"link\" href=\"/free-will-determinism/pr?sid=bks,1zh,5nr\">Free Will & Determinism</a> </div><h2><a href=\"/home-decor/pr?sid=arb\">Home Decor</a></h2><div><a class=\"link\" href=\"/stickers-wallpapers/pr?sid=arb,yod\">Stickers & Wallpapers</a> <a class=\"link\" href=\"/wallpapers/pr?sid=arb,yod,8m7\">Wallpapers</a> <a class=\"link\" href=\"/stickers/pr?sid=arb,yod,si0\">Stickers</a> <a class=\"link\" href=\"/paintings-posters/pr?sid=arb,bga\">Paintings & Posters</a> <a class=\"link\" href=\"/paintings/pr?sid=arb,bga,mmf\">Paintings</a> <a class=\"link\" href=\"/posters/pr?sid=arb,bga,f3b\">Posters</a> <a class=\"link\" href=\"/clocks/pr?sid=arb,kjw\">Clocks</a> <a class=\"link\" href=\"/wall-clocks/pr?sid=arb,kjw,bm1\">Wall Clocks</a> <a class=\"link\" href=\"/table-clocks/pr?sid=arb,kjw,zja\">Table Clocks</a> <a class=\"link\" href=\"/showpieces-decor-accents/pr?sid=arb,uj2\">Showpieces & Decor Accents</a> <a class=\"link\" href=\"/showpieces-figurines/pr?sid=arb,uj2,z1t\">Showpieces & Figurines</a> <a class=\"link\" href=\"/decorative-bottles/pr?sid=arb,uj2,na8\">Decorative Bottles</a> <a class=\"link\" href=\"/magnets/pr?sid=arb,uj2,0lb\">Magnets</a> <a class=\"link\" href=\"/trophies-medals/pr?sid=arb,uj2,wcj\">Trophies & Medals</a> <a class=\"link\" href=\"/decorative-feather/pr?sid=arb,uj2,hb6\">Decorative Feather</a> <a class=\"link\" href=\"/flags/pr?sid=arb,uj2,uvt\">Flags</a> <a class=\"link\" href=\"/artificial-fruits/pr?sid=arb,uj2,erc\">Artificial Fruits</a> <a class=\"link\" href=\"/wall-decor-items/pr?sid=arb,a77\">Wall Decor Items</a> <a class=\"link\" href=\"/wall-shelves/pr?sid=arb,a77,vk7\">Wall Shelves</a> <a class=\"link\" href=\"/key-holders/pr?sid=arb,a77,8js\">Key Holders</a> <a class=\"link\" href=\"/decorative-mirrors/pr?sid=arb,a77,m3m\">Decorative Mirrors</a> <a class=\"link\" href=\"/wall-hangings/pr?sid=arb,a77,suk\">Wall Hangings</a> <a class=\"link\" href=\"/decorative-masks/pr?sid=arb,a77,w7a\">Decorative Masks</a> <a class=\"link\" href=\"/name-plates/pr?sid=arb,a77,z9k\">Name Plates</a> <a class=\"link\" href=\"/tin-metal-signs/pr?sid=arb,a77,whg\">Tin & Metal Signs</a> <a class=\"link\" href=\"/book-ends/pr?sid=arb,a77,wos\">Book Ends</a> <a class=\"link\" href=\"/jharokhas/pr?sid=arb,a77,kt4\">Jharokhas</a> <a class=\"link\" href=\"/tapestries/pr?sid=arb,a77,nf5\">Tapestries</a> <a class=\"link\" href=\"/bell-pull-ends/pr?sid=arb,a77,8hw\">Bell Pull Ends</a> <a class=\"link\" href=\"/flowers-vases/pr?sid=arb,g0v\">Flowers & Vases</a> <a class=\"link\" href=\"/fresh-flowers/pr?sid=arb,g0v,wfl\">Fresh Flowers</a> <a class=\"link\" href=\"/artificial-plants/pr?sid=arb,g0v,6vh\">Artificial Plants</a> <a class=\"link\" href=\"/artificial-flowers/pr?sid=arb,g0v,ctx\">Artificial Flowers</a> <a class=\"link\" href=\"/flower-baskets/pr?sid=arb,g0v,u6z\">Flower Baskets</a> <a class=\"link\" href=\"/vases/pr?sid=arb,g0v,tyl\">Vases</a> <a class=\"link\" href=\"/vase-fillers/pr?sid=arb,g0v,s7v\">Vase Fillers</a> <a class=\"link\" href=\"/home-fragrance/pr?sid=arb,keu\">Home Fragrance</a> <a class=\"link\" href=\"/diffuser-sets/pr?sid=arb,keu,klj\">Diffuser Sets</a> <a class=\"link\" href=\"/aroma-oils/pr?sid=arb,keu,1hp\">Aroma Oils</a> <a class=\"link\" href=\"/potpourri/pr?sid=arb,keu,yoc\">Potpourri</a> <a class=\"link\" href=\"/windchimes-dream-catchers/pr?sid=arb,nuq\">Windchimes & Dream catchers</a> <a class=\"link\" href=\"/windchimes/pr?sid=arb,nuq,5vh\">Windchimes</a> <a class=\"link\" href=\"/dream-catchers/pr?sid=arb,nuq,qhj\">Dream Catchers</a> <a class=\"link\" href=\"/sun-catchers/pr?sid=arb,nuq,pg7\">Sun Catchers</a> <a class=\"link\" href=\"/photo-frames-albums/pr?sid=arb,rm9\">Photo Frames & Albums</a> <a class=\"link\" href=\"/photo-frames/pr?sid=arb,rm9,hzf\">Photo Frames</a> <a class=\"link\" href=\"/photo-albums/pr?sid=arb,rm9,96b\">Photo Albums</a> <a class=\"link\" href=\"/diyas-candles-holders/pr?sid=arb,mvm\">Diyas, Candles & Holders</a> <a class=\"link\" href=\"/candles/pr?sid=arb,mvm,p0s\">Candles</a> <a class=\"link\" href=\"/candle-holders/pr?sid=arb,mvm,skr\">Candle Holders</a> <a class=\"link\" href=\"/diyas/pr?sid=arb,mvm,bnl\">Diyas</a> <a class=\"link\" href=\"/candle-moulds/pr?sid=arb,mvm,qk5\">Candle Moulds</a> <a class=\"link\" href=\"/hookah-hookah-accessories/pr?sid=arb,y1n\">Hookah & Hookah Accessories</a> <a class=\"link\" href=\"/rolling-paper/pr?sid=arb,y1n,nig\">Rolling Paper</a> <a class=\"link\" href=\"/hookah-charcoals/pr?sid=arb,y1n,p5i\">Hookah Charcoals</a> <a class=\"link\" href=\"/hookah-flavors/pr?sid=arb,y1n,hxg\">Hookah Flavors</a> <a class=\"link\" href=\"/hookahs/pr?sid=arb,y1n,5y2\">Hookahs</a> <a class=\"link\" href=\"/bongs/pr?sid=arb,y1n,dth\">Bongs</a> <a class=\"link\" href=\"/hookah-hoses/pr?sid=arb,y1n,t8s\">Hookah Hoses</a> <a class=\"link\" href=\"/hookah-mouth-tips/pr?sid=arb,y1n,rtr\">Hookah Mouth Tips</a> <a class=\"link\" href=\"/smoking-pipes/pr?sid=arb,y1n,nas\">Smoking Pipes</a> <a class=\"link\" href=\"/rolling-machines/pr?sid=arb,y1n,nu9\">Rolling Machines</a> </div><h2><a href=\"/home-furnishing/pr?sid=jra\">Home Furnishing</a></h2><div><a class=\"link\" href=\"/bed-linen-blankets/pr?sid=jra,knw\">Bed Linen & Blankets</a> <a class=\"link\" href=\"/bedsheets/pr?sid=jra,knw,qcw\">Bedsheets</a> <a class=\"link\" href=\"/blankets/pr?sid=jra,knw,llw\">Blankets</a> <a class=\"link\" href=\"/diwan-sets/pr?sid=jra,knw,gjh\">Diwan Sets</a> <a class=\"link\" href=\"/mattress-protectors/pr?sid=jra,knw,sg5\">Mattress Protectors</a> <a class=\"link\" href=\"/bedding-sets/pr?sid=jra,knw,13s\">Bedding Sets</a> <a class=\"link\" href=\"/mosquito-nets/pr?sid=jra,knw,i6y\">Mosquito Nets</a> <a class=\"link\" href=\"/bed-covers/pr?sid=jra,knw,dgd\">Bed Covers</a> <a class=\"link\" href=\"/bed-skirts/pr?sid=jra,knw,omr\">Bed Skirts</a> <a class=\"link\" href=\"/quilt-battings/pr?sid=jra,knw,3le\">Quilt Battings</a> <a class=\"link\" href=\"/curtains-accessories/pr?sid=jra,sl5\">Curtains & Accessories</a> <a class=\"link\" href=\"/curtain-rods-rings/pr?sid=jra,sl5,pau\">Curtain Rods & Rings</a> <a class=\"link\" href=\"/curtains/pr?sid=jra,sl5,2va\">Curtains</a> <a class=\"link\" href=\"/curtain-accessories/pr?sid=jra,sl5,bqw\">Curtain Accessories</a> <a class=\"link\" href=\"/window-valances/pr?sid=jra,sl5,mff\">Window Valances</a> <a class=\"link\" href=\"/blinds/pr?sid=jra,sl5,hkg\">Blinds</a> <a class=\"link\" href=\"/bath-linen/pr?sid=jra,jk3\">Bath Linen</a> <a class=\"link\" href=\"/bath-towels/pr?sid=jra,jk3,wtg\">Bath Towels</a> <a class=\"link\" href=\"/bath-robes/pr?sid=jra,jk3,dur\">Bath Robes</a> <a class=\"link\" href=\"/bath-linen-sets/pr?sid=jra,jk3,yyq\">Bath Linen Sets</a> <a class=\"link\" href=\"/shower-curtains/pr?sid=jra,jk3,kok\">Shower Curtains</a> <a class=\"link\" href=\"/floor-coverings/pr?sid=jra,kwq\">Floor Coverings</a> <a class=\"link\" href=\"/carpet-rugs/pr?sid=jra,kwq,z3j\">Carpet Rugs</a> <a class=\"link\" href=\"/mats/pr?sid=jra,kwq,exp\">Mats</a> <a class=\"link\" href=\"/bath-mats/pr?sid=jra,kwq,ogw\">Bath Mats</a> <a class=\"link\" href=\"/chair-carpet-mats/pr?sid=jra,kwq,kaz\">Chair Carpet Mats</a> <a class=\"link\" href=\"/rug-pads/pr?sid=jra,kwq,br0\">Rug Pads</a> <a class=\"link\" href=\"/cushions-pillows/pr?sid=jra,kzv\">Cushions & Pillows</a> <a class=\"link\" href=\"/pillows/pr?sid=jra,kzv,3bw\">Pillows</a> <a class=\"link\" href=\"/cushions/pr?sid=jra,kzv,u7w\">Cushions</a> <a class=\"link\" href=\"/bolsters/pr?sid=jra,kzv,wts\">Bolsters</a> <a class=\"link\" href=\"/covers-protectors/pr?sid=jra,ixy\">Covers & Protectors</a> <a class=\"link\" href=\"/pet-furniture-covers/pr?sid=jra,ixy,eub\">Pet Furniture Covers</a> <a class=\"link\" href=\"/appliance-covers/pr?sid=jra,ixy,hqs\">Appliance Covers</a> <a class=\"link\" href=\"/cushion-covers/pr?sid=jra,ixy,jgq\">Cushion Covers</a> <a class=\"link\" href=\"/sofa-and-chair-covers/pr?sid=jra,ixy,uis\">Sofa and Chair Covers</a> <a class=\"link\" href=\"/pillow-covers/pr?sid=jra,ixy,lt0\">Pillow Covers</a> <a class=\"link\" href=\"/pillow-protectors/pr?sid=jra,ixy,qv7\">Pillow Protectors</a> <a class=\"link\" href=\"/bolster-covers/pr?sid=jra,ixy,5dj\">Bolster Covers</a> <a class=\"link\" href=\"/duvet-covers/pr?sid=jra,ixy,ui0\">Duvet Covers</a> <a class=\"link\" href=\"/kitchen-table-linen/pr?sid=jra,iwp\">Kitchen & Table Linen</a> <a class=\"link\" href=\"/table-cloth-clips/pr?sid=jra,iwp,rqc\">Table Cloth Clips</a> <a class=\"link\" href=\"/table-covers/pr?sid=jra,iwp,aly\">Table Covers</a> <a class=\"link\" href=\"/aprons/pr?sid=jra,iwp,bmf\">Aprons</a> <a class=\"link\" href=\"/napkins/pr?sid=jra,iwp,5x4\">Napkins</a> <a class=\"link\" href=\"/table-placemats/pr?sid=jra,iwp,jwv\">Table Placemats</a> <a class=\"link\" href=\"/kitchen-linen-sets/pr?sid=jra,iwp,glu\">Kitchen Linen Sets</a> <a class=\"link\" href=\"/roti-covers/pr?sid=jra,iwp,bf2\">Roti Covers</a> <a class=\"link\" href=\"/coasters/pr?sid=jra,iwp,2pd\">Coasters</a> <a class=\"link\" href=\"/table-runners/pr?sid=jra,iwp,3if\">Table Runners</a> <a class=\"link\" href=\"/table-linen-sets/pr?sid=jra,iwp,tg1\">Table Linen Sets</a> <a class=\"link\" href=\"/table-skirts/pr?sid=jra,iwp,cz7\">Table Skirts</a> <a class=\"link\" href=\"/chef-hats/pr?sid=jra,iwp,3qz\">Chef Hats</a> <a class=\"link\" href=\"/napkin-rings/pr?sid=jra,iwp,tqe\">Napkin Rings</a> <a class=\"link\" href=\"/sofa-curtain-fabrics/pr?sid=jra,bxs\">Sofa & Curtain Fabrics</a> <a class=\"link\" href=\"/sofa-fabrics/pr?sid=jra,bxs,fxh\">Sofa Fabrics</a> <a class=\"link\" href=\"/curtain-fabrics/pr?sid=jra,bxs,13u\">Curtain Fabrics</a> </div><h2><a href=\"/building-materials-and-supplies/pr?sid=b8s\">Building Materials and Supplies</a></h2><div><a class=\"link\" href=\"/construction-tools-and-equipments/pr?sid=b8s,glj\">Construction Tools and Equipments</a> <a class=\"link\" href=\"/drywall-panels/pr?sid=b8s,glj,bfu\">Drywall Panels</a> <a class=\"link\" href=\"/masonry-floats/pr?sid=b8s,glj,yza\">Masonry Floats</a> <a class=\"link\" href=\"/welding-mask/pr?sid=b8s,glj,80j\">Welding Mask</a> <a class=\"link\" href=\"/nozzle-dips/pr?sid=b8s,glj,zya\">Nozzle Dips</a> <a class=\"link\" href=\"/construction-mask/pr?sid=b8s,glj,dk9\">Construction Mask</a> <a class=\"link\" href=\"/drywall-and-masonry-carts/pr?sid=b8s,glj,ozx\">Drywall and Masonry Carts</a> <a class=\"link\" href=\"/drywall-sanders/pr?sid=b8s,glj,cjh\">Drywall Sanders</a> <a class=\"link\" href=\"/dewatering-bags/pr?sid=b8s,glj,64n\">Dewatering Bags</a> <a class=\"link\" href=\"/drywall-taping-knives/pr?sid=b8s,glj,zg8\">Drywall Taping Knives</a> <a class=\"link\" href=\"/masonry-trowels/pr?sid=b8s,glj,wan\">Masonry Trowels</a> <a class=\"link\" href=\"/wooden-supplies/pr?sid=b8s,8lg\">Wooden Supplies</a> <a class=\"link\" href=\"/laminates/pr?sid=b8s,8lg,efm\">Laminates</a> <a class=\"link\" href=\"/door-frames/pr?sid=b8s,8lg,41w\">Door Frames</a> <a class=\"link\" href=\"/lumber/pr?sid=b8s,8lg,wn6\">Lumber</a> <a class=\"link\" href=\"/veneers/pr?sid=b8s,8lg,l6b\">Veneers</a> <a class=\"link\" href=\"/wooden-flooring/pr?sid=b8s,8lg,m5b\">Wooden Flooring</a> <a class=\"link\" href=\"/plywood/pr?sid=b8s,8lg,t4v\">Plywood</a> <a class=\"link\" href=\"/bathroom-and-kitchen-fittings/pr?sid=b8s,ecr\">Bathroom and Kitchen Fittings</a> <a class=\"link\" href=\"/kitchen-sinks/pr?sid=b8s,ecr,d2r\">Kitchen Sinks</a> <a class=\"link\" href=\"/toilet-paper-holders/pr?sid=b8s,ecr,l0e\">Toilet Paper Holders</a> <a class=\"link\" href=\"/mirror-defoggers/pr?sid=b8s,ecr,je2\">Mirror Defoggers</a> <a class=\"link\" href=\"/bidet-nozzles/pr?sid=b8s,ecr,edh\">Bidet Nozzles</a> <a class=\"link\" href=\"/drain-strainers/pr?sid=b8s,ecr,ft0\">Drain Strainers</a> <a class=\"link\" href=\"/shower-heads/pr?sid=b8s,ecr,g8x\">Shower Heads</a> <a class=\"link\" href=\"/septic-tank-risers/pr?sid=b8s,ecr,le5\">Septic Tank Risers</a> <a class=\"link\" href=\"/shelf-clips/pr?sid=b8s,ecr,yb4\">Shelf Clips</a> <a class=\"link\" href=\"/shower-curtain-rods/pr?sid=b8s,ecr,taj\">Shower Curtain Rods</a> <a class=\"link\" href=\"/flush-tank-levers/pr?sid=b8s,ecr,409\">Flush Tank Levers</a> <a class=\"link\" href=\"/bathroom-mirrors/pr?sid=b8s,ecr,n1g\">Bathroom Mirrors</a> <a class=\"link\" href=\"/tap-mount-water-filters/pr?sid=b8s,ecr,vm9\">Tap Mount Water Filters</a> <a class=\"link\" href=\"/toilet-seat-lid-locks/pr?sid=b8s,ecr,eom\">Toilet Seat Lid Locks</a> <a class=\"link\" href=\"/toilet-safety-frames/pr?sid=b8s,ecr,zxd\">Toilet Safety Frames</a> <a class=\"link\" href=\"/bath-tubs/pr?sid=b8s,ecr,y8i\">Bath Tubs</a> <a class=\"link\" href=\"/septic-tanks/pr?sid=b8s,ecr,c0j\">Septic Tanks</a> <a class=\"link\" href=\"/wash-basins/pr?sid=b8s,ecr,lbl\">Wash Basins</a> <a class=\"link\" href=\"/faucets/pr?sid=b8s,ecr,xpl\">Faucets</a> <a class=\"link\" href=\"/shelf-brackets/pr?sid=b8s,ecr,5i8\">Shelf Brackets</a> <a class=\"link\" href=\"/bath-caddies/pr?sid=b8s,ecr,oep\">Bath Caddies</a> <a class=\"link\" href=\"/towel-bars-and-rings/pr?sid=b8s,ecr,uxi\">Towel Bars and Rings</a> <a class=\"link\" href=\"/sink-tub-plugs/pr?sid=b8s,ecr,0xf\">Sink Tub Plugs</a> <a class=\"link\" href=\"/bidets/pr?sid=b8s,ecr,zwz\">Bidets</a> <a class=\"link\" href=\"/faucet-extensions/pr?sid=b8s,ecr,lhv\">Faucet Extensions</a> <a class=\"link\" href=\"/shower-grab-bars/pr?sid=b8s,ecr,npr\">Shower Grab Bars</a> <a class=\"link\" href=\"/hair-wash-basins/pr?sid=b8s,ecr,ww5\">Hair Wash Basins</a> <a class=\"link\" href=\"/bathtub-safety-rails/pr?sid=b8s,ecr,4vi\">Bathtub Safety Rails</a> <a class=\"link\" href=\"/towel-rack-holders/pr?sid=b8s,ecr,5cd\">Towel Rack Holders</a> <a class=\"link\" href=\"/shower-rod-hooks/pr?sid=b8s,ecr,pw6\">Shower Rod Hooks</a> <a class=\"link\" href=\"/commodes/pr?sid=b8s,ecr,gpq\">Commodes</a> <a class=\"link\" href=\"/flanges/pr?sid=b8s,ecr,d5k\">Flanges</a> <a class=\"link\" href=\"/seat-covers/pr?sid=b8s,ecr,ihr\">Seat Covers</a> <a class=\"link\" href=\"/shower-systems/pr?sid=b8s,ecr,cqb\">Shower Systems</a> <a class=\"link\" href=\"/bathtub-feets/pr?sid=b8s,ecr,0az\">Bathtub Feets</a> <a class=\"link\" href=\"/bucket-organizers/pr?sid=b8s,ecr,87b\">Bucket Organizers</a> <a class=\"link\" href=\"/flush-tanks/pr?sid=b8s,ecr,x5r\">Flush Tanks</a> <a class=\"link\" href=\"/flush-tank-lids/pr?sid=b8s,ecr,e0h\">Flush Tank Lids</a> <a class=\"link\" href=\"/water-softeners/pr?sid=b8s,ecr,ibt\">Water Softeners</a> <a class=\"link\" href=\"/urinals/pr?sid=b8s,ecr,pzz\">Urinals</a> <a class=\"link\" href=\"/foot-pedal-flushes/pr?sid=b8s,ecr,x3a\">Foot Pedal Flushes</a> <a class=\"link\" href=\"/bathroom-racks/pr?sid=b8s,ecr,rkl\">Bathroom Racks</a> <a class=\"link\" href=\"/plumbing-supplies/pr?sid=b8s,zp2\">Plumbing Supplies</a> <a class=\"link\" href=\"/plumbing-valves/pr?sid=b8s,zp2,hlx\">Plumbing Valves</a> <a class=\"link\" href=\"/furniture-casters/pr?sid=b8s,zp2,akd\">Furniture Casters</a> <a class=\"link\" href=\"/water-pump-boards/pr?sid=b8s,zp2,0lu\">Water Pump Boards</a> <a class=\"link\" href=\"/gasket-sealers/pr?sid=b8s,zp2,mdu\">Gasket Sealers</a> <a class=\"link\" href=\"/hardware-washers/pr?sid=b8s,zp2,hnq\">Hardware Washers</a> <a class=\"link\" href=\"/pipe-joints/pr?sid=b8s,zp2,sye\">Pipe Joints</a> <a class=\"link\" href=\"/plumbing-pipes/pr?sid=b8s,zp2,qul\">Plumbing Pipes</a> <a class=\"link\" href=\"/boat-cleats/pr?sid=b8s,zp2,5ip\">Boat Cleats</a> <a class=\"link\" href=\"/plumbing-tapes/pr?sid=b8s,zp2,dop\">Plumbing Tapes</a> <a class=\"link\" href=\"/pump-accessories/pr?sid=b8s,zp2,tj8\">Pump Accessories</a> <a class=\"link\" href=\"/cable-straps/pr?sid=b8s,zp2,8rf\">Cable Straps</a> <a class=\"link\" href=\"/building-raw-materials/pr?sid=b8s,tmf\">Building Raw Materials</a> <a class=\"link\" href=\"/eave-and-rake-starter-strips/pr?sid=b8s,tmf,rkg\">Eave and Rake Starter Strips</a> <a class=\"link\" href=\"/rebar/pr?sid=b8s,tmf,7em\">Rebar</a> <a class=\"link\" href=\"/contact-cement/pr?sid=b8s,tmf,8uf\">Contact Cement</a> <a class=\"link\" href=\"/welding-rods/pr?sid=b8s,tmf,ndh\">Welding Rods</a> <a class=\"link\" href=\"/bricks/pr?sid=b8s,tmf,cxq\">Bricks</a> <a class=\"link\" href=\"/concrete-pump-clamp/pr?sid=b8s,tmf,mzx\">Concrete Pump Clamp</a> <a class=\"link\" href=\"/crack-filler/pr?sid=b8s,tmf,b1o\">Crack Filler</a> <a class=\"link\" href=\"/cement/pr?sid=b8s,tmf,kax\">Cement</a> <a class=\"link\" href=\"/welding-paste/pr?sid=b8s,tmf,gk3\">Welding Paste</a> <a class=\"link\" href=\"/jack-posts/pr?sid=b8s,tmf,ejh\">Jack Posts</a> <a class=\"link\" href=\"/solar-and-alternate-energy/pr?sid=b8s,5cy\">Solar and Alternate Energy</a> <a class=\"link\" href=\"/solar-charge-controllers/pr?sid=b8s,5cy,0qi\">Solar Charge Controllers</a> <a class=\"link\" href=\"/solar-mounting-frames/pr?sid=b8s,5cy,vll\">Solar Mounting Frames</a> <a class=\"link\" href=\"/solar-pump/pr?sid=b8s,5cy,qwh\">Solar Pump</a> <a class=\"link\" href=\"/solar-panels/pr?sid=b8s,5cy,f7w\">Solar Panels</a> <a class=\"link\" href=\"/windmill-aeration-systems/pr?sid=b8s,5cy,g1t\">Windmill Aeration Systems</a> <a class=\"link\" href=\"/solar-energy-meter/pr?sid=b8s,5cy,wbx\">Solar Energy Meter</a> <a class=\"link\" href=\"/solar-batteries/pr?sid=b8s,5cy,vqk\">Solar Batteries</a> <a class=\"link\" href=\"/solar-light-sets/pr?sid=b8s,5cy,lao\">Solar Light Sets</a> <a class=\"link\" href=\"/solar-fan-sets/pr?sid=b8s,5cy,tra\">Solar Fan Sets</a> <a class=\"link\" href=\"/solar-fence-system/pr?sid=b8s,5cy,rdj\">Solar Fence System</a> <a class=\"link\" href=\"/electrical-hardware/pr?sid=b8s,prq\">Electrical Hardware</a> <a class=\"link\" href=\"/hardware-chain/pr?sid=b8s,prq,twr\">Hardware Chain</a> <a class=\"link\" href=\"/wires-and-cables/pr?sid=b8s,prq,5wd\">Wires and Cables</a> <a class=\"link\" href=\"/cable-raceways/pr?sid=b8s,prq,rq4\">Cable Raceways</a> <a class=\"link\" href=\"/keystone-inserts/pr?sid=b8s,prq,p75\">Keystone Inserts</a> <a class=\"link\" href=\"/spike-guard-and-surge-protectors/pr?sid=b8s,prq,gxf\">Spike Guard and Surge Protectors</a> <a class=\"link\" href=\"/solenoid-on-base/pr?sid=b8s,prq,uxb\">Solenoid On Base</a> <a class=\"link\" href=\"/exhaust-fans/pr?sid=b8s,prq,n1o\">Exhaust Fans</a> <a class=\"link\" href=\"/electrical-plugs/pr?sid=b8s,prq,o44\">Electrical Plugs</a> <a class=\"link\" href=\"/sockets/pr?sid=b8s,prq,w73\">Sockets</a> <a class=\"link\" href=\"/door-bell/pr?sid=b8s,prq,4pp\">Door Bell</a> <a class=\"link\" href=\"/hardware-tapes/pr?sid=b8s,prq,brw\">Hardware Tapes</a> <a class=\"link\" href=\"/cable-sleeves/pr?sid=b8s,prq,795\">Cable Sleeves</a> <a class=\"link\" href=\"/dimmers/pr?sid=b8s,prq,l9g\">Dimmers</a> <a class=\"link\" href=\"/light-sockets/pr?sid=b8s,prq,8d3\">Light Sockets</a> <a class=\"link\" href=\"/copper-wires/pr?sid=b8s,prq,s1u\">Copper Wires</a> <a class=\"link\" href=\"/fan-regulator/pr?sid=b8s,prq,qkl\">Fan Regulator</a> <a class=\"link\" href=\"/dimmer-packs/pr?sid=b8s,prq,2hf\">Dimmer Packs</a> <a class=\"link\" href=\"/electrical-tapes/pr?sid=b8s,prq,v8k\">Electrical Tapes</a> <a class=\"link\" href=\"/electrical-switches/pr?sid=b8s,prq,wcx\">Electrical Switches</a> <a class=\"link\" href=\"/pumps/pr?sid=b8s,prq,nzw\">Pumps</a> <a class=\"link\" href=\"/electrical-wall-plates/pr?sid=b8s,prq,jcb\">Electrical Wall Plates</a> <a class=\"link\" href=\"/inline-fans/pr?sid=b8s,prq,pls\">Inline Fans</a> <a class=\"link\" href=\"/electrical-fuses/pr?sid=b8s,prq,2il\">Electrical Fuses</a> <a class=\"link\" href=\"/electronic-timer-switches/pr?sid=b8s,prq,y6j\">Electronic Timer Switches</a> <a class=\"link\" href=\"/electrical-distribution-board/pr?sid=b8s,prq,p64\">Electrical Distribution Board</a> <a class=\"link\" href=\"/light-control-modules/pr?sid=b8s,prq,xzz\">Light Control Modules</a> <a class=\"link\" href=\"/wire-connectors/pr?sid=b8s,prq,9lc\">Wire Connectors</a> <a class=\"link\" href=\"/metal-electrical-boxes/pr?sid=b8s,prq,tf7\">Metal Electrical Boxes</a> <a class=\"link\" href=\"/led-drivers/pr?sid=b8s,prq,00x\">Led Drivers</a> <a class=\"link\" href=\"/rccb/pr?sid=b8s,prq,zlq\">RCCB</a> <a class=\"link\" href=\"/plug-pins/pr?sid=b8s,prq,1ti\">Plug Pins</a> <a class=\"link\" href=\"/furniture-parts/pr?sid=b8s,gdd\">Furniture Parts</a> <a class=\"link\" href=\"/paint-supplies-and-equipment/pr?sid=b8s,po2\">Paint Supplies and Equipment</a> <a class=\"link\" href=\"/varnish/pr?sid=b8s,po2,hvd\">Varnish</a> <a class=\"link\" href=\"/paint-gloves/pr?sid=b8s,po2,sd7\">Paint Gloves</a> <a class=\"link\" href=\"/swimming-pool-paints/pr?sid=b8s,po2,jgi\">Swimming Pool Paints</a> <a class=\"link\" href=\"/wall-putty/pr?sid=b8s,po2,zib\">Wall Putty</a> <a class=\"link\" href=\"/plaster-of-paris/pr?sid=b8s,po2,c7d\">Plaster of Paris</a> <a class=\"link\" href=\"/primer/pr?sid=b8s,po2,gah\">Primer</a> <a class=\"link\" href=\"/paint-binders/pr?sid=b8s,po2,emv\">Paint Binders</a> <a class=\"link\" href=\"/anti-slip-liquid/pr?sid=b8s,po2,apy\">Anti Slip Liquid</a> <a class=\"link\" href=\"/sandpaper/pr?sid=b8s,po2,cim\">Sandpaper</a> <a class=\"link\" href=\"/wood-stain/pr?sid=b8s,po2,mnu\">Wood Stain</a> <a class=\"link\" href=\"/painting-mask/pr?sid=b8s,po2,abp\">Painting Mask</a> <a class=\"link\" href=\"/paint-brushes/pr?sid=b8s,po2,ll3\">Paint Brushes</a> <a class=\"link\" href=\"/wall-paints/pr?sid=b8s,po2,k0b\">Wall Paints</a> <a class=\"link\" href=\"/spray-paints/pr?sid=b8s,po2,zde\">Spray Paints</a> <a class=\"link\" href=\"/paint-rollers/pr?sid=b8s,po2,isz\">Paint Rollers</a> <a class=\"link\" href=\"/paint-removers/pr?sid=b8s,po2,txv\">Paint Removers</a> <a class=\"link\" href=\"/paint-sprayers/pr?sid=b8s,po2,qpy\">Paint Sprayers</a> <a class=\"link\" href=\"/paint-coveralls/pr?sid=b8s,po2,rh5\">Paint Coveralls</a> <a class=\"link\" href=\"/putty-knives/pr?sid=b8s,po2,mib\">Putty Knives</a> <a class=\"link\" href=\"/thinners/pr?sid=b8s,po2,aiu\">Thinners</a> <a class=\"link\" href=\"/hand-pads/pr?sid=b8s,po2,djt\">Hand Pads</a> <a class=\"link\" href=\"/door-and-window-fittings/pr?sid=b8s,8dw\">Door and Window Fittings</a> <a class=\"link\" href=\"/draft-stoppers/pr?sid=b8s,8dw,07t\">Draft Stoppers</a> <a class=\"link\" href=\"/drawer-slides/pr?sid=b8s,8dw,lno\">Drawer Slides</a> <a class=\"link\" href=\"/door-stoppers/pr?sid=b8s,8dw,ufb\">Door Stoppers</a> <a class=\"link\" href=\"/door-closers/pr?sid=b8s,8dw,0mj\">Door Closers</a> <a class=\"link\" href=\"/patch-fitting/pr?sid=b8s,8dw,m5h\">Patch Fitting</a> <a class=\"link\" href=\"/window-films/pr?sid=b8s,8dw,hwj\">Window Films</a> <a class=\"link\" href=\"/sliding-tracks/pr?sid=b8s,8dw,ttx\">Sliding Tracks</a> <a class=\"link\" href=\"/window-awnings/pr?sid=b8s,8dw,5ga\">Window Awnings</a> <a class=\"link\" href=\"/door-sealers/pr?sid=b8s,8dw,06k\">Door Sealers</a> <a class=\"link\" href=\"/door-brush/pr?sid=b8s,8dw,8ye\">Door Brush</a> <a class=\"link\" href=\"/door-and-window-screen/pr?sid=b8s,8dw,rzi\">Door and Window Screen</a> <a class=\"link\" href=\"/window-shutters/pr?sid=b8s,8dw,wxs\">Window Shutters</a> <a class=\"link\" href=\"/sill-plates/pr?sid=b8s,8dw,1c8\">Sill Plates</a> <a class=\"link\" href=\"/viewers/pr?sid=b8s,8dw,aic\">Viewers</a> <a class=\"link\" href=\"/window-sills/pr?sid=b8s,8dw,8x0\">Window Sills</a> <a class=\"link\" href=\"/garage-doors/pr?sid=b8s,8dw,pah\">Garage Doors</a> <a class=\"link\" href=\"/sliding-gate-rollers/pr?sid=b8s,8dw,p4f\">Sliding Gate Rollers</a> <a class=\"link\" href=\"/kick-plates/pr?sid=b8s,8dw,km4\">Kick Plates</a> <a class=\"link\" href=\"/doors/pr?sid=b8s,8dw,a3g\">Doors</a> <a class=\"link\" href=\"/knobs-and-handles/pr?sid=b8s,8dw,xya\">Knobs and Handles</a> <a class=\"link\" href=\"/door-knockers/pr?sid=b8s,8dw,ocs\">Door Knockers</a> <a class=\"link\" href=\"/latches-and-bolts/pr?sid=b8s,8dw,vkg\">Latches and Bolts</a> <a class=\"link\" href=\"/hinges/pr?sid=b8s,8dw,dm5\">Hinges</a> <a class=\"link\" href=\"/building-supplies-addons/pr?sid=b8s,ryh\">Building Supplies Add-Ons</a> <a class=\"link\" href=\"/roofing-sheets-and-panels/pr?sid=b8s,ryh,4gw\">Roofing Sheets and Panels</a> <a class=\"link\" href=\"/column-caps-and-bases/pr?sid=b8s,ryh,fzj\">Column Caps and Bases</a> <a class=\"link\" href=\"/stair-newels/pr?sid=b8s,ryh,is1\">Stair Newels</a> <a class=\"link\" href=\"/fence-posts/pr?sid=b8s,ryh,ma8\">Fence Posts</a> <a class=\"link\" href=\"/ceiling-panels/pr?sid=b8s,ryh,gme\">Ceiling Panels</a> <a class=\"link\" href=\"/stair-treads/pr?sid=b8s,ryh,gsc\">Stair Treads</a> <a class=\"link\" href=\"/baluster-shoes/pr?sid=b8s,ryh,crj\">Baluster Shoes</a> <a class=\"link\" href=\"/fence-caps/pr?sid=b8s,ryh,k03\">Fence Caps</a> <a class=\"link\" href=\"/gutter-guards/pr?sid=b8s,ryh,axj\">Gutter Guards</a> <a class=\"link\" href=\"/water-tanks/pr?sid=b8s,ryh,eyp\">Water Tanks</a> <a class=\"link\" href=\"/millwork-corbels/pr?sid=b8s,ryh,q5j\">Millwork Corbels</a> <a class=\"link\" href=\"/sidings/pr?sid=b8s,ryh,pgo\">Sidings</a> <a class=\"link\" href=\"/roof-gutters/pr?sid=b8s,ryh,mcm\">Roof Gutters</a> <a class=\"link\" href=\"/fence-pickets/pr?sid=b8s,ryh,sgr\">Fence Pickets</a> <a class=\"link\" href=\"/manhole-covers/pr?sid=b8s,ryh,tgx\">Manhole Covers</a> <a class=\"link\" href=\"/tiles/pr?sid=b8s,ryh,zp1\">Tiles</a> <a class=\"link\" href=\"/roof-shingles-and-shakes/pr?sid=b8s,ryh,ee6\">Roof Shingles and Shakes</a> <a class=\"link\" href=\"/roof-air-ventilator/pr?sid=b8s,ryh,wo7\">Roof Air Ventilator</a> <a class=\"link\" href=\"/stair-balusters/pr?sid=b8s,ryh,w8g\">Stair Balusters</a> <a class=\"link\" href=\"/floor-coating/pr?sid=b8s,ryh,iiz\">Floor Coating</a> <a class=\"link\" href=\"/plate-glass/pr?sid=b8s,ryh,yu3\">Plate Glass</a> <a class=\"link\" href=\"/handrail-brackets/pr?sid=b8s,ryh,qg6\">Handrail Brackets</a> <a class=\"link\" href=\"/platform-trolleys/pr?sid=b8s,l0w\">Platform Trolleys</a> </div><h2><a href=\"/industrial-scientific-supplies/pr?sid=gsx\">Industrial &amp; Scientific Supplies</a></h2><div><a class=\"link\" href=\"/industrial-measurement-devices/pr?sid=gsx,oe8\">Industrial Measurement Devices</a> <a class=\"link\" href=\"/sound-meters/pr?sid=gsx,oe8,lab\">Sound Meters</a> <a class=\"link\" href=\"/lcr-meters/pr?sid=gsx,oe8,vnd\">LCR Meters</a> <a class=\"link\" href=\"/ohmmeters/pr?sid=gsx,oe8,5eb\">Ohmmeters</a> <a class=\"link\" href=\"/tachometers/pr?sid=gsx,oe8,stk\">Tachometers</a> <a class=\"link\" href=\"/light-meters/pr?sid=gsx,oe8,9q6\">Light Meters</a> <a class=\"link\" href=\"/measurement-indicators/pr?sid=gsx,oe8,3nh\">Measurement Indicators</a> <a class=\"link\" href=\"/measurement-gauges/pr?sid=gsx,oe8,q1e\">Measurement Gauges</a> <a class=\"link\" href=\"/air-quality-meters/pr?sid=gsx,oe8,8zu\">Air Quality Meters</a> <a class=\"link\" href=\"/inside-micrometers/pr?sid=gsx,oe8,knt\">Inside Micrometers</a> <a class=\"link\" href=\"/frequency-meters/pr?sid=gsx,oe8,qjf\">Frequency Meters</a> <a class=\"link\" href=\"/manometers/pr?sid=gsx,oe8,cjq\">Manometers</a> <a class=\"link\" href=\"/packaging-shipping-products/pr?sid=gsx,bad\">Packaging & Shipping Products</a> <a class=\"link\" href=\"/corrugated-boxes/pr?sid=gsx,bad,csq\">Corrugated Boxes</a> <a class=\"link\" href=\"/pallets-and-crates/pr?sid=gsx,bad,whq\">Pallets and Crates</a> <a class=\"link\" href=\"/plastic-packaging-bags/pr?sid=gsx,bad,lgc\">Plastic Packaging Bags</a> <a class=\"link\" href=\"/lab-scientific-products/pr?sid=gsx,l9d\">Lab & Scientific Products</a> <a class=\"link\" href=\"/wave-motion-apparatus/pr?sid=gsx,l9d,28m\">Wave Motion Apparatus</a> <a class=\"link\" href=\"/laboratory-pipette/pr?sid=gsx,l9d,hip\">Laboratory Pipette</a> <a class=\"link\" href=\"/laboratory-resistance-box/pr?sid=gsx,l9d,eps\">Laboratory Resistance Box</a> <a class=\"link\" href=\"/colorimeter/pr?sid=gsx,l9d,yrv\">Colorimeter</a> <a class=\"link\" href=\"/weight-box/pr?sid=gsx,l9d,jcj\">Weight Box</a> <a class=\"link\" href=\"/laboratory-pendulum-bob/pr?sid=gsx,l9d,ccw\">Laboratory Pendulum Bob</a> <a class=\"link\" href=\"/electronic-boards/pr?sid=gsx,l9d,wth\">Electronic Boards</a> <a class=\"link\" href=\"/laboratory-wire-gauze/pr?sid=gsx,l9d,brz\">Laboratory Wire Gauze</a> <a class=\"link\" href=\"/electronic-displays/pr?sid=gsx,l9d,hle\">Electronic Displays</a> <a class=\"link\" href=\"/barometer/pr?sid=gsx,l9d,x9p\">Barometer</a> <a class=\"link\" href=\"/hydrometer/pr?sid=gsx,l9d,rxb\">Hydrometer</a> <a class=\"link\" href=\"/endoscopes/pr?sid=gsx,l9d,9yt\">Endoscopes</a> <a class=\"link\" href=\"/litmus-paper/pr?sid=gsx,l9d,5ic\">Litmus Paper</a> <a class=\"link\" href=\"/analytical-scale/pr?sid=gsx,l9d,lsb\">Analytical Scale</a> <a class=\"link\" href=\"/sensors/pr?sid=gsx,l9d,oa7\">Sensors</a> <a class=\"link\" href=\"/laboratory-centrifuges/pr?sid=gsx,l9d,6yf\">Laboratory Centrifuges</a> <a class=\"link\" href=\"/electronic-modules/pr?sid=gsx,l9d,h9k\">Electronic Modules</a> <a class=\"link\" href=\"/spectroscope/pr?sid=gsx,l9d,qzx\">Spectroscope</a> <a class=\"link\" href=\"/voltmeter/pr?sid=gsx,l9d,y1t\">Voltmeter</a> <a class=\"link\" href=\"/electronic-interconnects/pr?sid=gsx,l9d,nl7\">Electronic Interconnects</a> <a class=\"link\" href=\"/printed-circuit-board/pr?sid=gsx,l9d,zrr\">Printed Circuit Board</a> <a class=\"link\" href=\"/archimedes-apparatus/pr?sid=gsx,l9d,esk\">Archimedes Apparatus</a> <a class=\"link\" href=\"/laboratory-tripod-stand/pr?sid=gsx,l9d,k4f\">Laboratory Tripod Stand</a> <a class=\"link\" href=\"/ammeters/pr?sid=gsx,l9d,dv4\">Ammeters</a> <a class=\"link\" href=\"/vacuum-chamber/pr?sid=gsx,l9d,jx2\">Vacuum Chamber</a> <a class=\"link\" href=\"/cathode-ray-tube/pr?sid=gsx,l9d,oup\">Cathode Ray Tube</a> <a class=\"link\" href=\"/ultraviolet-lamp/pr?sid=gsx,l9d,3h2\">Ultraviolet Lamp</a> <a class=\"link\" href=\"/laboratory-bunsen-burner/pr?sid=gsx,l9d,m8b\">Laboratory Bunsen Burner</a> <a class=\"link\" href=\"/boyles-law-apparatus/pr?sid=gsx,l9d,tos\">Boyles Law Apparatus</a> <a class=\"link\" href=\"/prism/pr?sid=gsx,l9d,cpj\">Prism</a> <a class=\"link\" href=\"/laboratory-cylinder-drying-rack/pr?sid=gsx,l9d,x1z\">Laboratory Cylinder Drying Rack</a> <a class=\"link\" href=\"/graduated-cylinder/pr?sid=gsx,l9d,qdf\">Graduated Cylinder</a> <a class=\"link\" href=\"/homogenizer/pr?sid=gsx,l9d,yz7\">Homogenizer</a> <a class=\"link\" href=\"/demonstration-bell/pr?sid=gsx,l9d,5dh\">Demonstration Bell</a> <a class=\"link\" href=\"/inkblot-test/pr?sid=gsx,l9d,0om\">Inkblot Test</a> <a class=\"link\" href=\"/laboratory-evaporating-dish/pr?sid=gsx,l9d,m46\">Laboratory Evaporating Dish</a> <a class=\"link\" href=\"/lab-clamp-stand/pr?sid=gsx,l9d,fxe\">Lab Clamp Stand</a> <a class=\"link\" href=\"/laboratory-oven/pr?sid=gsx,l9d,pdp\">Laboratory Oven</a> <a class=\"link\" href=\"/newton-cradle/pr?sid=gsx,l9d,jfm\">Newton Cradle</a> <a class=\"link\" href=\"/rheostat/pr?sid=gsx,l9d,ugi\">Rheostat</a> <a class=\"link\" href=\"/laboratory-spot-plate/pr?sid=gsx,l9d,oe4\">Laboratory Spot Plate</a> <a class=\"link\" href=\"/crucible/pr?sid=gsx,l9d,gzq\">Crucible</a> <a class=\"link\" href=\"/sonometer/pr?sid=gsx,l9d,qon\">Sonometer</a> <a class=\"link\" href=\"/resistor/pr?sid=gsx,l9d,dk6\">Resistor</a> <a class=\"link\" href=\"/tds-meter/pr?sid=gsx,l9d,vhz\">TDS Meter</a> <a class=\"link\" href=\"/laboratory-brush/pr?sid=gsx,l9d,cup\">Laboratory Brush</a> <a class=\"link\" href=\"/lab-coat/pr?sid=gsx,l9d,gap\">Lab Coat</a> <a class=\"link\" href=\"/thermal-imagers/pr?sid=gsx,l9d,5hu\">Thermal Imagers</a> <a class=\"link\" href=\"/laboratory-flask/pr?sid=gsx,l9d,pzc\">Laboratory Flask</a> <a class=\"link\" href=\"/transistor/pr?sid=gsx,l9d,olb\">Transistor</a> <a class=\"link\" href=\"/test-tube/pr?sid=gsx,l9d,fnt\">Test Tube</a> <a class=\"link\" href=\"/diodes/pr?sid=gsx,l9d,gff\">Diodes</a> <a class=\"link\" href=\"/solution-basin/pr?sid=gsx,l9d,i7p\">Solution Basin</a> <a class=\"link\" href=\"/oscilloscope/pr?sid=gsx,l9d,4uv\">Oscilloscope</a> <a class=\"link\" href=\"/reflection-sound-system/pr?sid=gsx,l9d,zil\">Reflection Sound System</a> <a class=\"link\" href=\"/microscope-slide-box/pr?sid=gsx,l9d,pmy\">Microscope Slide Box</a> <a class=\"link\" href=\"/desiccator-plate/pr?sid=gsx,l9d,5xg\">Desiccator Plate</a> <a class=\"link\" href=\"/lab-slide/pr?sid=gsx,l9d,pif\">Lab Slide</a> <a class=\"link\" href=\"/slide-printer/pr?sid=gsx,l9d,t4p\">Slide Printer</a> <a class=\"link\" href=\"/refractometer/pr?sid=gsx,l9d,w7n\">Refractometer</a> <a class=\"link\" href=\"/cover-slip/pr?sid=gsx,l9d,m98\">Cover Slip</a> <a class=\"link\" href=\"/petri-dish/pr?sid=gsx,l9d,02e\">Petri Dish</a> <a class=\"link\" href=\"/capacitors/pr?sid=gsx,l9d,h8j\">Capacitors</a> <a class=\"link\" href=\"/electrophoresis-apartus/pr?sid=gsx,l9d,swl\">Electrophoresis Apartus</a> <a class=\"link\" href=\"/inclined-plane-apparatus/pr?sid=gsx,l9d,e9l\">Inclined Plane Apparatus</a> <a class=\"link\" href=\"/filter-papers/pr?sid=gsx,l9d,0pv\">Filter Papers</a> <a class=\"link\" href=\"/spectrophotometer/pr?sid=gsx,l9d,uby\">Spectrophotometer</a> <a class=\"link\" href=\"/beaker/pr?sid=gsx,l9d,4ez\">Beaker</a> <a class=\"link\" href=\"/kinetic-energy-apparatus/pr?sid=gsx,l9d,keg\">Kinetic Energy Apparatus</a> <a class=\"link\" href=\"/lab-vacuum-dryer/pr?sid=gsx,l9d,kpl\">Lab Vacuum Dryer</a> <a class=\"link\" href=\"/microtome/pr?sid=gsx,l9d,3ng\">Microtome</a> <a class=\"link\" href=\"/test-tube-clamp/pr?sid=gsx,l9d,pr2\">Test Tube Clamp</a> <a class=\"link\" href=\"/lab-hot-plate/pr?sid=gsx,l9d,buc\">Lab Hot Plate</a> <a class=\"link\" href=\"/viscometer/pr?sid=gsx,l9d,yy0\">Viscometer</a> <a class=\"link\" href=\"/laboratory-incubator/pr?sid=gsx,l9d,dk3\">Laboratory Incubator</a> <a class=\"link\" href=\"/resonance-apparatus/pr?sid=gsx,l9d,8go\">Resonance Apparatus</a> <a class=\"link\" href=\"/tissue-flotation-bath/pr?sid=gsx,l9d,ybl\">Tissue Flotation Bath</a> <a class=\"link\" href=\"/lab-vial/pr?sid=gsx,l9d,mmz\">Lab Vial</a> <a class=\"link\" href=\"/indicator-stands/pr?sid=gsx,l9d,ptd\">Indicator Stands</a> <a class=\"link\" href=\"/balance-scale/pr?sid=gsx,l9d,dne\">Balance Scale</a> <a class=\"link\" href=\"/digital-conductivity-meter/pr?sid=gsx,l9d,1a6\">Digital Conductivity Meter</a> <a class=\"link\" href=\"/ring-ball-apparatus/pr?sid=gsx,l9d,prm\">Ring Ball Apparatus</a> <a class=\"link\" href=\"/desiccator/pr?sid=gsx,l9d,dvp\">Desiccator</a> <a class=\"link\" href=\"/styrofoam-cutter/pr?sid=gsx,l9d,beu\">Styrofoam Cutter</a> <a class=\"link\" href=\"/test-tube-rack/pr?sid=gsx,l9d,hcv\">Test Tube Rack</a> <a class=\"link\" href=\"/laboratory-buret/pr?sid=gsx,l9d,8jj\">Laboratory Buret</a> <a class=\"link\" href=\"/laboratory-shakers/pr?sid=gsx,l9d,egh\">Laboratory Shakers</a> <a class=\"link\" href=\"/electronic-motors/pr?sid=gsx,l9d,ny1\">Electronic Motors</a> <a class=\"link\" href=\"/laboratory-dropper-bottle/pr?sid=gsx,l9d,lpb\">Laboratory Dropper Bottle</a> <a class=\"link\" href=\"/pulse-generators/pr?sid=gsx,l9d,ue3\">Pulse Generators</a> <a class=\"link\" href=\"/slide-dryer/pr?sid=gsx,l9d,jyi\">Slide Dryer</a> <a class=\"link\" href=\"/slide-warming-table/pr?sid=gsx,l9d,hx1\">Slide Warming Table</a> <a class=\"link\" href=\"/triple-beam-balance/pr?sid=gsx,l9d,tdt\">Triple Beam Balance</a> <a class=\"link\" href=\"/bug-viewer/pr?sid=gsx,l9d,lvn\">Bug Viewer</a> <a class=\"link\" href=\"/inductor/pr?sid=gsx,l9d,6tt\">Inductor</a> <a class=\"link\" href=\"/friction-board-apparatus/pr?sid=gsx,l9d,dlh\">Friction Board Apparatus</a> <a class=\"link\" href=\"/laboratory-watch-glass/pr?sid=gsx,l9d,bun\">Laboratory Watch Glass</a> <a class=\"link\" href=\"/additive-manufacturing-products/pr?sid=gsx,o8k\">Additive Manufacturing Products</a> <a class=\"link\" href=\"/3d-printer-and-accessories/pr?sid=gsx,o8k,fx7\">3D Printer and Accessories</a> <a class=\"link\" href=\"/industrial-testing-devices/pr?sid=gsx,gkc\">Industrial Testing Devices</a> <a class=\"link\" href=\"/ph-meters/pr?sid=gsx,gkc,4y5\">PH Meters</a> <a class=\"link\" href=\"/electrical-testing-devices/pr?sid=gsx,gkc,vhr\">Electrical Testing Devices</a> <a class=\"link\" href=\"/spectrum-analyzers/pr?sid=gsx,gkc,dzh\">Spectrum Analyzers</a> <a class=\"link\" href=\"/safety-products/pr?sid=gsx,bfk\">Safety Products</a> <a class=\"link\" href=\"/safety-glasses/pr?sid=gsx,bfk,51q\">Safety Glasses</a> <a class=\"link\" href=\"/ppe-kits/pr?sid=gsx,bfk,7zs\">PPE Kits</a> <a class=\"link\" href=\"/safety-signs/pr?sid=gsx,bfk,bfa\">Safety Signs</a> <a class=\"link\" href=\"/safety-caps/pr?sid=gsx,bfk,swb\">Safety Caps</a> <a class=\"link\" href=\"/safety-clothing/pr?sid=gsx,bfk,1ef\">Safety Clothing</a> <a class=\"link\" href=\"/safety-helmets/pr?sid=gsx,bfk,o9h\">Safety Helmets</a> <a class=\"link\" href=\"/safety-shoes/pr?sid=gsx,bfk,cin\">Safety Shoes</a> <a class=\"link\" href=\"/safety-ear-plugs/pr?sid=gsx,bfk,ife\">Safety Ear Plugs</a> <a class=\"link\" href=\"/safety-gloves/pr?sid=gsx,bfk,9fn\">Safety Gloves</a> <a class=\"link\" href=\"/safety-suits/pr?sid=gsx,bfk,l5d\">Safety Suits</a> <a class=\"link\" href=\"/safety-masks-and-respirators/pr?sid=gsx,bfk,pmm\">Safety Masks and Respirators</a> <a class=\"link\" href=\"/safety-shoe-covers/pr?sid=gsx,bfk,jqd\">Safety Shoe Covers</a> </div><h2><a href=\"/home-lighting/pr?sid=jhg\">Home Lighting</a></h2><div><a class=\"link\" href=\"/utility-lighting/pr?sid=jhg,yqn\">Utility Lighting</a> <a class=\"link\" href=\"/emergency-bulbs/pr?sid=jhg,yqn,zy7\">Emergency Bulbs</a> <a class=\"link\" href=\"/ceiling-light/pr?sid=jhg,yqn,0le\">Ceiling Light</a> <a class=\"link\" href=\"/bulbs/pr?sid=jhg,yqn,feb\">Bulbs</a> <a class=\"link\" href=\"/emergency-lights/pr?sid=jhg,yqn,m6m\">Emergency Lights</a> <a class=\"link\" href=\"/tube-lights/pr?sid=jhg,yqn,4ms\">Tube Lights</a> <a class=\"link\" href=\"/torches/pr?sid=jhg,yqn,db9\">Torches</a> <a class=\"link\" href=\"/study-lamps/pr?sid=jhg,yqn,k5y\">Study Lamps</a> <a class=\"link\" href=\"/decor-lighting-accessories/pr?sid=jhg,6w8\">Decor lighting & Accessories</a> <a class=\"link\" href=\"/ceiling-led-light/pr?sid=jhg,6w8,ydo\">Ceiling LED Light</a> <a class=\"link\" href=\"/table-lamps/pr?sid=jhg,6w8,gde\">Table Lamps</a> <a class=\"link\" href=\"/wall-lamps/pr?sid=jhg,6w8,mbd\">Wall Lamps</a> <a class=\"link\" href=\"/ceiling-lamps/pr?sid=jhg,6w8,rws\">Ceiling Lamps</a> <a class=\"link\" href=\"/floor-lamps/pr?sid=jhg,6w8,ikw\">Floor Lamps</a> <a class=\"link\" href=\"/outdoor-lamps/pr?sid=jhg,6w8,nyc\">Outdoor Lamps</a> <a class=\"link\" href=\"/rice-lights/pr?sid=jhg,6w8,jjg\">Rice Lights</a> <a class=\"link\" href=\"/night-lamps/pr?sid=jhg,6w8,jlo\">Night Lamps</a> <a class=\"link\" href=\"/chandeliers/pr?sid=jhg,6w8,z25\">Chandeliers</a> <a class=\"link\" href=\"/disco-lights/pr?sid=jhg,6w8,os7\">Disco Lights</a> <a class=\"link\" href=\"/lanterns/pr?sid=jhg,6w8,grh\">Lanterns</a> <a class=\"link\" href=\"/lamp-shades/pr?sid=jhg,6w8,gre\">Lamp Shades</a> <a class=\"link\" href=\"/lamp-bases/pr?sid=jhg,6w8,dck\">Lamp Bases</a> <a class=\"link\" href=\"/light-hanging-chains-rods/pr?sid=jhg,6w8,1il\">Light Hanging Chains & Rods</a> <a class=\"link\" href=\"/replacement-light-shades/pr?sid=jhg,6w8,kpj\">Replacement Light Shades</a> <a class=\"link\" href=\"/electrical-light-fixtures/pr?sid=jhg,6w8,uj0\">Electrical Light Fixtures</a> </div><h2><a href=\"/vehicles/pr?sid=7dk\">Vehicles</a></h2><div><a class=\"link\" href=\"/bikes-scooters/pr?sid=7dk,0aj\">Bikes & Scooters</a> <a class=\"link\" href=\"/petrol-bikes-scooters/pr?sid=7dk,0aj,kcq\">Petrol Bikes & Scooters</a> <a class=\"link\" href=\"/electric-bikes-scooters/pr?sid=7dk,0aj,kuz\">Electric Bikes & Scooters</a> <a class=\"link\" href=\"/cars/pr?sid=7dk,0si\">Cars</a> <a class=\"link\" href=\"/ice-cars/pr?sid=7dk,0si,pun\">ICE Cars</a> </div><h2><a href=\"/automotive-accessories/pr?sid=1mt\">Automotive Accessories</a></h2><div><a class=\"link\" href=\"/vehicle-mats/pr?sid=1mt,vvb\">Vehicle Mats</a> <a class=\"link\" href=\"/bike-mats/pr?sid=1mt,vvb,qh0\">Bike Mats</a> <a class=\"link\" href=\"/car-floor-liners/pr?sid=1mt,vvb,cmv\">Car Floor Liners</a> <a class=\"link\" href=\"/car-mats/pr?sid=1mt,vvb,cmj\">Car Mats</a> <a class=\"link\" href=\"/car-heat-insulator-liners/pr?sid=1mt,vvb,b8e\">Car Heat Insulator Liners</a> <a class=\"link\" href=\"/tyre-and-wheel/pr?sid=1mt,w8q\">Tyre and Wheel</a> <a class=\"link\" href=\"/tyres/pr?sid=1mt,w8q,fos\">Tyres</a> <a class=\"link\" href=\"/tyre-and-wheel-spares-and-accessories/pr?sid=1mt,w8q,i33\">Tyre and Wheel Spares and Accessories</a> <a class=\"link\" href=\"/tyre-tubes/pr?sid=1mt,w8q,rii\">Tyre Tubes</a> <a class=\"link\" href=\"/rims-and-wheels/pr?sid=1mt,w8q,6gx\">Rims and Wheels</a> <a class=\"link\" href=\"/vehicle-safety-security-and-guards/pr?sid=1mt,kiq\">Vehicle Safety, Security and Guards</a> <a class=\"link\" href=\"/bike-protective-guards/pr?sid=1mt,kiq,r4g\">Bike Protective Guards</a> <a class=\"link\" href=\"/vehicle-parking-security-and-navigation/pr?sid=1mt,kiq,t8u\">Vehicle Parking, Security and Navigation</a> <a class=\"link\" href=\"/driver-safety-equipments/pr?sid=1mt,kiq,7bs\">Driver Safety Equipments</a> <a class=\"link\" href=\"/vehicle-safe-storage/pr?sid=1mt,kiq,wwl\">Vehicle Safe Storage</a> <a class=\"link\" href=\"/car-dashboard-accessories/pr?sid=1mt,hoh\">Car Dashboard Accessories</a> <a class=\"link\" href=\"/car-dash-switch-panels/pr?sid=1mt,hoh,sw6\">Car Dash Switch Panels</a> <a class=\"link\" href=\"/car-dashboard-trims/pr?sid=1mt,hoh,ohh\">Car Dashboard Trims</a> <a class=\"link\" href=\"/car-dash-indicator-lamps/pr?sid=1mt,hoh,js3\">Car Dash Indicator Lamps</a> <a class=\"link\" href=\"/car-glove-boxes/pr?sid=1mt,hoh,8vn\">Car Glove Boxes</a> <a class=\"link\" href=\"/speedometers/pr?sid=1mt,hoh,02x\">Speedometers</a> <a class=\"link\" href=\"/car-dashboard-covers/pr?sid=1mt,hoh,dtf\">Car Dashboard Covers</a> <a class=\"link\" href=\"/car-tissue-dispensers/pr?sid=1mt,hoh,wiz\">Car Tissue Dispensers</a> <a class=\"link\" href=\"/vehicle-clocks/pr?sid=1mt,hoh,oc4\">Vehicle Clocks</a> <a class=\"link\" href=\"/car-glove-box-latch/pr?sid=1mt,hoh,ubf\">Car Glove Box Latch</a> <a class=\"link\" href=\"/car-air-purifiers-and-air-fresheners/pr?sid=1mt,bpx\">Car Air Purifiers and Air Fresheners</a> <a class=\"link\" href=\"/car-air-purifiers/pr?sid=1mt,bpx,sqv\">Car Air Purifiers</a> <a class=\"link\" href=\"/car-air-humidifiers-and-ionizers/pr?sid=1mt,bpx,j6c\">Car Air Humidifiers and Ionizers</a> <a class=\"link\" href=\"/car-air-fresheners-refills/pr?sid=1mt,bpx,bij\">Car Air Fresheners & Refills</a> <a class=\"link\" href=\"/vehicle-cleaners/pr?sid=1mt,s84\">Vehicle Cleaners</a> <a class=\"link\" href=\"/vehicle-cleaning-supplies/pr?sid=1mt,s84,zb5\">Vehicle Cleaning Supplies</a> <a class=\"link\" href=\"/headlight-brighteners/pr?sid=1mt,s84,uyo\">Headlight Brighteners</a> <a class=\"link\" href=\"/vehicle-cleaning-kits/pr?sid=1mt,s84,peg\">Vehicle Cleaning Kits</a> <a class=\"link\" href=\"/vehicle-pressure-washers/pr?sid=1mt,s84,jzx\">Vehicle Pressure Washers</a> <a class=\"link\" href=\"/vehicle-body-cleaners/pr?sid=1mt,s84,jwa\">Vehicle Body Cleaners</a> <a class=\"link\" href=\"/vehicle-dryers/pr?sid=1mt,s84,ab1\">Vehicle Dryers</a> <a class=\"link\" href=\"/engine-parts-cleaners/pr?sid=1mt,s84,8bv\">Engine Parts Cleaners</a> <a class=\"link\" href=\"/vehicle-vacuum-cleaners/pr?sid=1mt,s84,atb\">Vehicle Vacuum Cleaners</a> <a class=\"link\" href=\"/vehicle-lights-cleaners/pr?sid=1mt,s84,ttl\">Vehicle Lights Cleaners</a> <a class=\"link\" href=\"/headlight-restorer-kits/pr?sid=1mt,s84,zk1\">Headlight Restorer Kits</a> <a class=\"link\" href=\"/chain-cleaner-degreasers/pr?sid=1mt,s84,qll\">Chain Cleaner Degreasers</a> <a class=\"link\" href=\"/headlight-cleaning-kits/pr?sid=1mt,s84,519\">Headlight Cleaning Kits</a> <a class=\"link\" href=\"/vehicle-styling/pr?sid=1mt,d0x\">Vehicle Styling</a> <a class=\"link\" href=\"/exterior-stylings/pr?sid=1mt,d0x,zab\">Exterior Stylings</a> <a class=\"link\" href=\"/stickers-and-emblems/pr?sid=1mt,d0x,tyd\">Stickers and Emblems</a> <a class=\"link\" href=\"/interior-stylings/pr?sid=1mt,d0x,inl\">Interior Stylings</a> <a class=\"link\" href=\"/vehicle-stereo-and-music-system/pr?sid=1mt,eoe\">Vehicle Stereo and Music System</a> <a class=\"link\" href=\"/bike-stereo-systems/pr?sid=1mt,eoe,jmm\">Bike Stereo Systems</a> <a class=\"link\" href=\"/car-radio-knobs/pr?sid=1mt,eoe,fzd\">Car Radio Knobs</a> <a class=\"link\" href=\"/car-media-players/pr?sid=1mt,eoe,wmk\">Car Media Players</a> <a class=\"link\" href=\"/vehicle-antennas/pr?sid=1mt,eoe,gjf\">Vehicle Antennas</a> <a class=\"link\" href=\"/car-video-monitors/pr?sid=1mt,eoe,oa4\">Car Video Monitors</a> <a class=\"link\" href=\"/stereo-frames-boxes/pr?sid=1mt,eoe,a8o\">Stereo Frames & Boxes</a> <a class=\"link\" href=\"/car-speakers/pr?sid=1mt,eoe,vuu\">Car Speakers</a> <a class=\"link\" href=\"/car-amplifiers/pr?sid=1mt,eoe,5p2\">Car Amplifiers</a> <a class=\"link\" href=\"/car-subwoofers/pr?sid=1mt,eoe,kyc\">Car Subwoofers</a> <a class=\"link\" href=\"/vehicle-door-windshield-windows-and-mirrors/pr?sid=1mt,u7j\">Vehicle Door, Windshield, Windows and Mirrors</a> <a class=\"link\" href=\"/car-door-pull-straps/pr?sid=1mt,u7j,nb1\">Car Door Pull Straps</a> <a class=\"link\" href=\"/car-door-handle-trims/pr?sid=1mt,u7j,9nm\">Car Door Handle Trims</a> <a class=\"link\" href=\"/vehicle-mirror-covers/pr?sid=1mt,u7j,ftz\">Vehicle Mirror Covers</a> <a class=\"link\" href=\"/vehicle-mirrors/pr?sid=1mt,u7j,cp0\">Vehicle Mirrors</a> <a class=\"link\" href=\"/rearview-radar-mirrors/pr?sid=1mt,u7j,xdw\">Rearview Radar Mirrors</a> <a class=\"link\" href=\"/car-sunroof-kits/pr?sid=1mt,u7j,xy2\">Car Sunroof Kits</a> <a class=\"link\" href=\"/door-and-window-spares/pr?sid=1mt,u7j,u1w\">Door and Window Spares</a> <a class=\"link\" href=\"/car-window-visors/pr?sid=1mt,u7j,scd\">Car Window Visors</a> <a class=\"link\" href=\"/car-sun-shades/pr?sid=1mt,u7j,yl7\">Car Sun Shades</a> <a class=\"link\" href=\"/car-curtains/pr?sid=1mt,u7j,5r7\">Car Curtains</a> <a class=\"link\" href=\"/car-door-bumper-guards/pr?sid=1mt,u7j,bgv\">Car Door Bumper Guards</a> <a class=\"link\" href=\"/bike-mirror-adapters/pr?sid=1mt,u7j,5on\">Bike Mirror Adapters</a> <a class=\"link\" href=\"/car-mirror-rain-blockers/pr?sid=1mt,u7j,fbo\">Car Mirror Rain Blockers</a> <a class=\"link\" href=\"/vehicle-utility-accessories/pr?sid=1mt,ebm\">Vehicle Utility Accessories</a> <a class=\"link\" href=\"/car-interior-fans/pr?sid=1mt,ebm,rfr\">Car Interior Fans</a> <a class=\"link\" href=\"/vehicle-mobile-accessories/pr?sid=1mt,ebm,iwn\">Vehicle Mobile Accessories</a> <a class=\"link\" href=\"/car-cigarette-lighters/pr?sid=1mt,ebm,q5e\">Car Cigarette Lighters</a> <a class=\"link\" href=\"/car-laptop-chargers/pr?sid=1mt,ebm,b53\">Car Laptop Chargers</a> <a class=\"link\" href=\"/car-inverters/pr?sid=1mt,ebm,imh\">Car Inverters</a> <a class=\"link\" href=\"/helmet-bluetooth-device/pr?sid=1mt,ebm,9pj\">Helmet Bluetooth Device</a> <a class=\"link\" href=\"/compact-refrigerators/pr?sid=1mt,ebm,dqr\">Compact Refrigerators</a> <a class=\"link\" href=\"/car-heater-units/pr?sid=1mt,ebm,cjw\">Car Heater Units</a> <a class=\"link\" href=\"/oils-and-lubricants/pr?sid=1mt,0mi\">Oils and Lubricants</a> <a class=\"link\" href=\"/vehicle-oil-pump-kits/pr?sid=1mt,0mi,thj\">Vehicle Oil Pump Kits</a> <a class=\"link\" href=\"/engine-oil/pr?sid=1mt,0mi,p2g\">Engine Oil</a> <a class=\"link\" href=\"/filter-oil/pr?sid=1mt,0mi,yx3\">Filter Oil</a> <a class=\"link\" href=\"/brake-oil/pr?sid=1mt,0mi,0gz\">Brake Oil</a> <a class=\"link\" href=\"/power-steering-fluids/pr?sid=1mt,0mi,7xs\">Power Steering Fluids</a> <a class=\"link\" href=\"/gear-oil/pr?sid=1mt,0mi,wtr\">Gear Oil</a> <a class=\"link\" href=\"/fork-oil/pr?sid=1mt,0mi,azu\">Fork Oil</a> <a class=\"link\" href=\"/engine-oil-additives/pr?sid=1mt,0mi,xko\">Engine Oil Additives</a> <a class=\"link\" href=\"/chain-oil/pr?sid=1mt,0mi,rfk\">Chain Oil</a> <a class=\"link\" href=\"/vehicle-body-covers/pr?sid=1mt,aa4\">Vehicle Body Covers</a> <a class=\"link\" href=\"/bike-body-covers/pr?sid=1mt,aa4,law\">Bike Body Covers</a> <a class=\"link\" href=\"/bike-umbrellas/pr?sid=1mt,aa4,mze\">Bike Umbrellas</a> <a class=\"link\" href=\"/car-awning-sets/pr?sid=1mt,aa4,ozn\">Car Awning Sets</a> <a class=\"link\" href=\"/car-body-covers/pr?sid=1mt,aa4,hoc\">Car Body Covers</a> <a class=\"link\" href=\"/spares-tools-and-maintenance-service-parts/pr?sid=1mt,m2b\">Spares, Tools and Maintenance Service Parts</a> <a class=\"link\" href=\"/engine/pr?sid=1mt,m2b,hxx\">Engine</a> <a class=\"link\" href=\"/belts-and-chains/pr?sid=1mt,m2b,8pv\">Belts and Chains</a> <a class=\"link\" href=\"/vehicle-bearing/pr?sid=1mt,m2b,esx\">Vehicle Bearing</a> <a class=\"link\" href=\"/radiator/pr?sid=1mt,m2b,wgg\">Radiator</a> <a class=\"link\" href=\"/vehicle-brake-clutch/pr?sid=1mt,m2b,ekz\">Vehicle Brake & Clutch</a> <a class=\"link\" href=\"/vehicle-axle-and-shaft/pr?sid=1mt,m2b,ubm\">Vehicle Axle and Shaft</a> <a class=\"link\" href=\"/steering/pr?sid=1mt,m2b,weh\">Steering</a> <a class=\"link\" href=\"/vehicle-gauges/pr?sid=1mt,m2b,3r5\">Vehicle Gauges</a> <a class=\"link\" href=\"/other-spares-and-service-parts/pr?sid=1mt,m2b,jpo\">Other Spares and Service Parts</a> <a class=\"link\" href=\"/bike-foot-rest-and-stands/pr?sid=1mt,m2b,iic\">Bike Foot Rest and Stands</a> <a class=\"link\" href=\"/air-intake/pr?sid=1mt,m2b,yfl\">Air Intake</a> <a class=\"link\" href=\"/nuts-and-bolts/pr?sid=1mt,m2b,o7v\">Nuts and Bolts</a> <a class=\"link\" href=\"/vehicle-horns/pr?sid=1mt,m2b,lqf\">Vehicle Horns</a> <a class=\"link\" href=\"/vehicle-spring-and-suspension/pr?sid=1mt,m2b,8iq\">Vehicle Spring and Suspension</a> <a class=\"link\" href=\"/vehicle-exhaust/pr?sid=1mt,m2b,jxk\">Vehicle Exhaust</a> <a class=\"link\" href=\"/vehicle-fuse/pr?sid=1mt,m2b,1d3\">Vehicle Fuse</a> <a class=\"link\" href=\"/bike-handlebar/pr?sid=1mt,m2b,xzn\">Bike Handlebar</a> <a class=\"link\" href=\"/pedals/pr?sid=1mt,m2b,bj2\">Pedals</a> <a class=\"link\" href=\"/sensors-and-control-units/pr?sid=1mt,m2b,9nw\">Sensors and Control Units</a> <a class=\"link\" href=\"/filters/pr?sid=1mt,m2b,r3n\">Filters</a> <a class=\"link\" href=\"/handbrake/pr?sid=1mt,m2b,5pl\">Handbrake</a> <a class=\"link\" href=\"/coolant/pr?sid=1mt,m2b,tvl\">Coolant</a> <a class=\"link\" href=\"/automotive-tools/pr?sid=1mt,m2b,5xe\">Automotive Tools</a> <a class=\"link\" href=\"/vehicle-cables/pr?sid=1mt,m2b,bzm\">Vehicle Cables</a> <a class=\"link\" href=\"/starter-ignition-and-fuel-injection/pr?sid=1mt,m2b,g7h\">Starter, Ignition and Fuel Injection</a> <a class=\"link\" href=\"/vehicle-battery-and-jumper/pr?sid=1mt,m2b,dnc\">Vehicle Battery and Jumper</a> <a class=\"link\" href=\"/vehicle-air-conditioning/pr?sid=1mt,m2b,ah2\">Vehicle Air Conditioning</a> <a class=\"link\" href=\"/bonnet-and-bumper/pr?sid=1mt,m2b,jt8\">Bonnet and Bumper</a> <a class=\"link\" href=\"/vehicle-gear/pr?sid=1mt,m2b,xhh\">Vehicle Gear</a> <a class=\"link\" href=\"/vehicle-storage-and-organizers/pr?sid=1mt,b75\">Vehicle Storage and  Organizers</a> <a class=\"link\" href=\"/car-dash-panel-trays/pr?sid=1mt,b75,vdk\">Car Dash Panel Trays</a> <a class=\"link\" href=\"/car-flashlight-mounts/pr?sid=1mt,b75,1rm\">Car Flashlight Mounts</a> <a class=\"link\" href=\"/car-tray-tables/pr?sid=1mt,b75,aeq\">Car Tray Tables</a> <a class=\"link\" href=\"/bike-luggage-bag-box/pr?sid=1mt,b75,zbi\">Bike Luggage Bag & Box</a> <a class=\"link\" href=\"/bike-luggage-carriers/pr?sid=1mt,b75,rzf\">Bike Luggage Carriers</a> <a class=\"link\" href=\"/car-underseat-storages/pr?sid=1mt,b75,sjq\">Car Underseat Storages</a> <a class=\"link\" href=\"/car-visor-pouches/pr?sid=1mt,b75,8dd\">Car Visor Pouches</a> <a class=\"link\" href=\"/surfboard-car-carriers/pr?sid=1mt,b75,x0q\">Surfboard Car Carriers</a> <a class=\"link\" href=\"/fuel-cans/pr?sid=1mt,b75,cii\">Fuel Cans</a> <a class=\"link\" href=\"/car-laptop-mounts/pr?sid=1mt,b75,jl0\">Car Laptop Mounts</a> <a class=\"link\" href=\"/car-trunk-organizers/pr?sid=1mt,b75,065\">Car Trunk Organizers</a> <a class=\"link\" href=\"/car-coat-hangers/pr?sid=1mt,b75,lzg\">Car Coat Hangers</a> <a class=\"link\" href=\"/car-cargo-box/pr?sid=1mt,b75,55u\">Car Cargo Box</a> <a class=\"link\" href=\"/car-hanging-organizers/pr?sid=1mt,b75,nq8\">Car Hanging Organizers</a> <a class=\"link\" href=\"/vehicle-cargo-nets/pr?sid=1mt,b75,xfh\">Vehicle Cargo Nets</a> <a class=\"link\" href=\"/car-trash-bins-bags/pr?sid=1mt,b75,xqx\">Car Trash Bins & Bags</a> <a class=\"link\" href=\"/roof-rails/pr?sid=1mt,b75,as3\">Roof Rails</a> <a class=\"link\" href=\"/ash-trays/pr?sid=1mt,b75,jiv\">Ash Trays</a> <a class=\"link\" href=\"/car-cupbottle-holders/pr?sid=1mt,b75,ybo\">Car Cup/Bottle Holders</a> <a class=\"link\" href=\"/car-roll-bar-storages/pr?sid=1mt,b75,ojt\">Car Roll Bar Storages</a> <a class=\"link\" href=\"/car-sunglass-holders/pr?sid=1mt,b75,i65\">Car Sunglass Holders</a> <a class=\"link\" href=\"/cargo-rails/pr?sid=1mt,b75,x3q\">Cargo Rails</a> <a class=\"link\" href=\"/car-bicycle-mounts/pr?sid=1mt,b75,n2t\">Car Bicycle Mounts</a> <a class=\"link\" href=\"/helmets-and-riding-gear/pr?sid=1mt,ztf\">Helmets and Riding Gear</a> <a class=\"link\" href=\"/rider-hydration-packs/pr?sid=1mt,ztf,qzp\">Rider Hydration Packs</a> <a class=\"link\" href=\"/helmet-and-accessories/pr?sid=1mt,ztf,iv8\">Helmet and Accessories</a> <a class=\"link\" href=\"/riding-gear/pr?sid=1mt,ztf,tbi\">Riding Gear</a> <a class=\"link\" href=\"/vehicle-seat-and-accessories/pr?sid=1mt,qwe\">Vehicle Seat and Accessories</a> <a class=\"link\" href=\"/vehicle-seating-pads/pr?sid=1mt,qwe,rdb\">Vehicle Seating Pads</a> <a class=\"link\" href=\"/car-seatbelt-covers/pr?sid=1mt,qwe,x3o\">Car Seatbelt Covers</a> <a class=\"link\" href=\"/bike-spring-seats/pr?sid=1mt,qwe,cgv\">Bike Spring Seats</a> <a class=\"link\" href=\"/car-armrest-covers/pr?sid=1mt,qwe,9iv\">Car Armrest Covers</a> <a class=\"link\" href=\"/car-inflatable-beds/pr?sid=1mt,qwe,pry\">Car Inflatable Beds</a> <a class=\"link\" href=\"/car-seat-belts/pr?sid=1mt,qwe,lmm\">Car Seat Belts</a> <a class=\"link\" href=\"/seat-belt-buckle-and-extenders/pr?sid=1mt,qwe,zai\">Seat Belt Buckle and Extenders</a> <a class=\"link\" href=\"/car-pillows-and-cushions/pr?sid=1mt,qwe,gyt\">Car Pillows and Cushions</a> <a class=\"link\" href=\"/bike-seat-covers/pr?sid=1mt,qwe,dpb\">Bike Seat Covers</a> <a class=\"link\" href=\"/vehicle-seat-mount-kits/pr?sid=1mt,qwe,vun\">Vehicle Seat Mount Kits</a> <a class=\"link\" href=\"/car-armrests/pr?sid=1mt,qwe,syo\">Car Armrests</a> <a class=\"link\" href=\"/car-seat-covers/pr?sid=1mt,qwe,jiy\">Car Seat Covers</a> <a class=\"link\" href=\"/car-armrest-pad-cushions/pr?sid=1mt,qwe,hq7\">Car Armrest Pad Cushions</a> <a class=\"link\" href=\"/vehicle-lights/pr?sid=1mt,85k\">Vehicle Lights</a> <a class=\"link\" href=\"/vehicle-mirror-lights/pr?sid=1mt,85k,5wk\">Vehicle Mirror Lights</a> <a class=\"link\" href=\"/bike-handlebar-lights/pr?sid=1mt,85k,613\">Bike Handlebar Lights</a> <a class=\"link\" href=\"/projector-lens/pr?sid=1mt,85k,qnm\">Projector Lens</a> <a class=\"link\" href=\"/indicator-lights/pr?sid=1mt,85k,xhz\">Indicator Lights</a> <a class=\"link\" href=\"/vehicle-light-bulbs/pr?sid=1mt,85k,rfq\">Vehicle Light Bulbs</a> <a class=\"link\" href=\"/light-grills/pr?sid=1mt,85k,gib\">Light Grills</a> <a class=\"link\" href=\"/daytime-running-lights-and-led-strip-lights/pr?sid=1mt,85k,xpu\">Daytime Running Lights and LED Strip Lights</a> <a class=\"link\" href=\"/car-bulb-holders/pr?sid=1mt,85k,whj\">Car Bulb Holders</a> <a class=\"link\" href=\"/headlight-and-taillight-assemblies/pr?sid=1mt,85k,95d\">Headlight and Taillight Assemblies</a> <a class=\"link\" href=\"/headlights-and-fog-lamps/pr?sid=1mt,85k,a7e\">Headlights and Fog Lamps</a> <a class=\"link\" href=\"/automobiles/pr?sid=1mt,fak\">Automobiles</a> <a class=\"link\" href=\"/electric-scooter-boards/pr?sid=1mt,fak,q6a\">Electric Scooter Boards</a> <a class=\"link\" href=\"/bikes/pr?sid=1mt,fak,psi\">Bikes</a> <a class=\"link\" href=\"/cars/pr?sid=1mt,fak,ih1\">Cars</a> <a class=\"link\" href=\"/scooters-and-mopeds/pr?sid=1mt,fak,jmo\">Scooters and Mopeds</a> <a class=\"link\" href=\"/automotive-combos/pr?sid=1mt,4aa\">Automotive Combos</a> <a class=\"link\" href=\"/vehicle-repair/pr?sid=1mt,uhg\">Vehicle Repair</a> <a class=\"link\" href=\"/vehicle-mobility-repair/pr?sid=1mt,uhg,2ka\">Vehicle Mobility Repair</a> <a class=\"link\" href=\"/vehicle-body-repair/pr?sid=1mt,uhg,zfb\">Vehicle Body Repair</a> </div><h2><a href=\"/exercise-fitness/pr?sid=qoc\">Exercise &amp; Fitness</a></h2><div><a class=\"link\" href=\"/fitness-accessories/pr?sid=qoc,acb\">Fitness Accessories</a> <a class=\"link\" href=\"/shakers-and-sippers/pr?sid=qoc,acb,qat\">Shakers and Sippers</a> <a class=\"link\" href=\"/supports/pr?sid=qoc,acb,aa3\">Supports</a> <a class=\"link\" href=\"/gym-gloves/pr?sid=qoc,acb,afr\">Gym Gloves</a> <a class=\"link\" href=\"/dumbbells/pr?sid=qoc,acb,zuc\">Dumbbells</a> <a class=\"link\" href=\"/skipping-ropes/pr?sid=qoc,acb,0xb\">Skipping Ropes</a> <a class=\"link\" href=\"/gym-bag/pr?sid=qoc,acb,zgt\">Gym Bag</a> <a class=\"link\" href=\"/bars/pr?sid=qoc,acb,buq\">Bars</a> <a class=\"link\" href=\"/balance-steps/pr?sid=qoc,acb,f1p\">Balance Steps</a> <a class=\"link\" href=\"/battle-ropes/pr?sid=qoc,acb,hy5\">Battle Ropes</a> <a class=\"link\" href=\"/fitness-balance-boards/pr?sid=qoc,acb,5kd\">Fitness Balance Boards</a> <a class=\"link\" href=\"/resistance-bands/pr?sid=qoc,acb,b80\">Resistance Bands</a> <a class=\"link\" href=\"/foam-rollers/pr?sid=qoc,acb,a2c\">Foam Rollers</a> <a class=\"link\" href=\"/free-weights/pr?sid=qoc,acb,kjs\">Free Weights</a> <a class=\"link\" href=\"/gym-balls/pr?sid=qoc,acb,hnn\">Gym Balls</a> <a class=\"link\" href=\"/gymnastic-sticks/pr?sid=qoc,acb,szn\">Gymnastic Sticks</a> <a class=\"link\" href=\"/hand-grips/pr?sid=qoc,acb,jjo\">Hand Grips</a> <a class=\"link\" href=\"/hula-hoops/pr?sid=qoc,acb,btm\">Hula Hoops</a> <a class=\"link\" href=\"/mats/pr?sid=qoc,acb,rmd\">Mats</a> <a class=\"link\" href=\"/medicine-balls/pr?sid=qoc,acb,lx3\">Medicine Balls</a> <a class=\"link\" href=\"/resistance-tubes/pr?sid=qoc,acb,acl\">Resistance Tubes</a> <a class=\"link\" href=\"/steppers/pr?sid=qoc,acb,vci\">Steppers</a> <a class=\"link\" href=\"/weight-sled/pr?sid=qoc,acb,ruk\">Weight Sled</a> <a class=\"link\" href=\"/gym-ball-bases/pr?sid=qoc,acb,kml\">Gym Ball Bases</a> <a class=\"link\" href=\"/fitness-equipment/pr?sid=qoc,amf\">Fitness Equipment</a> <a class=\"link\" href=\"/treadmills/pr?sid=qoc,amf,oyq\">Treadmills</a> <a class=\"link\" href=\"/exercise-bikes/pr?sid=qoc,amf,eut\">Exercise Bikes</a> <a class=\"link\" href=\"/cross-trainers/pr?sid=qoc,amf,gci\">Cross Trainers</a> <a class=\"link\" href=\"/ab-exercisers/pr?sid=qoc,amf,sma\">Ab Exercisers</a> <a class=\"link\" href=\"/fitness-kits/pr?sid=qoc,amf,vh3\">Fitness Kits</a> <a class=\"link\" href=\"/home-gym-combos/pr?sid=qoc,amf,pz0\">Home Gym Combos</a> <a class=\"link\" href=\"/mini-exerciser-cycles/pr?sid=qoc,amf,1y5\">Mini Exerciser Cycles</a> <a class=\"link\" href=\"/fitness-benches/pr?sid=qoc,amf,o3b\">Fitness Benches</a> <a class=\"link\" href=\"/rowing-machines/pr?sid=qoc,amf,gsa\">Rowing Machines</a> <a class=\"link\" href=\"/lat-pulldowns/pr?sid=qoc,amf,vlx\">Lat Pulldowns</a> <a class=\"link\" href=\"/yoga/pr?sid=qoc,s1h\">Yoga</a> <a class=\"link\" href=\"/yoga-kit/pr?sid=qoc,s1h,t9a\">Yoga Kit</a> <a class=\"link\" href=\"/yoga-mats/pr?sid=qoc,s1h,fco\">Yoga Mats</a> <a class=\"link\" href=\"/yoga-blocks/pr?sid=qoc,s1h,nzs\">Yoga Blocks</a> <a class=\"link\" href=\"/yoga-straps/pr?sid=qoc,s1h,hbb\">Yoga Straps</a> <a class=\"link\" href=\"/yoga-bags/pr?sid=qoc,s1h,nay\">Yoga Bags</a> <a class=\"link\" href=\"/pilates/pr?sid=qoc,cos\">Pilates</a> <a class=\"link\" href=\"/pilates-chairs/pr?sid=qoc,cos,inz\">Pilates Chairs</a> <a class=\"link\" href=\"/pilates-reformers/pr?sid=qoc,cos,fwj\">Pilates Reformers</a> <a class=\"link\" href=\"/pilates-rings/pr?sid=qoc,cos,wq6\">Pilates Rings</a> <a class=\"link\" href=\"/mobility-aids-equipments/pr?sid=qoc,jl8\">Mobility Aids & Equipments</a> <a class=\"link\" href=\"/stress-relief-balls/pr?sid=qoc,jl8,nj3\">Stress Relief Balls</a> <a class=\"link\" href=\"/finger-splints/pr?sid=qoc,jl8,5zp\">Finger Splints</a> <a class=\"link\" href=\"/finger-sleeves/pr?sid=qoc,jl8,lxm\">Finger Sleeves</a> <a class=\"link\" href=\"/back-spine-protectors/pr?sid=qoc,jl8,lxj\">Back & Spine Protectors</a> <a class=\"link\" href=\"/massagers/pr?sid=qoc,jl8,qcz\">Massagers</a> <a class=\"link\" href=\"/walking-sticks/pr?sid=qoc,jl8,pn6\">Walking Sticks</a> </div><h2><a href=\"/clothing-and-accessories/pr?sid=clo\">Clothing and Accessories</a></h2><div><a class=\"link\" href=\"/winter-wear/pr?sid=clo,qvw\">Winter Wear</a> <a class=\"link\" href=\"/shrugs/pr?sid=clo,qvw,vvr\">Shrugs</a> <a class=\"link\" href=\"/gloves/pr?sid=clo,qvw,tog\">Gloves</a> <a class=\"link\" href=\"/sweatshirts/pr?sid=clo,qvw,64a\">Sweatshirts</a> <a class=\"link\" href=\"/shawls/pr?sid=clo,qvw,kpn\">Shawls</a> <a class=\"link\" href=\"/sweaters-and-cardigans/pr?sid=clo,qvw,vkb\">Sweaters and Cardigans</a> <a class=\"link\" href=\"/mufflers/pr?sid=clo,qvw,a05\">Mufflers</a> <a class=\"link\" href=\"/scarves/pr?sid=clo,qvw,mgw\">Scarves</a> <a class=\"link\" href=\"/leg-warmers/pr?sid=clo,qvw,lpj\">Leg Warmers</a> <a class=\"link\" href=\"/jackets/pr?sid=clo,qvw,z0g\">Jackets</a> <a class=\"link\" href=\"/ponchos/pr?sid=clo,qvw,h0j\">Ponchos</a> <a class=\"link\" href=\"/thermals/pr?sid=clo,qvw,ugg\">Thermals</a> <a class=\"link\" href=\"/arm-warmers/pr?sid=clo,qvw,rrn\">Arm Warmers</a> <a class=\"link\" href=\"/topwear/pr?sid=clo,ash\">Topwear</a> <a class=\"link\" href=\"/shirts/pr?sid=clo,ash,axc\">Shirts</a> <a class=\"link\" href=\"/tshirts/pr?sid=clo,ash,ank\">T-shirts</a> <a class=\"link\" href=\"/tops/pr?sid=clo,ash,ohw\">Tops</a> <a class=\"link\" href=\"/bottomwear/pr?sid=clo,vua\">Bottomwear</a> <a class=\"link\" href=\"/shorts/pr?sid=clo,vua,e8g\">Shorts</a> <a class=\"link\" href=\"/harem-pants/pr?sid=clo,vua,yzg\">Harem Pants</a> <a class=\"link\" href=\"/jeggings/pr?sid=clo,vua,ioa\">Jeggings</a> <a class=\"link\" href=\"/skirts/pr?sid=clo,vua,iku\">Skirts</a> <a class=\"link\" href=\"/threefourths/pr?sid=clo,vua,eum\">Three-Fourths</a> <a class=\"link\" href=\"/jeans/pr?sid=clo,vua,k58\">Jeans</a> <a class=\"link\" href=\"/tights/pr?sid=clo,vua,zvq\">Tights</a> <a class=\"link\" href=\"/track-pants/pr?sid=clo,vua,jlk\">Track Pants</a> <a class=\"link\" href=\"/lungis/pr?sid=clo,vua,5jo\">Lungis</a> <a class=\"link\" href=\"/capris/pr?sid=clo,vua,7e0\">Capris</a> <a class=\"link\" href=\"/cargos/pr?sid=clo,vua,rqy\">Cargos</a> <a class=\"link\" href=\"/trousers/pr?sid=clo,vua,mle\">Trousers</a> <a class=\"link\" href=\"/raincoats/pr?sid=clo,mz5\">Raincoats</a> <a class=\"link\" href=\"/men-and-women-raincoats/pr?sid=clo,mz5,jbj\">Men and Women Raincoats</a> <a class=\"link\" href=\"/kids-raincoats/pr?sid=clo,mz5,hjc\">Kids' Raincoats</a> <a class=\"link\" href=\"/dresses-and-gowns/pr?sid=clo,odx\">Dresses and Gowns</a> <a class=\"link\" href=\"/gowns/pr?sid=clo,odx,od7\">Gowns</a> <a class=\"link\" href=\"/dresses/pr?sid=clo,odx,maj\">Dresses</a> <a class=\"link\" href=\"/clothing-accessories/pr?sid=clo,qd8\">Clothing Accessories</a> <a class=\"link\" href=\"/collar-stays/pr?sid=clo,qd8,p9y\">Collar Stays</a> <a class=\"link\" href=\"/mittens/pr?sid=clo,qd8,u60\">Mittens</a> <a class=\"link\" href=\"/turbans/pr?sid=clo,qd8,igi\">Turbans</a> <a class=\"link\" href=\"/applique-patch/pr?sid=clo,qd8,dfg\">Applique Patch</a> <a class=\"link\" href=\"/suspenders/pr?sid=clo,qd8,emg\">Suspenders</a> <a class=\"link\" href=\"/garters/pr?sid=clo,qd8,atf\">Garters</a> <a class=\"link\" href=\"/stoles/pr?sid=clo,qd8,90q\">Stoles</a> <a class=\"link\" href=\"/caps/pr?sid=clo,qd8,y9u\">Caps</a> <a class=\"link\" href=\"/bandanas/pr?sid=clo,qd8,dy2\">Bandanas</a> <a class=\"link\" href=\"/handkerchiefs/pr?sid=clo,qd8,el0\">Handkerchiefs</a> <a class=\"link\" href=\"/hats/pr?sid=clo,qd8,9gi\">Hats</a> <a class=\"link\" href=\"/wristbands/pr?sid=clo,qd8,zsi\">Wristbands</a> <a class=\"link\" href=\"/ties-and-cufflinks/pr?sid=clo,qd8,lrt\">Ties and Cufflinks</a> <a class=\"link\" href=\"/dupattas/pr?sid=clo,qd8,t6b\">Dupattas</a> <a class=\"link\" href=\"/abayas-and-burqas/pr?sid=clo,qd8,rvu\">Abayas and Burqas</a> <a class=\"link\" href=\"/thawbs/pr?sid=clo,qd8,bm9\">Thawbs</a> <a class=\"link\" href=\"/socks/pr?sid=clo,qd8,ezr\">Socks</a> <a class=\"link\" href=\"/stockings/pr?sid=clo,qd8,fyx\">Stockings</a> <a class=\"link\" href=\"/sarong/pr?sid=clo,qd8,bsd\">Sarong</a> <a class=\"link\" href=\"/sauna-suits/pr?sid=clo,qd8,8za\">Sauna Suits</a> <a class=\"link\" href=\"/jumpsuits-and-dungarees/pr?sid=clo,h4p\">Jumpsuits and Dungarees</a> <a class=\"link\" href=\"/womens-jumpsuits-and-dungarees/pr?sid=clo,h4p,fpl\">Women's Jumpsuits and Dungarees</a> <a class=\"link\" href=\"/mens-dungarees/pr?sid=clo,h4p,yns\">Men's Dungarees</a> <a class=\"link\" href=\"/kids-rompers-and-dungarees/pr?sid=clo,h4p,2z1\">Kids' Rompers and Dungarees</a> <a class=\"link\" href=\"/kurtas-ethnic-sets-and-bottoms/pr?sid=clo,cfv\">Kurtas, Ethnic Sets and Bottoms</a> <a class=\"link\" href=\"/sherwanis/pr?sid=clo,cfv,dra\">Sherwanis</a> <a class=\"link\" href=\"/salwars-and-patialas/pr?sid=clo,cfv,1n0\">Salwars and Patialas</a> <a class=\"link\" href=\"/ethnic-sets/pr?sid=clo,cfv,itg\">Ethnic Sets</a> <a class=\"link\" href=\"/palazzos/pr?sid=clo,cfv,mn6\">Palazzos</a> <a class=\"link\" href=\"/dhotis/pr?sid=clo,cfv,nnk\">Dhotis</a> <a class=\"link\" href=\"/leggings-and-churidars/pr?sid=clo,cfv,ht7\">Leggings and Churidars</a> <a class=\"link\" href=\"/shararas/pr?sid=clo,cfv,7po\">Shararas</a> <a class=\"link\" href=\"/ethnic-pyjamas/pr?sid=clo,cfv,e1p\">Ethnic Pyjamas</a> <a class=\"link\" href=\"/kurtas/pr?sid=clo,cfv,cib\">Kurtas</a> <a class=\"link\" href=\"/dhoti-pants/pr?sid=clo,cfv,emd\">Dhoti Pants</a> <a class=\"link\" href=\"/fabrics/pr?sid=clo,qfi\">Fabrics</a> <a class=\"link\" href=\"/shirt-and-trouser-fabrics/pr?sid=clo,qfi,alw\">Shirt and Trouser Fabrics</a> <a class=\"link\" href=\"/formal-suit-fabrics/pr?sid=clo,qfi,5gn\">Formal Suit Fabrics</a> <a class=\"link\" href=\"/dress-materials/pr?sid=clo,qfi,xcx\">Dress Materials</a> <a class=\"link\" href=\"/blouse-material/pr?sid=clo,qfi,gkj\">Blouse Material</a> <a class=\"link\" href=\"/sarees-and-saree-essentials/pr?sid=clo,8on\">Sarees and Saree Essentials</a> <a class=\"link\" href=\"/blouses/pr?sid=clo,8on,5n9\">Blouses</a> <a class=\"link\" href=\"/sarees/pr?sid=clo,8on,zpd\">Sarees</a> <a class=\"link\" href=\"/saree-falls/pr?sid=clo,8on,a4q\">Saree Falls</a> <a class=\"link\" href=\"/petticoats/pr?sid=clo,8on,tpo\">Petticoats</a> <a class=\"link\" href=\"/kids-combos-and-costumes/pr?sid=clo,eof\">Kids' Combos and Costumes</a> <a class=\"link\" href=\"/kids-apparel-combos/pr?sid=clo,eof,1bp\">Kids' Apparel Combos</a> <a class=\"link\" href=\"/kids-costume-wear/pr?sid=clo,eof,ygv\">Kids' Costume Wear</a> <a class=\"link\" href=\"/lehenga-cholis/pr?sid=clo,hlg\">Lehenga Cholis</a> <a class=\"link\" href=\"/kids-lehenga-cholis/pr?sid=clo,hlg,nb5\">Kids' Lehenga Cholis</a> <a class=\"link\" href=\"/womens-lehenga-cholis/pr?sid=clo,hlg,wrp\">Women's Lehenga Cholis</a> <a class=\"link\" href=\"/windcheaters/pr?sid=clo,8j5\">Windcheaters</a> <a class=\"link\" href=\"/womens-windcheaters/pr?sid=clo,8j5,fx1\">Women's Windcheaters</a> <a class=\"link\" href=\"/mens-windcheaters/pr?sid=clo,8j5,ly8\">Men's Windcheaters</a> <a class=\"link\" href=\"/kids-windcheaters/pr?sid=clo,8j5,tax\">Kids' Windcheaters</a> <a class=\"link\" href=\"/sleepwear/pr?sid=clo,1hc\">Sleepwear</a> <a class=\"link\" href=\"/night-suits/pr?sid=clo,1hc,5d2\">Night Suits</a> <a class=\"link\" href=\"/pyjamas-and-lounge-pants/pr?sid=clo,1hc,a7m\">Pyjamas and Lounge Pants</a> <a class=\"link\" href=\"/night-dresses-and-nighties/pr?sid=clo,1hc,kc4\">Night Dresses and Nighties</a> <a class=\"link\" href=\"/innerwear-and-swimwear/pr?sid=clo,qfl\">Innerwear and Swimwear</a> <a class=\"link\" href=\"/camisoles-and-slips/pr?sid=clo,qfl,pji\">Camisoles and Slips</a> <a class=\"link\" href=\"/briefs-and-trunks/pr?sid=clo,qfl,szr\">Briefs and Trunks</a> <a class=\"link\" href=\"/shapewears/pr?sid=clo,qfl,uga\">Shapewears</a> <a class=\"link\" href=\"/lingerie-sets-and-accessories/pr?sid=clo,qfl,w4j\">Lingerie Sets and Accessories</a> <a class=\"link\" href=\"/babydolls/pr?sid=clo,qfl,t6c\">Babydolls</a> <a class=\"link\" href=\"/swimsuits/pr?sid=clo,qfl,dru\">Swimsuits</a> <a class=\"link\" href=\"/panties/pr?sid=clo,qfl,q5u\">Panties</a> <a class=\"link\" href=\"/vests/pr?sid=clo,qfl,wp7\">Vests</a> <a class=\"link\" href=\"/kids-bloomers/pr?sid=clo,qfl,9dy\">Kids' Bloomers</a> <a class=\"link\" href=\"/boxers/pr?sid=clo,qfl,1pt\">Boxers</a> <a class=\"link\" href=\"/bras/pr?sid=clo,qfl,v5v\">Bras</a> <a class=\"link\" href=\"/tracksuits/pr?sid=clo,nyk\">Tracksuits</a> <a class=\"link\" href=\"/mens-tracksuits/pr?sid=clo,nyk,zp4\">Men's Tracksuits</a> <a class=\"link\" href=\"/womens-tracksuits/pr?sid=clo,nyk,ndn\">Women's Tracksuits</a> <a class=\"link\" href=\"/kids-tracksuits/pr?sid=clo,nyk,bu3\">Kids' Tracksuits</a> <a class=\"link\" href=\"/blazers-waistcoats-and-suits/pr?sid=clo,upk\">Blazers, Waistcoats and Suits</a> <a class=\"link\" href=\"/coats/pr?sid=clo,upk,6zw\">Coats</a> <a class=\"link\" href=\"/suits/pr?sid=clo,upk,sxw\">Suits</a> <a class=\"link\" href=\"/blazers/pr?sid=clo,upk,fj9\">Blazers</a> <a class=\"link\" href=\"/waistcoats/pr?sid=clo,upk,8mn\">Waistcoats</a> <a class=\"link\" href=\"/coords/pr?sid=clo,l1l\">Co-ords</a> </div><h2><a href=\"/kitchen-cookware-serveware/pr?sid=upp\">Kitchen, Cookware &amp; Serveware</a></h2><div><a class=\"link\" href=\"/spray-bottle/pr?sid=upp,3at\">Spray Bottle</a> <a class=\"link\" href=\"/kitchen-tools/pr?sid=upp,ldf\">Kitchen Tools</a> <a class=\"link\" href=\"/tea-strainers/pr?sid=upp,ldf,u8h\">Tea Strainers</a> <a class=\"link\" href=\"/fried-ice-cream-plate/pr?sid=upp,ldf,rvv\">Fried Ice Cream Plate</a> <a class=\"link\" href=\"/crepe-stick/pr?sid=upp,ldf,04g\">Crepe Stick</a> <a class=\"link\" href=\"/patty-press/pr?sid=upp,ldf,qb9\">Patty Press</a> <a class=\"link\" href=\"/ladles/pr?sid=upp,ldf,xly\">Ladles</a> <a class=\"link\" href=\"/spatulas/pr?sid=upp,ldf,2bx\">Spatulas</a> <a class=\"link\" href=\"/whisks/pr?sid=upp,ldf,zu8\">Whisks</a> <a class=\"link\" href=\"/tongs/pr?sid=upp,ldf,mkd\">Tongs</a> <a class=\"link\" href=\"/kitchen-presses/pr?sid=upp,ldf,mrk\">Kitchen Presses</a> <a class=\"link\" href=\"/dumpling-presses/pr?sid=upp,ldf,pbr\">Dumpling Presses</a> <a class=\"link\" href=\"/strainers-colanders/pr?sid=upp,ldf,ql1\">Strainers & Colanders</a> <a class=\"link\" href=\"/rolling-pins-boards/pr?sid=upp,ldf,wmd\">Rolling Pins & Boards</a> <a class=\"link\" href=\"/kitchen-scoops/pr?sid=upp,ldf,v8p\">Kitchen Scoops</a> <a class=\"link\" href=\"/kitchen-tool-sets/pr?sid=upp,ldf,sog\">Kitchen Tool Sets</a> <a class=\"link\" href=\"/dough-makers/pr?sid=upp,ldf,ebo\">Dough Makers</a> <a class=\"link\" href=\"/funnels/pr?sid=upp,ldf,noo\">Funnels</a> <a class=\"link\" href=\"/sushi-makers/pr?sid=upp,ldf,h4u\">Sushi Makers</a> <a class=\"link\" href=\"/egg-separators/pr?sid=upp,ldf,xqc\">Egg Separators</a> <a class=\"link\" href=\"/kitchen-paper-dispensers/pr?sid=upp,ldf,rui\">Kitchen Paper Dispensers</a> <a class=\"link\" href=\"/meat-tenderizers/pr?sid=upp,ldf,gkt\">Meat Tenderizers</a> <a class=\"link\" href=\"/vacuum-bag-sealers/pr?sid=upp,ldf,rlp\">Vacuum Bag Sealers</a> <a class=\"link\" href=\"/fish-scalers/pr?sid=upp,ldf,3yi\">Fish Scalers</a> <a class=\"link\" href=\"/ice-cream-makers/pr?sid=upp,ldf,dfb\">Ice Cream Makers</a> <a class=\"link\" href=\"/gola-makers/pr?sid=upp,ldf,4s8\">Gola Makers</a> <a class=\"link\" href=\"/ice-cube-trays/pr?sid=upp,ldf,laj\">Ice Cube Trays</a> <a class=\"link\" href=\"/egg-topper-crackers/pr?sid=upp,ldf,gbn\">Egg Topper & Crackers</a> <a class=\"link\" href=\"/cooler-bags/pr?sid=upp,ldf,dhd\">Cooler Bags</a> <a class=\"link\" href=\"/foil-holders/pr?sid=upp,ldf,xa9\">Foil Holders</a> <a class=\"link\" href=\"/heat-diffusers/pr?sid=upp,ldf,r8d\">Heat Diffusers</a> <a class=\"link\" href=\"/egg-poachers/pr?sid=upp,ldf,asp\">Egg Poachers</a> <a class=\"link\" href=\"/steam-releasers/pr?sid=upp,ldf,y64\">Steam Releasers</a> <a class=\"link\" href=\"/roast-injectors/pr?sid=upp,ldf,jio\">Roast Injectors</a> <a class=\"link\" href=\"/fruit-vegetable-purifiers/pr?sid=upp,ldf,x6n\">Fruit & Vegetable Purifiers</a> <a class=\"link\" href=\"/knife-sharpeners/pr?sid=upp,ldf,dvc\">Knife Sharpeners</a> <a class=\"link\" href=\"/pancake-batter-dispensers/pr?sid=upp,ldf,dbv\">Pancake Batter Dispensers</a> <a class=\"link\" href=\"/sausage-makers/pr?sid=upp,ldf,ecn\">Sausage Makers</a> <a class=\"link\" href=\"/dough-presses/pr?sid=upp,ldf,d7l\">Dough Presses</a> <a class=\"link\" href=\"/lunch-boxes/pr?sid=upp,bqi\">Lunch Boxes</a> <a class=\"link\" href=\"/water-bottles-flasks/pr?sid=upp,3t7\">Water Bottles & Flasks</a> <a class=\"link\" href=\"/cookware/pr?sid=upp,tnx\">Cookware</a> <a class=\"link\" href=\"/cookware-sets/pr?sid=upp,tnx,qvz\">Cookware Sets</a> <a class=\"link\" href=\"/pressure-cookers/pr?sid=upp,tnx,gsl\">Pressure Cookers</a> <a class=\"link\" href=\"/pans/pr?sid=upp,tnx,9fq\">Pans</a> <a class=\"link\" href=\"/tawas/pr?sid=upp,tnx,j12\">Tawas</a> <a class=\"link\" href=\"/woks-kadhais/pr?sid=upp,tnx,uy9\">Woks & Kadhais</a> <a class=\"link\" href=\"/idli-makers/pr?sid=upp,tnx,nrl\">Idli Makers</a> <a class=\"link\" href=\"/handis/pr?sid=upp,tnx,zvo\">Handis</a> <a class=\"link\" href=\"/cookware-pots/pr?sid=upp,tnx,neu\">Cookware Pots</a> <a class=\"link\" href=\"/cook-serve-casseroles/pr?sid=upp,tnx,hg4\">Cook & Serve Casseroles</a> <a class=\"link\" href=\"/steamers/pr?sid=upp,tnx,yhy\">Steamers</a> <a class=\"link\" href=\"/pressure-cooker-gaskets/pr?sid=upp,tnx,6hk\">Pressure Cooker Gaskets</a> <a class=\"link\" href=\"/fondue-sets/pr?sid=upp,tnx,gxe\">Fondue Sets</a> <a class=\"link\" href=\"/tagine-pots/pr?sid=upp,tnx,ata\">Tagine Pots</a> <a class=\"link\" href=\"/gas-stove-accessories/pr?sid=upp,d7m\">Gas Stove & Accessories</a> <a class=\"link\" href=\"/stove-accessories/pr?sid=upp,d7m,d1w\">Stove Accessories</a> <a class=\"link\" href=\"/gas-stoves/pr?sid=upp,d7m,uhm\">Gas Stoves</a> <a class=\"link\" href=\"/gas-cylinder-regulators/pr?sid=upp,d7m,vrs\">Gas Cylinder Regulators</a> <a class=\"link\" href=\"/gas-lighters/pr?sid=upp,d7m,o8z\">Gas Lighters</a> <a class=\"link\" href=\"/gas-cylinder-trolleys/pr?sid=upp,d7m,98d\">Gas Cylinder Trolleys</a> <a class=\"link\" href=\"/bakeware/pr?sid=upp,bgd\">Bakeware</a> <a class=\"link\" href=\"/moulds/pr?sid=upp,bgd,3wi\">Moulds</a> <a class=\"link\" href=\"/pastry-brushes/pr?sid=upp,bgd,0qe\">Pastry Brushes</a> <a class=\"link\" href=\"/baking-dishes-pans/pr?sid=upp,bgd,67v\">Baking Dishes & Pans</a> <a class=\"link\" href=\"/roasters/pr?sid=upp,bgd,pwv\">Roasters</a> <a class=\"link\" href=\"/baking-cutters/pr?sid=upp,bgd,4fe\">Baking Cutters</a> <a class=\"link\" href=\"/measuring-cups/pr?sid=upp,bgd,q0u\">Measuring Cups</a> <a class=\"link\" href=\"/kitchen-weighing-scales/pr?sid=upp,bgd,jfu\">Kitchen Weighing Scales</a> <a class=\"link\" href=\"/measuring-spoons/pr?sid=upp,bgd,uam\">Measuring Spoons</a> <a class=\"link\" href=\"/cake-testers/pr?sid=upp,bgd,awj\">Cake Testers</a> <a class=\"link\" href=\"/baking-pie-weights/pr?sid=upp,bgd,jc1\">Baking Pie Weights</a> <a class=\"link\" href=\"/cream-roll-horn-forms/pr?sid=upp,bgd,saw\">Cream Roll Horn Forms</a> <a class=\"link\" href=\"/decor-pens/pr?sid=upp,bgd,54j\">Decor Pens</a> <a class=\"link\" href=\"/baking-mat-liners/pr?sid=upp,bgd,qlr\">Baking Mat Liners</a> <a class=\"link\" href=\"/icing-sets/pr?sid=upp,bgd,jdt\">Icing Sets</a> <a class=\"link\" href=\"/tart-tampers/pr?sid=upp,bgd,g0e\">Tart Tampers</a> <a class=\"link\" href=\"/truffle-chocolate-shavers/pr?sid=upp,bgd,rl8\">Truffle Chocolate Shavers</a> <a class=\"link\" href=\"/cake-levelers/pr?sid=upp,bgd,znk\">Cake Levelers</a> <a class=\"link\" href=\"/cake-smoother-polishers/pr?sid=upp,bgd,0sa\">Cake Smoother Polishers</a> <a class=\"link\" href=\"/pastry-cloths/pr?sid=upp,bgd,sxr\">Pastry Cloths</a> <a class=\"link\" href=\"/cake-dowel-pillars/pr?sid=upp,bgd,db0\">Cake Dowel Pillars</a> <a class=\"link\" href=\"/icing-couplers/pr?sid=upp,bgd,ftu\">Icing Couplers</a> <a class=\"link\" href=\"/pie-crust-cutters/pr?sid=upp,bgd,fig\">Pie Crust Cutters</a> <a class=\"link\" href=\"/cake-slicers/pr?sid=upp,bgd,qdj\">Cake Slicers</a> <a class=\"link\" href=\"/piping-bags/pr?sid=upp,bgd,gvz\">Piping Bags</a> <a class=\"link\" href=\"/icing-nozzles/pr?sid=upp,bgd,ret\">Icing Nozzles</a> <a class=\"link\" href=\"/lollipop-sticks/pr?sid=upp,bgd,kba\">Lollipop Sticks</a> <a class=\"link\" href=\"/fondant-rolling-sheets/pr?sid=upp,bgd,66z\">Fondant Rolling Sheets</a> <a class=\"link\" href=\"/fondant-tool-kits/pr?sid=upp,bgd,pvj\">Fondant Tool Kits</a> <a class=\"link\" href=\"/baking-stencils/pr?sid=upp,bgd,grv\">Baking Stencils</a> <a class=\"link\" href=\"/icing-bag-stands/pr?sid=upp,bgd,nhi\">Icing Bag Stands</a> <a class=\"link\" href=\"/baking-rollers/pr?sid=upp,bgd,syh\">Baking Rollers</a> <a class=\"link\" href=\"/flambe-torches/pr?sid=upp,bgd,rbo\">Flambe Torches</a> <a class=\"link\" href=\"/baking-combs/pr?sid=upp,bgd,3hd\">Baking Combs</a> <a class=\"link\" href=\"/bakery-dipping-tools/pr?sid=upp,bgd,ycs\">Bakery Dipping Tools</a> <a class=\"link\" href=\"/batter-separators/pr?sid=upp,bgd,o5l\">Batter Separators</a> <a class=\"link\" href=\"/rolling-pin-rings/pr?sid=upp,bgd,lp3\">Rolling Pin Rings</a> <a class=\"link\" href=\"/baking-sparkle-toppers/pr?sid=upp,bgd,xte\">Baking Sparkle Toppers</a> <a class=\"link\" href=\"/cupcake-inserts/pr?sid=upp,bgd,bdu\">Cupcake Inserts</a> <a class=\"link\" href=\"/cake-flower-spikes/pr?sid=upp,bgd,u6x\">Cake Flower Spikes</a> <a class=\"link\" href=\"/cookie-presses/pr?sid=upp,bgd,ymk\">Cookie Presses</a> <a class=\"link\" href=\"/bread-proofers/pr?sid=upp,bgd,7ch\">Bread Proofers</a> <a class=\"link\" href=\"/pastry-frames/pr?sid=upp,bgd,ysh\">Pastry Frames</a> <a class=\"link\" href=\"/kitchen-timers/pr?sid=upp,bgd,wmp\">Kitchen Timers</a> <a class=\"link\" href=\"/gourmet-cream-whip-canisters/pr?sid=upp,bgd,ysr\">Gourmet Cream Whip & Canisters</a> <a class=\"link\" href=\"/kitchen-thermometers/pr?sid=upp,bgd,lxl\">Kitchen Thermometers</a> <a class=\"link\" href=\"/outdoor-cooking/pr?sid=upp,6z1\">Outdoor Cooking</a> <a class=\"link\" href=\"/barbecue-wood/pr?sid=upp,6z1,2md\">Barbecue Wood</a> <a class=\"link\" href=\"/egg-grilling-machines/pr?sid=upp,6z1,vbg\">Egg Grilling Machines</a> <a class=\"link\" href=\"/chafing-dishes/pr?sid=upp,6z1,eoq\">Chafing Dishes</a> <a class=\"link\" href=\"/chimney-starters/pr?sid=upp,6z1,0rg\">Chimney Starters</a> <a class=\"link\" href=\"/barbecues-grills/pr?sid=upp,6z1,oxt\">Barbecues & Grills</a> <a class=\"link\" href=\"/skewers/pr?sid=upp,6z1,4tq\">Skewers</a> <a class=\"link\" href=\"/plate-warmers/pr?sid=upp,6z1,mkh\">Plate Warmers</a> <a class=\"link\" href=\"/warming-trays/pr?sid=upp,6z1,flm\">Warming Trays</a> <a class=\"link\" href=\"/blowtorch-attachment/pr?sid=upp,6z1,i76\">Blowtorch Attachment</a> <a class=\"link\" href=\"/oven-gas-igniters/pr?sid=upp,6z1,kz7\">Oven Gas Igniters</a> <a class=\"link\" href=\"/knives-choppers-cutters/pr?sid=upp,nwv\">Knives, Choppers & Cutters</a> <a class=\"link\" href=\"/choppers-slicers/pr?sid=upp,nwv,jem\">Choppers & Slicers</a> <a class=\"link\" href=\"/peelers/pr?sid=upp,nwv,h1d\">Peelers</a> <a class=\"link\" href=\"/cutting-boards/pr?sid=upp,nwv,3dc\">Cutting Boards</a> <a class=\"link\" href=\"/finger-guards/pr?sid=upp,nwv,oql\">Finger Guards</a> <a class=\"link\" href=\"/kitchen-scissors/pr?sid=upp,nwv,4of\">Kitchen Scissors</a> <a class=\"link\" href=\"/garlic-presses/pr?sid=upp,nwv,dt8\">Garlic Presses</a> <a class=\"link\" href=\"/kitchen-knives/pr?sid=upp,nwv,otq\">Kitchen Knives</a> <a class=\"link\" href=\"/pizza-cutters/pr?sid=upp,nwv,dxa\">Pizza Cutters</a> <a class=\"link\" href=\"/pitters/pr?sid=upp,nwv,0o2\">Pitters</a> <a class=\"link\" href=\"/seafood-crackers/pr?sid=upp,nwv,twy\">Seafood Crackers</a> <a class=\"link\" href=\"/electric-peelers/pr?sid=upp,nwv,htl\">Electric Peelers</a> <a class=\"link\" href=\"/electric-food-slicers/pr?sid=upp,nwv,qew\">Electric Food Slicers</a> <a class=\"link\" href=\"/hand-juicers-grinders/pr?sid=upp,xim\">Hand Juicers & Grinders</a> <a class=\"link\" href=\"/manual-grinder/pr?sid=upp,xim,mdj\">Manual Grinder</a> <a class=\"link\" href=\"/hand-juicers/pr?sid=upp,xim,r0j\">Hand Juicers</a> <a class=\"link\" href=\"/mortar-pestles/pr?sid=upp,xim,2zx\">Mortar & Pestles</a> <a class=\"link\" href=\"/hand-muller-grinders/pr?sid=upp,xim,wxo\">Hand Muller Grinders</a> <a class=\"link\" href=\"/mashers/pr?sid=upp,xim,3ai\">Mashers</a> <a class=\"link\" href=\"/pepper-mills/pr?sid=upp,xim,lmi\">Pepper Mills</a> <a class=\"link\" href=\"/nutmeg-grinders/pr?sid=upp,xim,e4b\">Nutmeg Grinders</a> <a class=\"link\" href=\"/lunch-boxes-bottles-and-flasks/pr?sid=upp,f2k\">Lunch Boxes, Bottles and Flasks</a> <a class=\"link\" href=\"/lunch-boxes/pr?sid=upp,f2k,u70\">Lunch Boxes</a> <a class=\"link\" href=\"/water-bottles/pr?sid=upp,f2k,0zz\">Water Bottles</a> <a class=\"link\" href=\"/flasks/pr?sid=upp,f2k,7k9\">Flasks</a> <a class=\"link\" href=\"/kitchen-storage-containers/pr?sid=upp,5ix\">Kitchen Storage & Containers</a> <a class=\"link\" href=\"/kitchen-containers/pr?sid=upp,5ix,01e\">Kitchen Containers</a> <a class=\"link\" href=\"/oil-dispensers/pr?sid=upp,5ix,xi9\">Oil Dispensers</a> <a class=\"link\" href=\"/condiment-sets/pr?sid=upp,5ix,ymq\">Condiment Sets</a> <a class=\"link\" href=\"/storage-drums/pr?sid=upp,5ix,p4v\">Storage Drums</a> <a class=\"link\" href=\"/egg-holders/pr?sid=upp,5ix,r6l\">Egg Holders</a> <a class=\"link\" href=\"/fruit-baskets/pr?sid=upp,5ix,r5f\">Fruit Baskets</a> <a class=\"link\" href=\"/kitchen-racks/pr?sid=upp,5ix,tlu\">Kitchen Racks</a> <a class=\"link\" href=\"/kitchen-trolleys/pr?sid=upp,5ix,53a\">Kitchen Trolleys</a> <a class=\"link\" href=\"/glass-holders/pr?sid=upp,5ix,m83\">Glass Holders</a> <a class=\"link\" href=\"/water-dispensers/pr?sid=upp,5ix,eqk\">Water Dispensers</a> <a class=\"link\" href=\"/lids/pr?sid=upp,5ix,g9l\">Lids</a> <a class=\"link\" href=\"/grocery-bags/pr?sid=upp,5ix,p6h\">Grocery Bags</a> <a class=\"link\" href=\"/storage-baskets/pr?sid=upp,5ix,w52\">Storage Baskets</a> <a class=\"link\" href=\"/food-covers/pr?sid=upp,5ix,67u\">Food Covers</a> <a class=\"link\" href=\"/storage-vacuum-bags/pr?sid=upp,5ix,y3f\">Storage Vacuum Bags</a> <a class=\"link\" href=\"/tableware-dinnerware/pr?sid=upp,i7t\">Tableware & Dinnerware</a> <a class=\"link\" href=\"/casseroles/pr?sid=upp,i7t,gka\">Casseroles</a> <a class=\"link\" href=\"/dinner-sets/pr?sid=upp,i7t,lha\">Dinner Sets</a> <a class=\"link\" href=\"/mugs/pr?sid=upp,i7t,msi\">Mugs</a> <a class=\"link\" href=\"/plates/pr?sid=upp,i7t,bic\">Plates</a> <a class=\"link\" href=\"/bowls/pr?sid=upp,i7t,1xc\">Bowls</a> <a class=\"link\" href=\"/glasses/pr?sid=upp,i7t,ozw\">Glasses</a> <a class=\"link\" href=\"/serving-sets/pr?sid=upp,i7t,xp4\">Serving Sets</a> <a class=\"link\" href=\"/serving-trays/pr?sid=upp,i7t,g9o\">Serving Trays</a> <a class=\"link\" href=\"/cutlery-cases/pr?sid=upp,i7t,vcg\">Cutlery Cases</a> <a class=\"link\" href=\"/forks/pr?sid=upp,i7t,oux\">Forks</a> <a class=\"link\" href=\"/spoons/pr?sid=upp,i7t,kxv\">Spoons</a> <a class=\"link\" href=\"/cutlery-knives/pr?sid=upp,i7t,3ss\">Cutlery Knives</a> <a class=\"link\" href=\"/cutlery-sets/pr?sid=upp,i7t,obo\">Cutlery Sets</a> <a class=\"link\" href=\"/chopsticks/pr?sid=upp,i7t,bel\">Chopsticks</a> <a class=\"link\" href=\"/trivets/pr?sid=upp,i7t,ra4\">Trivets</a> <a class=\"link\" href=\"/toast-racks/pr?sid=upp,i7t,zna\">Toast Racks</a> <a class=\"link\" href=\"/cake-pie-servers/pr?sid=upp,i7t,tnp\">Cake & Pie Servers</a> <a class=\"link\" href=\"/toothpick-holders/pr?sid=upp,i7t,wk8\">Toothpick Holders</a> <a class=\"link\" href=\"/bread-baskets/pr?sid=upp,i7t,yh7\">Bread Baskets</a> <a class=\"link\" href=\"/tea-urns/pr?sid=upp,i7t,rcc\">Tea Urns</a> <a class=\"link\" href=\"/teapot-sets/pr?sid=upp,i7t,f86\">Teapot Sets</a> <a class=\"link\" href=\"/cups-saucers/pr?sid=upp,i7t,uaz\">Cups & Saucers</a> <a class=\"link\" href=\"/jugs/pr?sid=upp,i7t,0st\">Jugs</a> <a class=\"link\" href=\"/lemon-sets/pr?sid=upp,i7t,rok\">Lemon Sets</a> <a class=\"link\" href=\"/salt-sprinklers/pr?sid=upp,i7t,ryf\">Salt Sprinklers</a> <a class=\"link\" href=\"/barware/pr?sid=upp,ta2\">Barware</a> <a class=\"link\" href=\"/pitchers/pr?sid=upp,ta2,fvi\">Pitchers</a> <a class=\"link\" href=\"/beverages-cooler-sticks/pr?sid=upp,ta2,i8d\">Beverages Cooler Sticks</a> <a class=\"link\" href=\"/bar-mat/pr?sid=upp,ta2,zf6\">Bar Mat</a> <a class=\"link\" href=\"/bar-glasses/pr?sid=upp,ta2,c11\">Bar Glasses</a> <a class=\"link\" href=\"/bottle-racks/pr?sid=upp,ta2,hqx\">Bottle Racks</a> <a class=\"link\" href=\"/bottle-openers/pr?sid=upp,ta2,r3q\">Bottle Openers</a> <a class=\"link\" href=\"/ice-buckets/pr?sid=upp,ta2,901\">Ice Buckets</a> <a class=\"link\" href=\"/bottle-stoppers/pr?sid=upp,ta2,e4i\">Bottle Stoppers</a> <a class=\"link\" href=\"/stirrers/pr?sid=upp,ta2,a2s\">Stirrers</a> <a class=\"link\" href=\"/beer-bong-funnels/pr?sid=upp,ta2,sga\">Beer Bong Funnels</a> <a class=\"link\" href=\"/cocktail-shakers/pr?sid=upp,ta2,h5a\">Cocktail Shakers</a> <a class=\"link\" href=\"/hip-flasks/pr?sid=upp,ta2,saq\">Hip Flasks</a> <a class=\"link\" href=\"/decanters/pr?sid=upp,ta2,zxa\">Decanters</a> <a class=\"link\" href=\"/wine-coolers/pr?sid=upp,ta2,ez5\">Wine Coolers</a> </div><h2><a href=\"/sports/pr?sid=abc\">Sports</a></h2><div><a class=\"link\" href=\"/badminton/pr?sid=abc,egs\">Badminton</a> <a class=\"link\" href=\"/badminton-racquet/pr?sid=abc,egs,5wq\">Badminton Racquet</a> <a class=\"link\" href=\"/shuttles/pr?sid=abc,egs,m6b\">Shuttles</a> <a class=\"link\" href=\"/badminton-kits/pr?sid=abc,egs,4vs\">Badminton Kits</a> <a class=\"link\" href=\"/badminton-bag/pr?sid=abc,egs,fhp\">Badminton Bag</a> <a class=\"link\" href=\"/badminton-grip/pr?sid=abc,egs,39o\">Badminton Grip</a> <a class=\"link\" href=\"/badminton-net/pr?sid=abc,egs,wbr\">Badminton Net</a> <a class=\"link\" href=\"/badminton-racquet-string/pr?sid=abc,egs,5wv\">Badminton Racquet String</a> <a class=\"link\" href=\"/stringing-clamp/pr?sid=abc,egs,ypo\">Stringing Clamp</a> <a class=\"link\" href=\"/badminton-cover/pr?sid=abc,egs,nna\">Badminton Cover</a> <a class=\"link\" href=\"/football/pr?sid=abc,gxg\">Football</a> <a class=\"link\" href=\"/footballs/pr?sid=abc,gxg,eha\">Footballs</a> <a class=\"link\" href=\"/football-gloves/pr?sid=abc,gxg,wsc\">Football Gloves</a> <a class=\"link\" href=\"/football-guards/pr?sid=abc,gxg,hst\">Football Guards</a> <a class=\"link\" href=\"/football-kit/pr?sid=abc,gxg,oj8\">Football Kit</a> <a class=\"link\" href=\"/football-bags/pr?sid=abc,gxg,sz1\">Football Bags</a> <a class=\"link\" href=\"/pop-up-goal-targets/pr?sid=abc,gxg,c72\">Pop up Goal & Targets</a> <a class=\"link\" href=\"/bibs/pr?sid=abc,gxg,awn\">Bibs</a> <a class=\"link\" href=\"/football-foul-card/pr?sid=abc,gxg,eny\">Football Foul Card</a> <a class=\"link\" href=\"/football-nets/pr?sid=abc,gxg,n0g\">Football Nets</a> <a class=\"link\" href=\"/cricket/pr?sid=abc,5lf\">Cricket</a> <a class=\"link\" href=\"/cricket-bat/pr?sid=abc,5lf,p8v\">Cricket Bat</a> <a class=\"link\" href=\"/cricket-balls/pr?sid=abc,5lf,yjg\">Cricket Balls</a> <a class=\"link\" href=\"/cricket-training-ball/pr?sid=abc,5lf,pxu\">Cricket Training Ball</a> <a class=\"link\" href=\"/cricket-kits/pr?sid=abc,5lf,ra8\">Cricket Kits</a> <a class=\"link\" href=\"/cricket-gloves/pr?sid=abc,5lf,jjn\">Cricket Gloves</a> <a class=\"link\" href=\"/cricket-pads/pr?sid=abc,5lf,1qz\">Cricket Pads</a> <a class=\"link\" href=\"/cricket-guards/pr?sid=abc,5lf,pvf\">Cricket Guards</a> <a class=\"link\" href=\"/cricket-helmets/pr?sid=abc,5lf,yfv\">Cricket Helmets</a> <a class=\"link\" href=\"/cricket-goggles/pr?sid=abc,5lf,opr\">Cricket Goggles</a> <a class=\"link\" href=\"/cricket-bags/pr?sid=abc,5lf,kds\">Cricket Bags</a> <a class=\"link\" href=\"/cricket-nets/pr?sid=abc,5lf,zgv\">Cricket Nets</a> <a class=\"link\" href=\"/cricket-bat-covers/pr?sid=abc,5lf,lkf\">Cricket Bat Covers</a> <a class=\"link\" href=\"/cricket-wickets/pr?sid=abc,5lf,gj5\">Cricket Wickets</a> <a class=\"link\" href=\"/cricket-bails/pr?sid=abc,5lf,2kv\">Cricket Bails</a> <a class=\"link\" href=\"/cricket-bat-tapes/pr?sid=abc,5lf,ar1\">Cricket Bat Tapes</a> <a class=\"link\" href=\"/bat-oils/pr?sid=abc,5lf,wjr\">Bat Oils</a> <a class=\"link\" href=\"/cricket-grips/pr?sid=abc,5lf,8fr\">Cricket Grips</a> <a class=\"link\" href=\"/sidearm-ball-thrower/pr?sid=abc,5lf,6zk\">Sidearm Ball Thrower</a> <a class=\"link\" href=\"/cricket-mallets/pr?sid=abc,5lf,6bd\">Cricket Mallets</a> <a class=\"link\" href=\"/cricket-katchets/pr?sid=abc,5lf,raz\">Cricket Katchets</a> <a class=\"link\" href=\"/cricket-pitch-field-covers/pr?sid=abc,5lf,6py\">Cricket Pitch & Field Covers</a> <a class=\"link\" href=\"/cricket-mats/pr?sid=abc,5lf,0df\">Cricket Mats</a> <a class=\"link\" href=\"/cricket-slip-catch-cradles/pr?sid=abc,5lf,p06\">Cricket Slip Catch Cradles</a> <a class=\"link\" href=\"/camping-hiking/pr?sid=abc,fvf\">Camping & Hiking</a> <a class=\"link\" href=\"/camming-devices/pr?sid=abc,fvf,yc2\">Camming Devices</a> <a class=\"link\" href=\"/hydration-packs/pr?sid=abc,fvf,7hs\">Hydration Packs</a> <a class=\"link\" href=\"/camping-stoves/pr?sid=abc,fvf,fe5\">Camping Stoves</a> <a class=\"link\" href=\"/camping-elevation-trainng-masks/pr?sid=abc,fvf,ymz\">Camping Elevation Trainng Masks</a> <a class=\"link\" href=\"/camping-covers/pr?sid=abc,fvf,akq\">Camping Covers</a> <a class=\"link\" href=\"/fire-starter-flints/pr?sid=abc,fvf,cdf\">Fire Starter & Flints</a> <a class=\"link\" href=\"/carabiners/pr?sid=abc,fvf,66f\">Carabiners</a> <a class=\"link\" href=\"/camping-gaiter/pr?sid=abc,fvf,3cx\">Camping Gaiter</a> <a class=\"link\" href=\"/camping-sleeping-bags/pr?sid=abc,fvf,zuo\">Camping Sleeping Bags</a> <a class=\"link\" href=\"/portable-showers/pr?sid=abc,fvf,o86\">Portable Showers</a> <a class=\"link\" href=\"/camping-tools/pr?sid=abc,fvf,356\">Camping Tools</a> <a class=\"link\" href=\"/camping-hiking-bags/pr?sid=abc,fvf,v2h\">Camping & Hiking Bags</a> <a class=\"link\" href=\"/trekking-poles/pr?sid=abc,fvf,o2v\">Trekking Poles</a> <a class=\"link\" href=\"/camping-tents/pr?sid=abc,fvf,s9a\">Camping Tents</a> <a class=\"link\" href=\"/camping-nets/pr?sid=abc,fvf,kum\">Camping Nets</a> <a class=\"link\" href=\"/camping-light/pr?sid=abc,fvf,o7j\">Camping Light</a> <a class=\"link\" href=\"/water-purifier-bottles/pr?sid=abc,fvf,kvr\">Water Purifier Bottles</a> <a class=\"link\" href=\"/camping-hiking-chairs/pr?sid=abc,fvf,apf\">Camping & Hiking Chairs</a> <a class=\"link\" href=\"/camping-laser-flares/pr?sid=abc,fvf,mfy\">Camping Laser Flares</a> <a class=\"link\" href=\"/camping-mat/pr?sid=abc,fvf,u0r\">Camping Mat</a> <a class=\"link\" href=\"/camping-distress-radiobeacons/pr?sid=abc,fvf,uco\">Camping Distress Radiobeacons</a> <a class=\"link\" href=\"/camping-gloves/pr?sid=abc,fvf,ldt\">Camping Gloves</a> <a class=\"link\" href=\"/camping-helmets/pr?sid=abc,fvf,urs\">Camping Helmets</a> <a class=\"link\" href=\"/camping-kits/pr?sid=abc,fvf,7o4\">Camping Kits</a> <a class=\"link\" href=\"/camping-compass/pr?sid=abc,fvf,ued\">Camping Compass</a> <a class=\"link\" href=\"/cycling/pr?sid=abc,ulv\">Cycling</a> <a class=\"link\" href=\"/cycles/pr?sid=abc,ulv,ixt\">Cycles</a> <a class=\"link\" href=\"/cycling-spares/pr?sid=abc,ulv,oog\">Cycling Spares</a> <a class=\"link\" href=\"/cycling-kits/pr?sid=abc,ulv,qqk\">Cycling Kits</a> <a class=\"link\" href=\"/cycling-accessories/pr?sid=abc,ulv,4nj\">Cycling Accessories</a> <a class=\"link\" href=\"/electric-cycle/pr?sid=abc,ulv,twp\">Electric Cycle</a> <a class=\"link\" href=\"/skating/pr?sid=abc,mgq\">Skating</a> <a class=\"link\" href=\"/skateboard-stickers/pr?sid=abc,mgq,ahx\">Skateboard Stickers</a> <a class=\"link\" href=\"/skating-trucks/pr?sid=abc,mgq,5mi\">Skating Trucks</a> <a class=\"link\" href=\"/skating-bags/pr?sid=abc,mgq,pzt\">Skating Bags</a> <a class=\"link\" href=\"/skating-speed-creams/pr?sid=abc,mgq,8jl\">Skating Speed Creams</a> <a class=\"link\" href=\"/skating-bearings/pr?sid=abc,mgq,ihs\">Skating Bearings</a> <a class=\"link\" href=\"/skating-spanner-tools/pr?sid=abc,mgq,tmz\">Skating Spanner Tools</a> <a class=\"link\" href=\"/skates/pr?sid=abc,mgq,rbi\">Skates</a> <a class=\"link\" href=\"/skateboards/pr?sid=abc,mgq,tp8\">Skateboards</a> <a class=\"link\" href=\"/skating-kits/pr?sid=abc,mgq,xaa\">Skating Kits</a> <a class=\"link\" href=\"/skating-gloves/pr?sid=abc,mgq,wll\">Skating Gloves</a> <a class=\"link\" href=\"/skating-guards/pr?sid=abc,mgq,joq\">Skating Guards</a> <a class=\"link\" href=\"/skating-helmets/pr?sid=abc,mgq,3eg\">Skating Helmets</a> <a class=\"link\" href=\"/skateboard-grip-tapes/pr?sid=abc,mgq,gfn\">Skateboard Grip Tapes</a> <a class=\"link\" href=\"/skate-wheel/pr?sid=abc,mgq,9or\">Skate Wheel</a> <a class=\"link\" href=\"/motorized-skateboard/pr?sid=abc,mgq,zax\">Motorized Skateboard</a> <a class=\"link\" href=\"/boxing/pr?sid=abc,ppq\">Boxing</a> <a class=\"link\" href=\"/punching-bag-chains/pr?sid=abc,ppq,afa\">Punching Bag Chains</a> <a class=\"link\" href=\"/boxing-punching-bag/pr?sid=abc,ppq,31s\">Boxing Punching Bag</a> <a class=\"link\" href=\"/boxing-gloves/pr?sid=abc,ppq,bb6\">Boxing Gloves</a> <a class=\"link\" href=\"/boxing-focus-pad/pr?sid=abc,ppq,dud\">Boxing Focus Pad</a> <a class=\"link\" href=\"/boxing-guard/pr?sid=abc,ppq,bmq\">Boxing Guard</a> <a class=\"link\" href=\"/boxing-hand-wrap/pr?sid=abc,ppq,aos\">Boxing Hand Wrap</a> <a class=\"link\" href=\"/boxing-kit/pr?sid=abc,ppq,kbf\">Boxing Kit</a> <a class=\"link\" href=\"/boxing-stand/pr?sid=abc,ppq,gtc\">Boxing Stand</a> <a class=\"link\" href=\"/volleyball/pr?sid=abc,uyc\">Volleyball</a> <a class=\"link\" href=\"/volleyballs/pr?sid=abc,uyc,fzt\">Volleyballs</a> <a class=\"link\" href=\"/volleyball-nets/pr?sid=abc,uyc,pr1\">Volleyball Nets</a> <a class=\"link\" href=\"/volleyball-bags/pr?sid=abc,uyc,nhh\">Volleyball Bags</a> <a class=\"link\" href=\"/volleyball-guards/pr?sid=abc,uyc,7vl\">Volleyball Guards</a> <a class=\"link\" href=\"/basketball/pr?sid=abc,6sh\">Basketball</a> <a class=\"link\" href=\"/basketballs/pr?sid=abc,6sh,bgw\">Basketballs</a> <a class=\"link\" href=\"/basketball-bags/pr?sid=abc,6sh,jto\">Basketball Bags</a> <a class=\"link\" href=\"/basketball-nets/pr?sid=abc,6sh,q6b\">Basketball Nets</a> <a class=\"link\" href=\"/basketball-rings/pr?sid=abc,6sh,3ga\">Basketball Rings</a> <a class=\"link\" href=\"/basketball-backboards/pr?sid=abc,6sh,xej\">Basketball Backboards</a> <a class=\"link\" href=\"/swimming/pr?sid=abc,byq\">Swimming</a> <a class=\"link\" href=\"/swimming-paddle/pr?sid=abc,byq,a1p\">Swimming Paddle</a> <a class=\"link\" href=\"/swimming-goggles/pr?sid=abc,byq,ptx\">Swimming Goggles</a> <a class=\"link\" href=\"/swimming-caps/pr?sid=abc,byq,6ky\">Swimming Caps</a> <a class=\"link\" href=\"/swimming-kits/pr?sid=abc,byq,m6s\">Swimming Kits</a> <a class=\"link\" href=\"/swim-ear-nose-plug/pr?sid=abc,byq,p7q\">Swim Ear & Nose Plug</a> <a class=\"link\" href=\"/swim-floats/pr?sid=abc,byq,d4i\">Swim Floats</a> <a class=\"link\" href=\"/swimming-fins/pr?sid=abc,byq,n52\">Swimming Fins</a> <a class=\"link\" href=\"/swimming-bags/pr?sid=abc,byq,fhk\">Swimming Bags</a> <a class=\"link\" href=\"/swimming-gloves/pr?sid=abc,byq,mng\">Swimming Gloves</a> <a class=\"link\" href=\"/swimming-kickboards/pr?sid=abc,byq,f4u\">Swimming Kickboards</a> <a class=\"link\" href=\"/swimming-pull-buoys/pr?sid=abc,byq,w2d\">Swimming Pull Buoys</a> <a class=\"link\" href=\"/tennis/pr?sid=abc,zzi\">Tennis</a> <a class=\"link\" href=\"/tennis-ball-hoppers/pr?sid=abc,zzi,tks\">Tennis Ball Hoppers</a> <a class=\"link\" href=\"/tennis-racquets/pr?sid=abc,zzi,k7l\">Tennis Racquets</a> <a class=\"link\" href=\"/tennis-balls/pr?sid=abc,zzi,yx1\">Tennis Balls</a> <a class=\"link\" href=\"/tennis-kits/pr?sid=abc,zzi,f01\">Tennis Kits</a> <a class=\"link\" href=\"/tennis-bags/pr?sid=abc,zzi,zav\">Tennis Bags</a> <a class=\"link\" href=\"/tennis-strings/pr?sid=abc,zzi,9fg\">Tennis Strings</a> <a class=\"link\" href=\"/tennis-racquet-grips/pr?sid=abc,zzi,6ik\">Tennis Racquet Grips</a> <a class=\"link\" href=\"/tennis-nets/pr?sid=abc,zzi,ypk\">Tennis Nets</a> <a class=\"link\" href=\"/tennis-vibration-dampner/pr?sid=abc,zzi,2y4\">Tennis Vibration Dampner</a> <a class=\"link\" href=\"/tennis-ball-collector/pr?sid=abc,zzi,bol\">Tennis Ball Collector</a> <a class=\"link\" href=\"/table-tennis/pr?sid=abc,d8a\">Table Tennis</a> <a class=\"link\" href=\"/table-tennis-racquets/pr?sid=abc,d8a,fy5\">Table Tennis Racquets</a> <a class=\"link\" href=\"/table-tennis-balls/pr?sid=abc,d8a,cwq\">Table Tennis Balls</a> <a class=\"link\" href=\"/table-tennis-kit/pr?sid=abc,d8a,agr\">Table Tennis Kit</a> <a class=\"link\" href=\"/table-tennis-nets/pr?sid=abc,d8a,bao\">Table Tennis Nets</a> <a class=\"link\" href=\"/table-tennis-bags/pr?sid=abc,d8a,upx\">Table Tennis Bags</a> <a class=\"link\" href=\"/table-tennis-covers/pr?sid=abc,d8a,v5u\">Table Tennis Covers</a> <a class=\"link\" href=\"/table-tennis-tables/pr?sid=abc,d8a,je6\">Table Tennis Tables</a> <a class=\"link\" href=\"/table-tennis-rubbers/pr?sid=abc,d8a,mso\">Table Tennis Rubbers</a> <a class=\"link\" href=\"/table-tennis-glue/pr?sid=abc,d8a,7ui\">Table Tennis Glue</a> <a class=\"link\" href=\"/table-tennis-blade/pr?sid=abc,d8a,kfc\">Table Tennis Blade</a> <a class=\"link\" href=\"/air-hockey/pr?sid=abc,7qr\">Air hockey</a> <a class=\"link\" href=\"/air-hockey-pushers/pr?sid=abc,7qr,8uu\">Air Hockey Pushers</a> <a class=\"link\" href=\"/air-hockey-pucks/pr?sid=abc,7qr,2j2\">Air Hockey Pucks</a> <a class=\"link\" href=\"/air-hockey-tables/pr?sid=abc,7qr,jyd\">Air Hockey Tables</a> <a class=\"link\" href=\"/archery/pr?sid=abc,0gs\">Archery</a> <a class=\"link\" href=\"/archery-allen-keys/pr?sid=abc,0gs,676\">Archery Allen Keys</a> <a class=\"link\" href=\"/archery-arrow-pullers/pr?sid=abc,0gs,zal\">Archery Arrow Pullers</a> <a class=\"link\" href=\"/archery-crossbow-scopes/pr?sid=abc,0gs,pkp\">Archery Crossbow Scopes</a> <a class=\"link\" href=\"/archery-bow-strings/pr?sid=abc,0gs,hbf\">Archery Bow Strings</a> <a class=\"link\" href=\"/archery-arrow-rests/pr?sid=abc,0gs,qeu\">Archery Arrow Rests</a> <a class=\"link\" href=\"/archery-quivers/pr?sid=abc,0gs,xcl\">Archery Quivers</a> <a class=\"link\" href=\"/archery-fletches/pr?sid=abc,0gs,kcn\">Archery Fletches</a> <a class=\"link\" href=\"/archery-bow-strings-wax/pr?sid=abc,0gs,mla\">Archery Bow Strings Wax</a> <a class=\"link\" href=\"/archery-arrows/pr?sid=abc,0gs,p5m\">Archery Arrows</a> <a class=\"link\" href=\"/laser-range-finders/pr?sid=abc,0gs,8po\">Laser Range Finders</a> <a class=\"link\" href=\"/archery-bow-slings/pr?sid=abc,0gs,hce\">Archery Bow Slings</a> <a class=\"link\" href=\"/archery-bows/pr?sid=abc,0gs,ajh\">Archery Bows</a> <a class=\"link\" href=\"/archery-cocking-devices/pr?sid=abc,0gs,nar\">Archery Cocking Devices</a> <a class=\"link\" href=\"/archery-hand-tabs/pr?sid=abc,0gs,vad\">Archery Hand Tabs</a> <a class=\"link\" href=\"/archery-boards/pr?sid=abc,0gs,gbk\">Archery Boards</a> <a class=\"link\" href=\"/archery-bow-racks/pr?sid=abc,0gs,yhn\">Archery Bow Racks</a> <a class=\"link\" href=\"/archery-kisser-buttons/pr?sid=abc,0gs,one\">Archery Kisser Buttons</a> <a class=\"link\" href=\"/athletics/pr?sid=abc,k3h\">Athletics</a> <a class=\"link\" href=\"/javelin/pr?sid=abc,k3h,ayz\">Javelin</a> <a class=\"link\" href=\"/starting-blocks/pr?sid=abc,k3h,l7a\">Starting Blocks</a> <a class=\"link\" href=\"/shot-put/pr?sid=abc,k3h,mlj\">Shot put</a> <a class=\"link\" href=\"/speed-hurdle/pr?sid=abc,k3h,cik\">Speed Hurdle</a> <a class=\"link\" href=\"/agility-poles/pr?sid=abc,k3h,42n\">Agility Poles</a> <a class=\"link\" href=\"/baseball/pr?sid=abc,tdn\">Baseball</a> <a class=\"link\" href=\"/baseball-bats/pr?sid=abc,tdn,2tw\">Baseball Bats</a> <a class=\"link\" href=\"/baseball-guards/pr?sid=abc,tdn,ztg\">Baseball Guards</a> <a class=\"link\" href=\"/baseball-nets/pr?sid=abc,tdn,dzv\">Baseball Nets</a> <a class=\"link\" href=\"/baseball-helmets/pr?sid=abc,tdn,lgt\">Baseball Helmets</a> <a class=\"link\" href=\"/baseball-goggles/pr?sid=abc,tdn,r0v\">Baseball Goggles</a> <a class=\"link\" href=\"/baseball-gloves/pr?sid=abc,tdn,deg\">Baseball Gloves</a> <a class=\"link\" href=\"/baseballs/pr?sid=abc,tdn,bjy\">Baseballs</a> <a class=\"link\" href=\"/boating/pr?sid=abc,yog\">Boating</a> <a class=\"link\" href=\"/boat-steering-wheels/pr?sid=abc,yog,cw7\">Boat Steering Wheels</a> <a class=\"link\" href=\"/rafting-sport-boats/pr?sid=abc,yog,hru\">Rafting Sport Boats</a> <a class=\"link\" href=\"/boomerang/pr?sid=abc,hzp\">Boomerang</a> <a class=\"link\" href=\"/boomerangs/pr?sid=abc,hzp,456\">Boomerangs</a> <a class=\"link\" href=\"/bowling/pr?sid=abc,c2a\">Bowling</a> <a class=\"link\" href=\"/bowling-sanding-disc/pr?sid=abc,c2a,8tf\">Bowling Sanding Disc</a> <a class=\"link\" href=\"/bowling-balls/pr?sid=abc,c2a,iq3\">Bowling Balls</a> <a class=\"link\" href=\"/bowling-ball-cleaners/pr?sid=abc,c2a,vki\">Bowling Ball Cleaners</a> <a class=\"link\" href=\"/bowling-bags/pr?sid=abc,c2a,5g3\">Bowling Bags</a> <a class=\"link\" href=\"/bowling-targets/pr?sid=abc,c2a,wnx\">Bowling Targets</a> <a class=\"link\" href=\"/bowling-ball-polishers/pr?sid=abc,c2a,b2l\">Bowling Ball Polishers</a> <a class=\"link\" href=\"/bowling-sets/pr?sid=abc,c2a,ed0\">Bowling Sets</a> <a class=\"link\" href=\"/bowling-sand-machines/pr?sid=abc,c2a,4tw\">Bowling Sand Machines</a> <a class=\"link\" href=\"/carrom/pr?sid=abc,6mb\">Carrom</a> <a class=\"link\" href=\"/carrom-boards/pr?sid=abc,6mb,q91\">Carrom Boards</a> <a class=\"link\" href=\"/carrom-pawn/pr?sid=abc,6mb,1qu\">Carrom Pawn</a> <a class=\"link\" href=\"/carrom-striker/pr?sid=abc,6mb,jfb\">Carrom Striker</a> </div><h2><a href=\"/pet-supplies/pr?sid=p3t\">Pet Supplies</a></h2><div><a class=\"link\" href=\"/dogs/pr?sid=p3t,ea3\">Dogs</a> <a class=\"link\" href=\"/dog-blankets/pr?sid=p3t,ea3,0co\">Dog Blankets</a> <a class=\"link\" href=\"/dog-health-supplements/pr?sid=p3t,ea3,0ua\">Dog Health Supplements</a> <a class=\"link\" href=\"/dog-car-steps/pr?sid=p3t,ea3,hk8\">Dog Car Steps</a> <a class=\"link\" href=\"/dog-smart-pet-feeders/pr?sid=p3t,ea3,c25\">Dog Smart Pet Feeders</a> <a class=\"link\" href=\"/dog-carriers/pr?sid=p3t,ea3,bxw\">Dog Carriers</a> <a class=\"link\" href=\"/dog-apparels/pr?sid=p3t,ea3,89f\">Dog Apparels</a> <a class=\"link\" href=\"/dog-leashes/pr?sid=p3t,ea3,pmw\">Dog Leashes</a> <a class=\"link\" href=\"/dog-toys/pr?sid=p3t,ea3,g4c\">Dog Toys</a> <a class=\"link\" href=\"/dog-houses/pr?sid=p3t,ea3,i6b\">Dog Houses</a> <a class=\"link\" href=\"/dog-car-window-vents/pr?sid=p3t,ea3,mpn\">Dog Car Window Vents</a> <a class=\"link\" href=\"/dog-jump-cups/pr?sid=p3t,ea3,tx9\">Dog Jump Cups</a> <a class=\"link\" href=\"/pet-seat-covers/pr?sid=p3t,ea3,7zr\">Pet Seat Covers</a> <a class=\"link\" href=\"/dog-mats/pr?sid=p3t,ea3,dgu\">Dog Mats</a> <a class=\"link\" href=\"/dog-jogger-bike-leash/pr?sid=p3t,ea3,lom\">Dog Jogger Bike Leash</a> <a class=\"link\" href=\"/dog-treat/pr?sid=p3t,ea3,nva\">Dog Treat</a> <a class=\"link\" href=\"/dog-laser-toys/pr?sid=p3t,ea3,3t0\">Dog Laser Toys</a> <a class=\"link\" href=\"/dog-waste-pickup-bags/pr?sid=p3t,ea3,p7d\">Dog Waste Pickup Bags</a> <a class=\"link\" href=\"/dog-anxiety-wrap/pr?sid=p3t,ea3,p4q\">Dog Anxiety Wrap</a> <a class=\"link\" href=\"/dog-collar-charms/pr?sid=p3t,ea3,ktq\">Dog Collar Charms</a> <a class=\"link\" href=\"/dog-ticklers/pr?sid=p3t,ea3,btf\">Dog Ticklers</a> <a class=\"link\" href=\"/dog-bowls/pr?sid=p3t,ea3,70l\">Dog Bowls</a> <a class=\"link\" href=\"/car-pet-door-protectors/pr?sid=p3t,ea3,hbn\">Car Pet Door Protectors</a> <a class=\"link\" href=\"/dog-beds/pr?sid=p3t,ea3,as7\">Dog Beds</a> <a class=\"link\" href=\"/dog-collars/pr?sid=p3t,ea3,b1n\">Dog Collars</a> <a class=\"link\" href=\"/dog-food/pr?sid=p3t,ea3,8zj\">Dog Food</a> <a class=\"link\" href=\"/dog-chews/pr?sid=p3t,ea3,54w\">Dog Chews</a> <a class=\"link\" href=\"/dog-muzzles/pr?sid=p3t,ea3,91a\">Dog Muzzles</a> <a class=\"link\" href=\"/car-pet-dividers/pr?sid=p3t,ea3,cok\">Car Pet Dividers</a> <a class=\"link\" href=\"/dog-agility-sets/pr?sid=p3t,ea3,gxx\">Dog Agility Sets</a> <a class=\"link\" href=\"/dog-strollers/pr?sid=p3t,ea3,frq\">Dog Strollers</a> <a class=\"link\" href=\"/cats/pr?sid=p3t,0mo\">Cats</a> <a class=\"link\" href=\"/cat-strollers/pr?sid=p3t,0mo,u7i\">Cat Strollers</a> <a class=\"link\" href=\"/cat-scratching-posts/pr?sid=p3t,0mo,k54\">Cat Scratching Posts</a> <a class=\"link\" href=\"/cat-anxiety-wrap/pr?sid=p3t,0mo,jdk\">Cat Anxiety Wrap</a> <a class=\"link\" href=\"/cat-leashes/pr?sid=p3t,0mo,ryx\">Cat Leashes</a> <a class=\"link\" href=\"/cat-food/pr?sid=p3t,0mo,oiv\">Cat Food</a> <a class=\"link\" href=\"/cat-ticklers/pr?sid=p3t,0mo,0ku\">Cat Ticklers</a> <a class=\"link\" href=\"/cat-health-supplements/pr?sid=p3t,0mo,aoq\">Cat Health Supplements</a> <a class=\"link\" href=\"/litter-scoops/pr?sid=p3t,0mo,j2r\">Litter Scoops</a> <a class=\"link\" href=\"/cat-toys/pr?sid=p3t,0mo,gba\">Cat Toys</a> <a class=\"link\" href=\"/cat-litter-tray-refills/pr?sid=p3t,0mo,wfi\">Cat Litter Tray Refills</a> <a class=\"link\" href=\"/cat-laser-toys/pr?sid=p3t,0mo,iw3\">Cat Laser Toys</a> <a class=\"link\" href=\"/cat-bowls/pr?sid=p3t,0mo,mw5\">Cat Bowls</a> <a class=\"link\" href=\"/cat-collars/pr?sid=p3t,0mo,22e\">Cat Collars</a> <a class=\"link\" href=\"/cat-agility-sets/pr?sid=p3t,0mo,pdc\">Cat Agility Sets</a> <a class=\"link\" href=\"/cat-beds/pr?sid=p3t,0mo,mg7\">Cat Beds</a> <a class=\"link\" href=\"/cat-collar-charms/pr?sid=p3t,0mo,3ei\">Cat Collar Charms</a> <a class=\"link\" href=\"/cat-apparels/pr?sid=p3t,0mo,d5d\">Cat Apparels</a> <a class=\"link\" href=\"/cat-treats/pr?sid=p3t,0mo,vod\">Cat Treats</a> <a class=\"link\" href=\"/cat-muzzle/pr?sid=p3t,0mo,zqc\">Cat Muzzle</a> <a class=\"link\" href=\"/cat-carriers/pr?sid=p3t,0mo,hg2\">Cat Carriers</a> <a class=\"link\" href=\"/cat-grooming-bag/pr?sid=p3t,0mo,sxl\">Cat Grooming Bag</a> <a class=\"link\" href=\"/cat-chews/pr?sid=p3t,0mo,3nt\">Cat Chews</a> <a class=\"link\" href=\"/cat-trees/pr?sid=p3t,0mo,rf5\">Cat Trees</a> <a class=\"link\" href=\"/cat-blankets/pr?sid=p3t,0mo,w9n\">Cat Blankets</a> <a class=\"link\" href=\"/cat-houses/pr?sid=p3t,0mo,ndp\">Cat Houses</a> <a class=\"link\" href=\"/cat-mats/pr?sid=p3t,0mo,fn2\">Cat Mats</a> <a class=\"link\" href=\"/birds/pr?sid=p3t,9iu\">Birds</a> <a class=\"link\" href=\"/bird-shoulder-guards/pr?sid=p3t,9iu,e3v\">Bird Shoulder Guards</a> <a class=\"link\" href=\"/bird-cage-cleaners/pr?sid=p3t,9iu,8r4\">Bird Cage Cleaners</a> <a class=\"link\" href=\"/bird-chews/pr?sid=p3t,9iu,osn\">Bird Chews</a> <a class=\"link\" href=\"/bird-play-stands/pr?sid=p3t,9iu,l2f\">Bird Play Stands</a> <a class=\"link\" href=\"/cage-cuttlebone-holders/pr?sid=p3t,9iu,qtg\">Cage Cuttlebone Holders</a> <a class=\"link\" href=\"/bird-bath/pr?sid=p3t,9iu,6xa\">Bird Bath</a> <a class=\"link\" href=\"/cage-seed-catchers/pr?sid=p3t,9iu,m7r\">Cage Seed Catchers</a> <a class=\"link\" href=\"/bird-health-supplement/pr?sid=p3t,9iu,awm\">Bird Health Supplement</a> <a class=\"link\" href=\"/bird-apparels/pr?sid=p3t,9iu,hb5\">Bird Apparels</a> <a class=\"link\" href=\"/bird-toys/pr?sid=p3t,9iu,5d4\">Bird Toys</a> <a class=\"link\" href=\"/bird-feeders/pr?sid=p3t,9iu,ubi\">Bird Feeders</a> <a class=\"link\" href=\"/bird-food/pr?sid=p3t,9iu,4kp\">Bird Food</a> <a class=\"link\" href=\"/bird-cages/pr?sid=p3t,9iu,7he\">Bird Cages</a> <a class=\"link\" href=\"/bird-perch/pr?sid=p3t,9iu,6b1\">Bird Perch</a> <a class=\"link\" href=\"/egg-incubators/pr?sid=p3t,9iu,3dm\">Egg Incubators</a> <a class=\"link\" href=\"/bird-carrier/pr?sid=p3t,9iu,acm\">Bird Carrier</a> <a class=\"link\" href=\"/bird-houses/pr?sid=p3t,9iu,5fm\">Bird Houses</a> <a class=\"link\" href=\"/fish-aquatic/pr?sid=p3t,ljf\">Fish & Aquatic</a> <a class=\"link\" href=\"/fish-health-supplement/pr?sid=p3t,ljf,euh\">Fish Health Supplement</a> <a class=\"link\" href=\"/fish-food/pr?sid=p3t,ljf,9uk\">Fish Food</a> <a class=\"link\" href=\"/aquarium-accessories/pr?sid=p3t,ljf,nct\">Aquarium & Accessories</a> <a class=\"link\" href=\"/turtle-food/pr?sid=p3t,ljf,jvj\">Turtle Food</a> <a class=\"link\" href=\"/horse/pr?sid=p3t,oci\">Horse</a> <a class=\"link\" href=\"/horse-braid-tail-bag/pr?sid=p3t,oci,jli\">Horse Braid Tail Bag</a> <a class=\"link\" href=\"/horse-head-bumper/pr?sid=p3t,oci,bpq\">Horse Head Bumper</a> <a class=\"link\" href=\"/horse-tail-wraps/pr?sid=p3t,oci,on9\">Horse Tail Wraps</a> <a class=\"link\" href=\"/horse-hay/pr?sid=p3t,oci,wct\">Horse Hay</a> <a class=\"link\" href=\"/horse-muzzle/pr?sid=p3t,oci,9vt\">Horse Muzzle</a> <a class=\"link\" href=\"/horse-grooming-kit/pr?sid=p3t,oci,6wd\">Horse Grooming Kit</a> <a class=\"link\" href=\"/horse-girths/pr?sid=p3t,oci,lwe\">Horse Girths</a> <a class=\"link\" href=\"/horse-apparels/pr?sid=p3t,oci,0pq\">Horse Apparels</a> <a class=\"link\" href=\"/horse-fly-leg-guards/pr?sid=p3t,oci,cie\">Horse Fly Leg Guards</a> <a class=\"link\" href=\"/horse-agility-sets/pr?sid=p3t,oci,cv0\">Horse Agility Sets</a> <a class=\"link\" href=\"/horse-jump-cup/pr?sid=p3t,oci,vmz\">Horse Jump Cup</a> <a class=\"link\" href=\"/horse-saddle-stands/pr?sid=p3t,oci,f5l\">Horse Saddle Stands</a> <a class=\"link\" href=\"/horse-health-supplement/pr?sid=p3t,oci,pcb\">Horse Health Supplement</a> <a class=\"link\" href=\"/horse-hoof-pick/pr?sid=p3t,oci,l8t\">Horse Hoof Pick</a> <a class=\"link\" href=\"/horse-bridle/pr?sid=p3t,oci,yls\">Horse Bridle</a> <a class=\"link\" href=\"/horse-stall-chains/pr?sid=p3t,oci,q34\">Horse Stall Chains</a> <a class=\"link\" href=\"/horse-shoes/pr?sid=p3t,oci,wyf\">Horse Shoes</a> <a class=\"link\" href=\"/horse-salt-block-licks/pr?sid=p3t,oci,3jg\">Horse Salt Block Licks</a> <a class=\"link\" href=\"/horse-anxiety-wraps/pr?sid=p3t,oci,con\">Horse Anxiety Wraps</a> <a class=\"link\" href=\"/horse-boots/pr?sid=p3t,oci,t1s\">Horse Boots</a> <a class=\"link\" href=\"/large-animals/pr?sid=p3t,9v8\">Large Animals</a> <a class=\"link\" href=\"/large-animal-food-supplies/pr?sid=p3t,9v8,qkv\">Large Animal Food Supplies</a> <a class=\"link\" href=\"/large-animal-health-supplements/pr?sid=p3t,9v8,g0f\">Large Animal Health Supplements</a> <a class=\"link\" href=\"/water-trough/pr?sid=p3t,9v8,1nn\">Water Trough</a> <a class=\"link\" href=\"/bale-bags/pr?sid=p3t,9v8,dq1\">Bale Bags</a> <a class=\"link\" href=\"/large-animal-apparels/pr?sid=p3t,9v8,5y0\">Large Animal Apparels</a> <a class=\"link\" href=\"/small-animals/pr?sid=p3t,qxs\">Small Animals</a> <a class=\"link\" href=\"/small-animals-chews/pr?sid=p3t,qxs,8ly\">Small Animals Chews</a> <a class=\"link\" href=\"/small-animal-toys/pr?sid=p3t,qxs,elb\">Small Animal Toys</a> <a class=\"link\" href=\"/small-animal-carriers/pr?sid=p3t,qxs,xfe\">Small Animal Carriers</a> <a class=\"link\" href=\"/small-animal-apparels/pr?sid=p3t,qxs,kxe\">Small Animal Apparels</a> <a class=\"link\" href=\"/small-animal-food-supplies/pr?sid=p3t,qxs,aog\">Small Animal Food Supplies</a> <a class=\"link\" href=\"/small-animal-crates/pr?sid=p3t,qxs,uld\">Small Animal Crates</a> <a class=\"link\" href=\"/small-animals-treats/pr?sid=p3t,qxs,qrl\">Small Animals Treats</a> <a class=\"link\" href=\"/small-animal-health-supplements/pr?sid=p3t,qxs,yrg\">Small Animal Health Supplements</a> <a class=\"link\" href=\"/small-animal-bowls/pr?sid=p3t,qxs,h4t\">Small Animal Bowls</a> <a class=\"link\" href=\"/snake-catchers/pr?sid=p3t,qxs,zmj\">Snake Catchers</a> <a class=\"link\" href=\"/small-animal-mats/pr?sid=p3t,qxs,hy8\">Small Animal Mats</a> <a class=\"link\" href=\"/grooming-hygiene/pr?sid=p3t,ixl\">Grooming & Hygiene</a> <a class=\"link\" href=\"/pet-shampoo/pr?sid=p3t,ixl,osh\">Pet Shampoo</a> <a class=\"link\" href=\"/pet-nail-clippers/pr?sid=p3t,ixl,prc\">Pet Nail Clippers</a> <a class=\"link\" href=\"/pet-spa-kit/pr?sid=p3t,ixl,xri\">Pet Spa Kit</a> <a class=\"link\" href=\"/pet-combs/pr?sid=p3t,ixl,770\">Pet Combs</a> <a class=\"link\" href=\"/pet-hair-styling/pr?sid=p3t,ixl,ppm\">Pet Hair Styling</a> <a class=\"link\" href=\"/pet-dryers/pr?sid=p3t,ixl,yrk\">Pet Dryers</a> <a class=\"link\" href=\"/pet-bath-mats/pr?sid=p3t,ixl,lgx\">Pet Bath Mats</a> <a class=\"link\" href=\"/pet-hair-trimmer/pr?sid=p3t,ixl,xcj\">Pet Hair Trimmer</a> <a class=\"link\" href=\"/pet-sunscreens/pr?sid=p3t,ixl,daf\">Pet Sunscreens</a> <a class=\"link\" href=\"/pet-bath-towels/pr?sid=p3t,ixl,rvl\">Pet Bath Towels</a> <a class=\"link\" href=\"/pet-mouth-freshner/pr?sid=p3t,ixl,je4\">Pet Mouth Freshner</a> <a class=\"link\" href=\"/pet-diapers/pr?sid=p3t,ixl,hmu\">Pet Diapers</a> <a class=\"link\" href=\"/pet-apparel-hangers/pr?sid=p3t,ixl,q8u\">Pet Apparel Hangers</a> <a class=\"link\" href=\"/clipper-blade-cases/pr?sid=p3t,ixl,hvw\">Clipper Blade Cases</a> <a class=\"link\" href=\"/pet-bowl-mats/pr?sid=p3t,ixl,fjd\">Pet Bowl Mats</a> <a class=\"link\" href=\"/sweat-scraper/pr?sid=p3t,ixl,3kh\">Sweat Scraper</a> <a class=\"link\" href=\"/sheath-cleaner/pr?sid=p3t,ixl,zzn\">Sheath Cleaner</a> <a class=\"link\" href=\"/pet-bathtubs/pr?sid=p3t,ixl,y5h\">Pet Bathtubs</a> <a class=\"link\" href=\"/pet-cologne/pr?sid=p3t,ixl,ncz\">Pet Cologne</a> <a class=\"link\" href=\"/pet-conditioners/pr?sid=p3t,ixl,mae\">Pet Conditioners</a> <a class=\"link\" href=\"/pet-ear-and-eye-wipes/pr?sid=p3t,ixl,phg\">Pet Ear and Eye Wipes</a> <a class=\"link\" href=\"/pet-sunglasses/pr?sid=p3t,ixl,5gk\">Pet Sunglasses</a> <a class=\"link\" href=\"/pet-toothpaste/pr?sid=p3t,ixl,9wd\">Pet Toothpaste</a> <a class=\"link\" href=\"/pet-nail-cap/pr?sid=p3t,ixl,0tn\">Pet Nail Cap</a> <a class=\"link\" href=\"/pet-deodorizer/pr?sid=p3t,ixl,jkr\">Pet Deodorizer</a> <a class=\"link\" href=\"/pet-nursing-kits/pr?sid=p3t,ixl,iol\">Pet Nursing Kits</a> <a class=\"link\" href=\"/pet-cleansers/pr?sid=p3t,ixl,5kb\">Pet Cleansers</a> <a class=\"link\" href=\"/pet-grooming-glove/pr?sid=p3t,ixl,zi9\">Pet Grooming Glove</a> <a class=\"link\" href=\"/pet-toothbrush/pr?sid=p3t,ixl,i3t\">Pet Toothbrush</a> <a class=\"link\" href=\"/clipper-oils/pr?sid=p3t,ixl,wjg\">Clipper Oils</a> <a class=\"link\" href=\"/pet-anti-sweat-gel/pr?sid=p3t,ixl,7z3\">Pet Anti Sweat Gel</a> <a class=\"link\" href=\"/pet-pad-holders/pr?sid=p3t,ixl,fou\">Pet Pad Holders</a> <a class=\"link\" href=\"/health-safety/pr?sid=p3t,cez\">Health & Safety</a> <a class=\"link\" href=\"/pet-pedometer/pr?sid=p3t,cez,1ut\">Pet Pedometer</a> <a class=\"link\" href=\"/pet-treadmill/pr?sid=p3t,cez,ht0\">Pet Treadmill</a> <a class=\"link\" href=\"/pet-bandage/pr?sid=p3t,cez,mmt\">Pet Bandage</a> <a class=\"link\" href=\"/rain-sheet/pr?sid=p3t,cez,50r\">Rain Sheet</a> <a class=\"link\" href=\"/pet-glucose-monitor/pr?sid=p3t,cez,b6j\">Pet Glucose Monitor</a> <a class=\"link\" href=\"/pet-first-aid-kit/pr?sid=p3t,cez,w4e\">Pet First Aid Kit</a> <a class=\"link\" href=\"/pet-dewormer/pr?sid=p3t,cez,f1s\">Pet Dewormer</a> <a class=\"link\" href=\"/pet-oral-medication/pr?sid=p3t,cez,ala\">Pet Oral Medication</a> <a class=\"link\" href=\"/pet-bandages-wraps/pr?sid=p3t,cez,otx\">Pet Bandages Wraps</a> <a class=\"link\" href=\"/pet-wheelchair/pr?sid=p3t,cez,syc\">Pet Wheelchair</a> <a class=\"link\" href=\"/pet-gate/pr?sid=p3t,cez,zfy\">Pet Gate</a> <a class=\"link\" href=\"/pet-inhaler-mask/pr?sid=p3t,cez,9zq\">Pet Inhaler Mask</a> <a class=\"link\" href=\"/pet-seat-belt/pr?sid=p3t,cez,li4\">Pet Seat Belt</a> <a class=\"link\" href=\"/pet-fence/pr?sid=p3t,cez,rqr\">Pet Fence</a> <a class=\"link\" href=\"/pet-stair-ramp/pr?sid=p3t,cez,u7u\">Pet Stair Ramp</a> <a class=\"link\" href=\"/pet-fountain/pr?sid=p3t,cez,pro\">Pet Fountain</a> </div><h2><a href=\"/toys/pr?sid=tng\">Toys and Games</a></h2><div><a class=\"link\" href=\"/action-toys/pr?sid=tng,sv3\">Action Toys</a> <a class=\"link\" href=\"/battle-toys/pr?sid=tng,sv3,p36\">Battle Toys</a> <a class=\"link\" href=\"/action-figures/pr?sid=tng,sv3,zum\">Action Figures</a> <a class=\"link\" href=\"/spinning-and-launcher-toys/pr?sid=tng,sv3,f14\">Spinning and Launcher Toys</a> <a class=\"link\" href=\"/gag-toys/pr?sid=tng,sv3,bm8\">Gag Toys</a> <a class=\"link\" href=\"/wind-spinner-toys/pr?sid=tng,sv3,aln\">Wind Spinner Toys</a> <a class=\"link\" href=\"/hobby-kits/pr?sid=tng,8k8\">Hobby Kits</a> <a class=\"link\" href=\"/coin-collection/pr?sid=tng,8k8,fqj\">Coin Collection</a> <a class=\"link\" href=\"/stamp-collection/pr?sid=tng,8k8,bkt\">Stamp Collection</a> <a class=\"link\" href=\"/electronic-kits/pr?sid=tng,8k8,tsh\">Electronic Kits</a> <a class=\"link\" href=\"/puzzles-and-cubes/pr?sid=tng,kk6\">Puzzles and Cubes</a> <a class=\"link\" href=\"/sports-toys/pr?sid=tng,09a\">Sports Toys</a> <a class=\"link\" href=\"/musical-toys/pr?sid=tng,dcr\">Musical Toys</a> <a class=\"link\" href=\"/kids-guitars-and-toys/pr?sid=tng,dcr,2gy\">Kids Guitars and Toys</a> <a class=\"link\" href=\"/toy-xylophone/pr?sid=tng,dcr,1lu\">Toy Xylophone</a> <a class=\"link\" href=\"/toy-drum/pr?sid=tng,dcr,ijm\">Toy Drum</a> <a class=\"link\" href=\"/musical-mats/pr?sid=tng,dcr,ijd\">Musical Mats</a> <a class=\"link\" href=\"/toy-piano/pr?sid=tng,dcr,5y5\">Toy Piano</a> <a class=\"link\" href=\"/karaoke-and-mic-toys/pr?sid=tng,dcr,zox\">Karaoke and Mic Toys</a> <a class=\"link\" href=\"/kids-flute/pr?sid=tng,dcr,0rc\">Kids Flute</a> <a class=\"link\" href=\"/lcd-writing-pads/pr?sid=tng,8r2\">LCD Writing Pads</a> <a class=\"link\" href=\"/indoor-games/pr?sid=tng,gfv\">Indoor Games</a> <a class=\"link\" href=\"/board-games/pr?sid=tng,gfv,isv\">Board Games</a> <a class=\"link\" href=\"/card-games/pr?sid=tng,gfv,h1e\">Card Games</a> <a class=\"link\" href=\"/art-and-craft/pr?sid=tng,cg5\">Art and Craft</a> <a class=\"link\" href=\"/slime/pr?sid=tng,cg5,vru\">Slime</a> <a class=\"link\" href=\"/clay-and-dough/pr?sid=tng,cg5,fue\">Clay and Dough</a> <a class=\"link\" href=\"/art-craft-kit/pr?sid=tng,cg5,tzr\">Art Craft Kit</a> <a class=\"link\" href=\"/role-play-toys/pr?sid=tng,dyy\">Role Play Toys</a> <a class=\"link\" href=\"/doctor-play-sets/pr?sid=tng,dyy,k55\">Doctor Play Sets</a> <a class=\"link\" href=\"/kitchen-set/pr?sid=tng,dyy,kea\">Kitchen Set</a> <a class=\"link\" href=\"/appliances-set/pr?sid=tng,dyy,uvx\">Appliances Set</a> <a class=\"link\" href=\"/icecream-play-set/pr?sid=tng,dyy,x1o\">Icecream Play Set</a> <a class=\"link\" href=\"/animal-figures-and-play-sets/pr?sid=tng,dyy,8g2\">Animal Figures and Play Sets</a> <a class=\"link\" href=\"/pet-play-set/pr?sid=tng,dyy,nz4\">Pet Play Set</a> <a class=\"link\" href=\"/super-market-sets/pr?sid=tng,dyy,3oc\">Super Market Sets</a> <a class=\"link\" href=\"/fashion-and-makeup-toy-set/pr?sid=tng,dyy,daw\">Fashion and Makeup Toy Set</a> <a class=\"link\" href=\"/toy-tool-and-gadgets-set/pr?sid=tng,dyy,rhy\">Toy Tool and Gadgets Set</a> <a class=\"link\" href=\"/puppets/pr?sid=tng,dyy,5r1\">Puppets</a> <a class=\"link\" href=\"/detective-and-spy-kits/pr?sid=tng,dyy,vl9\">Detective and Spy Kits</a> <a class=\"link\" href=\"/outdoor-toys/pr?sid=tng,lhf\">Outdoor Toys</a> <a class=\"link\" href=\"/kids-scooters/pr?sid=tng,lhf,eyz\">Kids Scooters</a> <a class=\"link\" href=\"/pogo-sticks/pr?sid=tng,lhf,vsj\">Pogo Sticks</a> <a class=\"link\" href=\"/trampolines/pr?sid=tng,lhf,mkm\">Trampolines</a> <a class=\"link\" href=\"/marbles/pr?sid=tng,lhf,wvb\">Marbles</a> <a class=\"link\" href=\"/rope-ladders/pr?sid=tng,lhf,42w\">Rope Ladders</a> <a class=\"link\" href=\"/kites/pr?sid=tng,lhf,z3s\">Kites</a> <a class=\"link\" href=\"/beach-toys-and-play-sets/pr?sid=tng,lhf,ki1\">Beach Toys and Play Sets</a> <a class=\"link\" href=\"/kids-swings-and-slides/pr?sid=tng,lhf,qz4\">Kids Swings and Slides</a> <a class=\"link\" href=\"/hoppers-bounce/pr?sid=tng,lhf,pkk\">Hoppers & Bounce</a> <a class=\"link\" href=\"/sandboxes-and-water-tables/pr?sid=tng,lhf,8n0\">Sandboxes and Water Tables</a> <a class=\"link\" href=\"/swimming-pool/pr?sid=tng,lhf,jxi\">Swimming Pool</a> <a class=\"link\" href=\"/kids-tents/pr?sid=tng,lhf,azy\">Kids Tents</a> <a class=\"link\" href=\"/ring-toss/pr?sid=tng,lhf,den\">Ring Toss</a> <a class=\"link\" href=\"/water-gun/pr?sid=tng,lhf,spy\">Water Gun</a> <a class=\"link\" href=\"/pool-games-and-accessories/pr?sid=tng,lhf,m3s\">Pool Games and Accessories</a> <a class=\"link\" href=\"/tricycles-and-rideons/pr?sid=tng,2cz\">Tricycles and Rideons</a> <a class=\"link\" href=\"/electric-rideons/pr?sid=tng,2cz,yth\">Electric Rideons</a> <a class=\"link\" href=\"/push-rideons/pr?sid=tng,2cz,ooe\">Push Rideons</a> <a class=\"link\" href=\"/tricycles/pr?sid=tng,2cz,hsq\">Tricycles</a> <a class=\"link\" href=\"/dolls-doll-houses/pr?sid=tng,kks\">Dolls & Doll Houses</a> <a class=\"link\" href=\"/soft-doll/pr?sid=tng,kks,a5x\">Soft Doll</a> <a class=\"link\" href=\"/doll-prams/pr?sid=tng,kks,y5o\">Doll Prams</a> <a class=\"link\" href=\"/dolls/pr?sid=tng,kks,aty\">Dolls</a> <a class=\"link\" href=\"/baby-dolls-and-accessories/pr?sid=tng,kks,xv8\">Baby Dolls and Accessories</a> <a class=\"link\" href=\"/doll-accessories/pr?sid=tng,kks,jvg\">Doll Accessories</a> <a class=\"link\" href=\"/doll-house-set/pr?sid=tng,kks,5p9\">Doll House Set</a> <a class=\"link\" href=\"/dolls-playsets/pr?sid=tng,kks,w8x\">Dolls Playsets</a> <a class=\"link\" href=\"/baby-toys/pr?sid=tng,fkw\">Baby Toys</a> <a class=\"link\" href=\"/baby-play-gym/pr?sid=tng,fkw,i0n\">Baby Play Gym</a> <a class=\"link\" href=\"/baby-musical-toy/pr?sid=tng,fkw,jyk\">Baby Musical Toy</a> <a class=\"link\" href=\"/baby-rattles/pr?sid=tng,fkw,37y\">Baby Rattles</a> <a class=\"link\" href=\"/toy-phones/pr?sid=tng,fkw,46o\">Toy Phones</a> <a class=\"link\" href=\"/stacking-toys/pr?sid=tng,fkw,xon\">Stacking Toys</a> <a class=\"link\" href=\"/crib-toys/pr?sid=tng,fkw,jod\">Crib Toys</a> <a class=\"link\" href=\"/soft-ball/pr?sid=tng,fkw,ege\">Soft Ball</a> <a class=\"link\" href=\"/push-and-pull-along/pr?sid=tng,fkw,sr9\">Push and Pull Along</a> <a class=\"link\" href=\"/doodle-boards/pr?sid=tng,fkw,cz8\">Doodle Boards</a> <a class=\"link\" href=\"/soft-toys/pr?sid=tng,clb\">Soft Toys</a> <a class=\"link\" href=\"/cartoon-characters-soft-toys/pr?sid=tng,clb,fe8\">Cartoon Characters Soft Toys</a> <a class=\"link\" href=\"/animals-soft-toys/pr?sid=tng,clb,vl5\">Animals Soft Toys</a> <a class=\"link\" href=\"/teddy-bears/pr?sid=tng,clb,xv3\">Teddy Bears</a> <a class=\"link\" href=\"/toy-vehicles/pr?sid=tng,56a\">Toy Vehicles</a> <a class=\"link\" href=\"/tanks/pr?sid=tng,56a,7p8\">Tanks</a> <a class=\"link\" href=\"/aeroplane-and-helicopters/pr?sid=tng,56a,18b\">Aeroplane and Helicopters</a> <a class=\"link\" href=\"/remote-control-toys/pr?sid=tng,56a,fq8\">Remote Control Toys</a> <a class=\"link\" href=\"/vehicle-track-set/pr?sid=tng,56a,boa\">Vehicle Track Set</a> <a class=\"link\" href=\"/road-vehicles/pr?sid=tng,56a,sa6\">Road Vehicles</a> <a class=\"link\" href=\"/trains-and-track-sets/pr?sid=tng,56a,lfb\">Trains and Track Sets</a> <a class=\"link\" href=\"/parts-and-accessories/pr?sid=tng,56a,py6\">Parts and Accessories</a> <a class=\"link\" href=\"/boats-and-ships/pr?sid=tng,56a,a3r\">Boats and Ships</a> <a class=\"link\" href=\"/learning-and-educational-toys/pr?sid=tng,ll1\">Learning and Educational Toys</a> <a class=\"link\" href=\"/kaleidoscope-and-projectors/pr?sid=tng,ll1,4vh\">Kaleidoscope and Projectors</a> <a class=\"link\" href=\"/science-project-kit/pr?sid=tng,ll1,u5b\">Science Project Kit</a> <a class=\"link\" href=\"/building-and-blocks-toys/pr?sid=tng,ll1,e5o\">Building and Blocks Toys</a> <a class=\"link\" href=\"/flashcards-and-workbooks/pr?sid=tng,ll1,7wq\">Flashcards and Workbooks</a> <a class=\"link\" href=\"/abacus/pr?sid=tng,ll1,aqk\">Abacus</a> <a class=\"link\" href=\"/shapes-toys/pr?sid=tng,ll1,8s6\">Shapes Toys</a> <a class=\"link\" href=\"/kids-laptops-and-tablets/pr?sid=tng,ll1,cwo\">Kids Laptops and Tablets</a> <a class=\"link\" href=\"/alphabets-and-numbers/pr?sid=tng,ll1,t87\">Alphabets and Numbers</a> <a class=\"link\" href=\"/history-and-geography/pr?sid=tng,ll1,fhe\">History and Geography</a> </div><h2><a href=\"/festive-decor-gifting/pr?sid=bro\">Festive Decor &amp; Gifting</a></h2><div><a class=\"link\" href=\"/festive-gifts/pr?sid=bro,zwb\">Festive Gifts</a> <a class=\"link\" href=\"/fresh-flowers/pr?sid=bro,zwb,d6i\">Fresh Flowers</a> <a class=\"link\" href=\"/gift-sets/pr?sid=bro,zwb,7xg\">Gift Sets</a> <a class=\"link\" href=\"/festive-gift-boxes/pr?sid=bro,zwb,vvx\">Festive Gift Boxes</a> <a class=\"link\" href=\"/greeting-cards/pr?sid=bro,zwb,xyw\">Greeting Cards</a> <a class=\"link\" href=\"/envelopes/pr?sid=bro,zwb,2ff\">Envelopes</a> <a class=\"link\" href=\"/decorative-platters/pr?sid=bro,zwb,vva\">Decorative Platters</a> <a class=\"link\" href=\"/rakhi-rakhi-sets/pr?sid=bro,zwb,qmi\">Rakhi & Rakhi Sets</a> <a class=\"link\" href=\"/festive-decor/pr?sid=bro,tez\">Festive Decor</a> <a class=\"link\" href=\"/balloons/pr?sid=bro,tez,bnv\">Balloons</a> <a class=\"link\" href=\"/holi-colors/pr?sid=bro,tez,w8e\">Holi Colors</a> <a class=\"link\" href=\"/holi-combos/pr?sid=bro,tez,jbl\">Holi Combos</a> <a class=\"link\" href=\"/rangoli-powder/pr?sid=bro,tez,7fz\">Rangoli Powder</a> <a class=\"link\" href=\"/rangoli-stencils/pr?sid=bro,tez,pgz\">Rangoli Stencils</a> <a class=\"link\" href=\"/artificial-christmas-tree/pr?sid=bro,tez,8td\">Artificial Christmas Tree</a> <a class=\"link\" href=\"/christmas-tree-decoration/pr?sid=bro,tez,9ol\">Christmas Tree Decoration</a> <a class=\"link\" href=\"/christmas-swags-wreaths/pr?sid=bro,tez,nnw\">Christmas Swags & Wreaths</a> <a class=\"link\" href=\"/nativity-sets/pr?sid=bro,tez,tsc\">Nativity Sets</a> <a class=\"link\" href=\"/christmas-stockings-sacks/pr?sid=bro,tez,ig7\">Christmas Stockings & Sacks</a> <a class=\"link\" href=\"/ceramic-easter-eggs/pr?sid=bro,tez,da5\">Ceramic Easter Eggs</a> <a class=\"link\" href=\"/toran/pr?sid=bro,tez,hpt\">Toran</a> <a class=\"link\" href=\"/dandia-sticks/pr?sid=bro,tez,mye\">Dandia Sticks</a> <a class=\"link\" href=\"/printed-currency/pr?sid=bro,tez,l9a\">Printed Currency</a> <a class=\"link\" href=\"/spiritual-items/pr?sid=bro,vev\">Spiritual Items</a> <a class=\"link\" href=\"/pooja-thali-sets/pr?sid=bro,vev,sjp\">Pooja Thali Sets</a> <a class=\"link\" href=\"/incense-holders/pr?sid=bro,vev,p0m\">Incense Holders</a> <a class=\"link\" href=\"/yantras/pr?sid=bro,vev,ph4\">Yantras</a> <a class=\"link\" href=\"/incense-sticks/pr?sid=bro,vev,ast\">Incense Sticks</a> <a class=\"link\" href=\"/dhoop-cones/pr?sid=bro,vev,mfe\">Dhoop Cones</a> <a class=\"link\" href=\"/havan-items/pr?sid=bro,vev,80x\">Havan Items</a> <a class=\"link\" href=\"/shankh/pr?sid=bro,vev,sqo\">Shankh</a> <a class=\"link\" href=\"/prayer-kits/pr?sid=bro,vev,vj7\">Prayer Kits</a> <a class=\"link\" href=\"/kalash/pr?sid=bro,vev,b43\">Kalash</a> <a class=\"link\" href=\"/neti-pots/pr?sid=bro,vev,spb\">Neti Pots</a> <a class=\"link\" href=\"/prayer-mats/pr?sid=bro,vev,udz\">Prayer Mats</a> <a class=\"link\" href=\"/bells/pr?sid=bro,vev,ty0\">Bells</a> <a class=\"link\" href=\"/chowkis/pr?sid=bro,vev,t0y\">Chowkis</a> <a class=\"link\" href=\"/deity-dresses/pr?sid=bro,vev,qt3\">Deity Dresses</a> <a class=\"link\" href=\"/deity-ornaments/pr?sid=bro,vev,pbo\">Deity Ornaments</a> <a class=\"link\" href=\"/lord-jhulas/pr?sid=bro,vev,yh9\">Lord Jhulas</a> <a class=\"link\" href=\"/cotton-wicks/pr?sid=bro,vev,b2s\">Cotton Wicks</a> <a class=\"link\" href=\"/book-rests/pr?sid=bro,vev,mhr\">Book Rests</a> <a class=\"link\" href=\"/rehals/pr?sid=bro,vev,2ov\">Rehals</a> <a class=\"link\" href=\"/religious-chadars/pr?sid=bro,vev,mf8\">Religious Chadars</a> <a class=\"link\" href=\"/altar-cloth/pr?sid=bro,vev,rrx\">Altar Cloth</a> <a class=\"link\" href=\"/priest-vestment-stoles/pr?sid=bro,vev,j47\">Priest Vestment & Stoles</a> <a class=\"link\" href=\"/religious-footprints/pr?sid=bro,vev,am1\">Religious Footprints</a> <a class=\"link\" href=\"/prayer-desks/pr?sid=bro,vev,e0k\">Prayer Desks</a> <a class=\"link\" href=\"/religious-tiles/pr?sid=bro,vev,12s\">Religious Tiles</a> <a class=\"link\" href=\"/religious-frames/pr?sid=bro,vev,lkl\">Religious Frames</a> <a class=\"link\" href=\"/garlands/pr?sid=bro,vev,clq\">Garlands</a> <a class=\"link\" href=\"/fireworks-crackers/pr?sid=bro,sun\">Fireworks & Crackers</a> <a class=\"link\" href=\"/lighter-sticks/pr?sid=bro,sun,5kf\">Lighter Sticks</a> <a class=\"link\" href=\"/sparklers/pr?sid=bro,sun,gxq\">Sparklers</a> <a class=\"link\" href=\"/roman-candles/pr?sid=bro,sun,uxe\">Roman Candles</a> <a class=\"link\" href=\"/barrages/pr?sid=bro,sun,cky\">Barrages</a> <a class=\"link\" href=\"/rockets/pr?sid=bro,sun,96q\">Rockets</a> <a class=\"link\" href=\"/ufos/pr?sid=bro,sun,olh\">UFOs</a> <a class=\"link\" href=\"/fountains/pr?sid=bro,sun,fu4\">Fountains</a> <a class=\"link\" href=\"/firing-systems/pr?sid=bro,sun,zfg\">Firing Systems</a> <a class=\"link\" href=\"/firecracker-sets/pr?sid=bro,sun,zc4\">Firecracker Sets</a> <a class=\"link\" href=\"/wheel-spinners/pr?sid=bro,sun,gg0\">Wheel Spinners</a> <a class=\"link\" href=\"/firecracker-fuse-ropes/pr?sid=bro,sun,o78\">Firecracker Fuse Ropes</a> <a class=\"link\" href=\"/floating-lanterns/pr?sid=bro,sun,ee4\">Floating Lanterns</a> <a class=\"link\" href=\"/shell-kits/pr?sid=bro,sun,mo2\">Shell Kits</a> <a class=\"link\" href=\"/sound-shells-bombs/pr?sid=bro,sun,s5p\">Sound Shells & Bombs</a> <a class=\"link\" href=\"/firecracker-parachutes/pr?sid=bro,sun,5mo\">Firecracker Parachutes</a> <a class=\"link\" href=\"/firecracker-snakes/pr?sid=bro,sun,azs\">Firecracker Snakes</a> <a class=\"link\" href=\"/pocket-lighters/pr?sid=bro,sun,x7g\">Pocket Lighters</a> </div><h2><a href=\"/food-products/pr?sid=eat\">Food Products</a></h2><div><a class=\"link\" href=\"/confectionery-products/pr?sid=eat,uwf\">Confectionery Products</a> <a class=\"link\" href=\"/wafers-and-waffle/pr?sid=eat,uwf,mao\">Wafers and Waffle</a> <a class=\"link\" href=\"/mouthfreshener/pr?sid=eat,uwf,eoi\">Mouthfreshener</a> <a class=\"link\" href=\"/jelly/pr?sid=eat,uwf,zsr\">Jelly</a> <a class=\"link\" href=\"/candy/pr?sid=eat,uwf,7wx\">Candy</a> <a class=\"link\" href=\"/chewing-gum/pr?sid=eat,uwf,fba\">Chewing Gum</a> <a class=\"link\" href=\"/marshmallow/pr?sid=eat,uwf,e3x\">Marshmallow</a> <a class=\"link\" href=\"/lollipops/pr?sid=eat,uwf,7qc\">Lollipops</a> <a class=\"link\" href=\"/edible-oil/pr?sid=eat,18p\">Edible Oil</a> <a class=\"link\" href=\"/ready-meal-mixes/pr?sid=eat,xn7\">Ready Meal & Mixes</a> <a class=\"link\" href=\"/ready-mix-meals/pr?sid=eat,xn7,kzo\">Ready Mix Meals</a> <a class=\"link\" href=\"/stock-broth/pr?sid=eat,xn7,7bf\">Stock Broth</a> <a class=\"link\" href=\"/ready-to-eat/pr?sid=eat,xn7,dsl\">Ready to Eat</a> <a class=\"link\" href=\"/frozen-food/pr?sid=eat,xn7,zco\">Frozen Food</a> <a class=\"link\" href=\"/butter/pr?sid=eat,vyv\">Butter</a> <a class=\"link\" href=\"/food-combo/pr?sid=eat,ymr\">Food Combo</a> <a class=\"link\" href=\"/jams-and-marmalade/pr?sid=eat,t3s\">Jams and Marmalade</a> <a class=\"link\" href=\"/jam/pr?sid=eat,t3s,97x\">Jam</a> <a class=\"link\" href=\"/marmalade/pr?sid=eat,t3s,rjz\">Marmalade</a> <a class=\"link\" href=\"/vegetables/pr?sid=eat,lmt\">Vegetables</a> <a class=\"link\" href=\"/canned-vegetables/pr?sid=eat,lmt,oro\">Canned Vegetables</a> <a class=\"link\" href=\"/dried-vegetables/pr?sid=eat,lmt,jyr\">Dried Vegetables</a> <a class=\"link\" href=\"/fresh-vegetables/pr?sid=eat,lmt,zhh\">Fresh Vegetables</a> <a class=\"link\" href=\"/noodle/pr?sid=eat,pqj\">Noodle</a> <a class=\"link\" href=\"/ice-cream-mix/pr?sid=eat,sr7\">Ice Cream Mix</a> <a class=\"link\" href=\"/lassi/pr?sid=eat,mnd\">Lassi</a> <a class=\"link\" href=\"/syrup/pr?sid=eat,vqg\">Syrup</a> <a class=\"link\" href=\"/honey/pr?sid=eat,lnz\">Honey</a> <a class=\"link\" href=\"/buttermilk/pr?sid=eat,a1m\">Buttermilk</a> <a class=\"link\" href=\"/milk/pr?sid=eat,zn0\">Milk</a> <a class=\"link\" href=\"/soft-drink-products/pr?sid=eat,iw1\">Soft Drink Products</a> <a class=\"link\" href=\"/pickle/pr?sid=eat,kjf\">Pickle</a> <a class=\"link\" href=\"/fruit-squash/pr?sid=eat,ssl\">Fruit Squash</a> <a class=\"link\" href=\"/ghee-and-vanaspati/pr?sid=eat,klf\">Ghee and Vanaspati</a> <a class=\"link\" href=\"/vanaspati/pr?sid=eat,klf,qa6\">Vanaspati</a> <a class=\"link\" href=\"/ghee/pr?sid=eat,klf,f3s\">Ghee</a> <a class=\"link\" href=\"/chocolates/pr?sid=eat,0pt\">Chocolates</a> <a class=\"link\" href=\"/soup-and-dry-soup-mix/pr?sid=eat,edn\">Soup and Dry Soup Mix</a> <a class=\"link\" href=\"/cake-and-pastry-mix/pr?sid=eat,eeg\">Cake and Pastry Mix</a> <a class=\"link\" href=\"/baking-mix/pr?sid=eat,eeg,3yl\">Baking Mix</a> <a class=\"link\" href=\"/pudding-powder/pr?sid=eat,eeg,60w\">Pudding Powder</a> <a class=\"link\" href=\"/jelly-mix/pr?sid=eat,eeg,zhr\">Jelly Mix</a> <a class=\"link\" href=\"/cake-mix/pr?sid=eat,eeg,hep\">Cake Mix</a> <a class=\"link\" href=\"/pastry-mix/pr?sid=eat,eeg,9ig\">Pastry Mix</a> <a class=\"link\" href=\"/custard-powder/pr?sid=eat,eeg,c7s\">Custard Powder</a> <a class=\"link\" href=\"/pasta/pr?sid=eat,kuc\">Pasta</a> <a class=\"link\" href=\"/dry-fruit-nut-seed/pr?sid=eat,ltb\">Dry Fruit, Nut & Seed</a> <a class=\"link\" href=\"/dry-fruits/pr?sid=eat,ltb,ngb\">Dry Fruits</a> <a class=\"link\" href=\"/dry-fruits-gift-pack/pr?sid=eat,ltb,iq5\">Dry Fruits Gift Pack</a> <a class=\"link\" href=\"/edible-seed/pr?sid=eat,ltb,jlc\">Edible Seed</a> <a class=\"link\" href=\"/mixed-dry-fruits/pr?sid=eat,ltb,oen\">Mixed Dry Fruits</a> <a class=\"link\" href=\"/namkeen/pr?sid=eat,0we\">Namkeen</a> <a class=\"link\" href=\"/instant-drink-mix/pr?sid=eat,d25\">Instant Drink Mix</a> <a class=\"link\" href=\"/murabba-and-gulkand/pr?sid=eat,vjr\">Murabba and Gulkand</a> <a class=\"link\" href=\"/murabba/pr?sid=eat,vjr,lqi\">Murabba</a> <a class=\"link\" href=\"/gulkand/pr?sid=eat,vjr,5c4\">Gulkand</a> <a class=\"link\" href=\"/salt/pr?sid=eat,5ht\">Salt</a> <a class=\"link\" href=\"/rice/pr?sid=eat,yul\">Rice</a> <a class=\"link\" href=\"/fruit-crush/pr?sid=eat,nqv\">Fruit Crush</a> <a class=\"link\" href=\"/pulses/pr?sid=eat,anl\">Pulses</a> <a class=\"link\" href=\"/gram/pr?sid=eat,anl,e3o\">Gram</a> <a class=\"link\" href=\"/soya-chunk/pr?sid=eat,anl,vsh\">Soya Chunk</a> <a class=\"link\" href=\"/pulses-combo/pr?sid=eat,anl,nlo\">Pulses Combo</a> <a class=\"link\" href=\"/peanut/pr?sid=eat,anl,id0\">Peanut</a> <a class=\"link\" href=\"/dal/pr?sid=eat,anl,ovb\">Dal</a> <a class=\"link\" href=\"/bean/pr?sid=eat,anl,zul\">Bean</a> <a class=\"link\" href=\"/fruits/pr?sid=eat,w2q\">Fruits</a> <a class=\"link\" href=\"/dried-fruit/pr?sid=eat,w2q,2pb\">Dried Fruit</a> <a class=\"link\" href=\"/fresh-fruit/pr?sid=eat,w2q,b0g\">Fresh Fruit</a> <a class=\"link\" href=\"/canned-fruit/pr?sid=eat,w2q,ibu\">Canned Fruit</a> <a class=\"link\" href=\"/tea-powder/pr?sid=eat,fpm\">Tea Powder</a> <a class=\"link\" href=\"/yogurt-and-curd-products/pr?sid=eat,7rr\">Yogurt and Curd Products</a> <a class=\"link\" href=\"/yogurt-and-curd/pr?sid=eat,7rr,nrr\">Yogurt and Curd</a> <a class=\"link\" href=\"/yogurt-powder/pr?sid=eat,7rr,fyq\">Yogurt Powder</a> <a class=\"link\" href=\"/papad/pr?sid=eat,8qh\">Papad</a> <a class=\"link\" href=\"/cereal-bars/pr?sid=eat,c8v\">Cereal Bars</a> <a class=\"link\" href=\"/condensed-milk/pr?sid=eat,1uy\">Condensed Milk</a> <a class=\"link\" href=\"/vermicelli/pr?sid=eat,tkb\">Vermicelli</a> <a class=\"link\" href=\"/dairy-cream/pr?sid=eat,jj5\">Dairy Cream</a> <a class=\"link\" href=\"/artificial-sweetener/pr?sid=eat,nin\">Artificial Sweetener</a> <a class=\"link\" href=\"/sauce-and-dip/pr?sid=eat,jcr\">Sauce and Dip</a> <a class=\"link\" href=\"/biscuit-cookie-and-rusk/pr?sid=eat,5am\">Biscuit, Cookie and Rusk</a> <a class=\"link\" href=\"/food-spreads/pr?sid=eat,xhv\">Food Spreads</a> <a class=\"link\" href=\"/breakfast-cereal/pr?sid=eat,cpy\">Breakfast Cereal</a> <a class=\"link\" href=\"/chutneys/pr?sid=eat,xhc\">Chutneys</a> <a class=\"link\" href=\"/spice-powder-and-masala/pr?sid=eat,xgg\">Spice Powder and Masala</a> <a class=\"link\" href=\"/grain/pr?sid=eat,znz\">Grain</a> <a class=\"link\" href=\"/corn/pr?sid=eat,znz,q0j\">Corn</a> <a class=\"link\" href=\"/sago/pr?sid=eat,znz,lqn\">Sago</a> <a class=\"link\" href=\"/ragi/pr?sid=eat,znz,6vq\">Ragi</a> <a class=\"link\" href=\"/kasha/pr?sid=eat,znz,c2h\">Kasha</a> <a class=\"link\" href=\"/wheat-bran/pr?sid=eat,znz,o5x\">Wheat Bran</a> <a class=\"link\" href=\"/farro/pr?sid=eat,znz,50w\">Farro</a> <a class=\"link\" href=\"/quinoa/pr?sid=eat,znz,xee\">Quinoa</a> <a class=\"link\" href=\"/bulgurl/pr?sid=eat,znz,qo2\">Bulgurl</a> <a class=\"link\" href=\"/daliya/pr?sid=eat,znz,9nh\">Daliya</a> <a class=\"link\" href=\"/sorghum/pr?sid=eat,znz,d0y\">Sorghum</a> <a class=\"link\" href=\"/millet/pr?sid=eat,znz,a6k\">Millet</a> <a class=\"link\" href=\"/barley/pr?sid=eat,znz,lox\">Barley</a> <a class=\"link\" href=\"/couscous/pr?sid=eat,znz,fox\">Couscous</a> <a class=\"link\" href=\"/wheat/pr?sid=eat,znz,0js\">Wheat</a> <a class=\"link\" href=\"/jowar/pr?sid=eat,znz,pjt\">Jowar</a> <a class=\"link\" href=\"/wheat-berries/pr?sid=eat,znz,yt4\">Wheat Berries</a> <a class=\"link\" href=\"/herb-and-seasoning/pr?sid=eat,g6m\">Herb and Seasoning</a> <a class=\"link\" href=\"/herb-seasoning/pr?sid=eat,g6m,rla\">Herb Seasoning</a> <a class=\"link\" href=\"/olive/pr?sid=eat,g6m,45l\">Olive</a> <a class=\"link\" href=\"/jalapeno/pr?sid=eat,g6m,lvy\">Jalapeno</a> <a class=\"link\" href=\"/breads-and-buns/pr?sid=eat,amy\">Breads and Buns</a> <a class=\"link\" href=\"/bread/pr?sid=eat,amy,sde\">Bread</a> <a class=\"link\" href=\"/bread-crumbs/pr?sid=eat,amy,w9y\">Bread Crumbs</a> <a class=\"link\" href=\"/crouton/pr?sid=eat,amy,tas\">Crouton</a> <a class=\"link\" href=\"/pizza-base/pr?sid=eat,amy,qsk\">Pizza Base</a> <a class=\"link\" href=\"/bread-sticks/pr?sid=eat,amy,ymp\">Bread Sticks</a> <a class=\"link\" href=\"/baking-bun/pr?sid=eat,amy,nat\">Baking Bun</a> <a class=\"link\" href=\"/fruit-juice/pr?sid=eat,br4\">Fruit Juice</a> <a class=\"link\" href=\"/meat/pr?sid=eat,czb\">Meat</a> <a class=\"link\" href=\"/canned-meat/pr?sid=eat,czb,qcp\">Canned Meat</a> <a class=\"link\" href=\"/fresh-meat/pr?sid=eat,czb,dqa\">Fresh Meat</a> <a class=\"link\" href=\"/dried-meat/pr?sid=eat,czb,ua4\">Dried Meat</a> <a class=\"link\" href=\"/vinegar/pr?sid=eat,nvt\">Vinegar</a> <a class=\"link\" href=\"/fryum/pr?sid=eat,4c4\">Fryum</a> <a class=\"link\" href=\"/paste-and-puree/pr?sid=eat,wze\">Paste and Puree</a> <a class=\"link\" href=\"/chips/pr?sid=eat,lng\">Chips</a> <a class=\"link\" href=\"/egg/pr?sid=eat,0p5\">Egg</a> <a class=\"link\" href=\"/jaggery/pr?sid=eat,vfd\">Jaggery</a> <a class=\"link\" href=\"/cheese/pr?sid=eat,umm\">Cheese</a> <a class=\"link\" href=\"/drinking-water/pr?sid=eat,cqq\">Drinking Water</a> <a class=\"link\" href=\"/sugar/pr?sid=eat,mzy\">Sugar</a> <a class=\"link\" href=\"/baking-ingredients-and-essential-products/pr?sid=eat,j70\">Baking Ingredients and Essential Products</a> <a class=\"link\" href=\"/baking-soda/pr?sid=eat,j70,pgs\">Baking Soda</a> <a class=\"link\" href=\"/baking-powder/pr?sid=eat,j70,9jz\">Baking Powder</a> <a class=\"link\" href=\"/food-colors/pr?sid=eat,j70,quv\">Food Colors</a> <a class=\"link\" href=\"/baking-decorative-products/pr?sid=eat,j70,cys\">Baking Decorative Products</a> <a class=\"link\" href=\"/buttermilk-powder/pr?sid=eat,j70,vzu\">Buttermilk Powder</a> <a class=\"link\" href=\"/food-monosodium-glutamate/pr?sid=eat,j70,94v\">Food Monosodium Glutamate</a> <a class=\"link\" href=\"/self-rising-flour/pr?sid=eat,j70,ffa\">Self Rising Flour</a> <a class=\"link\" href=\"/food-essence/pr?sid=eat,j70,9sb\">Food Essence</a> <a class=\"link\" href=\"/food-thickening-agents/pr?sid=eat,j70,y0r\">Food Thickening Agents</a> <a class=\"link\" href=\"/yeast/pr?sid=eat,j70,3hq\">Yeast</a> <a class=\"link\" href=\"/food-stabilizing-agents/pr?sid=eat,j70,d7u\">Food Stabilizing Agents</a> <a class=\"link\" href=\"/cocoa-powder/pr?sid=eat,j70,opp\">Cocoa Powder</a> <a class=\"link\" href=\"/coffee-powder/pr?sid=eat,dui\">Coffee Powder</a> <a class=\"link\" href=\"/flour-and-sooji/pr?sid=eat,e6o\">Flour and Sooji</a> <a class=\"link\" href=\"/seafood/pr?sid=eat,woo\">Seafood</a> <a class=\"link\" href=\"/dried-seafood/pr?sid=eat,woo,4qx\">Dried Seafood</a> <a class=\"link\" href=\"/fresh-seafood/pr?sid=eat,woo,b4h\">Fresh Seafood</a> <a class=\"link\" href=\"/canned-seafood/pr?sid=eat,woo,n1h\">Canned Seafood</a> <a class=\"link\" href=\"/milk-powder/pr?sid=eat,xog\">Milk Powder</a> <a class=\"link\" href=\"/powdered-drink-mix/pr?sid=eat,mka\">Powdered Drink Mix</a> <a class=\"link\" href=\"/energy-drink-products/pr?sid=eat,5af\">Energy Drink Products</a> <a class=\"link\" href=\"/paneer-and-tofu/pr?sid=eat,uxm\">Paneer and Tofu</a> <a class=\"link\" href=\"/sweets-and-mixes/pr?sid=eat,pta\">Sweets and Mixes</a> <a class=\"link\" href=\"/dessert-mix/pr?sid=eat,pta,cpt\">Dessert Mix</a> <a class=\"link\" href=\"/packaged-sweets/pr?sid=eat,pta,qoz\">Packaged Sweets</a> <a class=\"link\" href=\"/popcorn/pr?sid=eat,bwl\">Popcorn</a> </div><h2><a href=\"/home-cleaning-bathroom-accessories/pr?sid=rja\">Home Cleaning &amp; Bathroom Accessories</a></h2><div><a class=\"link\" href=\"/cleaning-supplies/pr?sid=rja,z2d\">Cleaning Supplies</a> <a class=\"link\" href=\"/mops/pr?sid=rja,z2d,xrz\">Mops</a> <a class=\"link\" href=\"/dustbins/pr?sid=rja,z2d,r6h\">Dustbins</a> <a class=\"link\" href=\"/brooms/pr?sid=rja,z2d,jms\">Brooms</a> <a class=\"link\" href=\"/brushes/pr?sid=rja,z2d,rrc\">Brushes</a> <a class=\"link\" href=\"/broom-holders/pr?sid=rja,z2d,ym2\">Broom Holders</a> <a class=\"link\" href=\"/home-cleaning-sets/pr?sid=rja,z2d,jkj\">Home Cleaning Sets</a> <a class=\"link\" href=\"/cleaning-gloves/pr?sid=rja,z2d,jef\">Cleaning Gloves</a> <a class=\"link\" href=\"/dustpans/pr?sid=rja,z2d,hxi\">Dustpans</a> <a class=\"link\" href=\"/dusters/pr?sid=rja,z2d,hhd\">Dusters</a> <a class=\"link\" href=\"/trash-compactors/pr?sid=rja,z2d,7hq\">Trash Compactors</a> <a class=\"link\" href=\"/scrub-pads/pr?sid=rja,z2d,eyn\">Scrub Pads</a> <a class=\"link\" href=\"/bottle-emptying-kits/pr?sid=rja,z2d,hio\">Bottle Emptying Kits</a> <a class=\"link\" href=\"/toilet-brushes/pr?sid=rja,z2d,de2\">Toilet Brushes</a> <a class=\"link\" href=\"/cleaning-clothes/pr?sid=rja,z2d,ns2\">Cleaning Clothes</a> <a class=\"link\" href=\"/cleaning-wipes/pr?sid=rja,z2d,m2i\">Cleaning Wipes</a> <a class=\"link\" href=\"/household-supplies/pr?sid=rja,plv\">HouseHold Supplies</a> <a class=\"link\" href=\"/colour-fixer/pr?sid=rja,plv,jsj\">Colour Fixer</a> <a class=\"link\" href=\"/appliance-cleaner/pr?sid=rja,plv,36v\">Appliance Cleaner</a> <a class=\"link\" href=\"/disinfectant-surface-wipe/pr?sid=rja,plv,8gf\">Disinfectant Surface Wipe</a> <a class=\"link\" href=\"/all-purpose-cleaners/pr?sid=rja,plv,gat\">All Purpose Cleaners</a> <a class=\"link\" href=\"/insect-repellants/pr?sid=rja,plv,a3u\">Insect Repellants</a> <a class=\"link\" href=\"/kitchen-rolls/pr?sid=rja,plv,qsp\">Kitchen Rolls</a> <a class=\"link\" href=\"/fruit-and-vegetable-wash/pr?sid=rja,plv,twv\">Fruit and Vegetable Wash</a> <a class=\"link\" href=\"/aluminium-foils-shrink-wraps/pr?sid=rja,plv,d0s\">Aluminium Foils & Shrink Wraps</a> <a class=\"link\" href=\"/garbage-bags/pr?sid=rja,plv,kv5\">Garbage Bags</a> <a class=\"link\" href=\"/air-fresheners/pr?sid=rja,plv,c7w\">Air Fresheners</a> <a class=\"link\" href=\"/dish-cleaning-gels/pr?sid=rja,plv,txk\">Dish Cleaning Gels</a> <a class=\"link\" href=\"/dish-washing-bars/pr?sid=rja,plv,9tt\">Dish Washing Bars</a> <a class=\"link\" href=\"/fabric-stiffners/pr?sid=rja,plv,o0a\">Fabric Stiffners</a> <a class=\"link\" href=\"/glass-cleaners/pr?sid=rja,plv,mzc\">Glass Cleaners</a> <a class=\"link\" href=\"/naphthalene-balls/pr?sid=rja,plv,irm\">Naphthalene Balls</a> <a class=\"link\" href=\"/upholstery-cleaners/pr?sid=rja,plv,0a8\">Upholstery Cleaners</a> <a class=\"link\" href=\"/stain-removers/pr?sid=rja,plv,kbo\">Stain Removers</a> <a class=\"link\" href=\"/dish-washing-detergents/pr?sid=rja,plv,fg0\">Dish Washing Detergents</a> <a class=\"link\" href=\"/fabric-softeners/pr?sid=rja,plv,yav\">Fabric Softeners</a> <a class=\"link\" href=\"/mosquito-vaporizers/pr?sid=rja,plv,byk\">Mosquito Vaporizers</a> <a class=\"link\" href=\"/drain-openers/pr?sid=rja,plv,adc\">Drain Openers</a> <a class=\"link\" href=\"/liquid-detergents/pr?sid=rja,plv,xdq\">Liquid Detergents</a> <a class=\"link\" href=\"/washing-bars/pr?sid=rja,plv,hot\">Washing Bars</a> <a class=\"link\" href=\"/kitchen-surface-cleaners/pr?sid=rja,plv,wwv\">Kitchen Surface Cleaners</a> <a class=\"link\" href=\"/toilet-paper-rolls/pr?sid=rja,plv,caj\">Toilet Paper Rolls</a> <a class=\"link\" href=\"/toilet-cleaners/pr?sid=rja,plv,trq\">Toilet Cleaners</a> <a class=\"link\" href=\"/mosquito-coils/pr?sid=rja,plv,cab\">Mosquito Coils</a> <a class=\"link\" href=\"/mosquito-vaporiser-refills/pr?sid=rja,plv,jwz\">Mosquito Vaporiser Refills</a> <a class=\"link\" href=\"/rodent-repellent-devices/pr?sid=rja,plv,340\">Rodent Repellent Devices</a> <a class=\"link\" href=\"/fabric-whiteners/pr?sid=rja,plv,rde\">Fabric Whiteners</a> <a class=\"link\" href=\"/fabric-deodorizers/pr?sid=rja,plv,rc2\">Fabric Deodorizers</a> <a class=\"link\" href=\"/washing-powders/pr?sid=rja,plv,bwz\">Washing Powders</a> <a class=\"link\" href=\"/degreasing-sprays/pr?sid=rja,plv,gck\">Degreasing Sprays</a> <a class=\"link\" href=\"/bathroom-floor-cleaners/pr?sid=rja,plv,9lr\">Bathroom Floor Cleaners</a> <a class=\"link\" href=\"/tanning-bed-cleaners/pr?sid=rja,plv,f35\">Tanning Bed Cleaners</a> <a class=\"link\" href=\"/moisture-absorbers/pr?sid=rja,plv,5my\">Moisture Absorbers</a> <a class=\"link\" href=\"/mosquito-killers/pr?sid=rja,plv,oej\">Mosquito Killers</a> <a class=\"link\" href=\"/detergent-pods/pr?sid=rja,plv,z2g\">Detergent Pods</a> <a class=\"link\" href=\"/bathroom-accessories/pr?sid=rja,zqm\">Bathroom Accessories</a> <a class=\"link\" href=\"/toothbrush-holders/pr?sid=rja,zqm,oga\">Toothbrush Holders</a> <a class=\"link\" href=\"/bathroom-sets/pr?sid=rja,zqm,f5x\">Bathroom Sets</a> <a class=\"link\" href=\"/soap-dishes/pr?sid=rja,zqm,yf1\">Soap Dishes</a> <a class=\"link\" href=\"/buckets/pr?sid=rja,zqm,7rm\">Buckets</a> <a class=\"link\" href=\"/bath-tumblers/pr?sid=rja,zqm,qxe\">Bath Tumblers</a> <a class=\"link\" href=\"/tube-squeezers/pr?sid=rja,zqm,5bx\">Tube Squeezers</a> <a class=\"link\" href=\"/liquid-dispensers/pr?sid=rja,zqm,p0g\">Liquid Dispensers</a> <a class=\"link\" href=\"/hooks/pr?sid=rja,zqm,tu3\">Hooks</a> <a class=\"link\" href=\"/bathroom-stools/pr?sid=rja,zqm,36g\">Bathroom Stools</a> <a class=\"link\" href=\"/toilet-seat-warmers/pr?sid=rja,zqm,fgn\">Toilet Seat Warmers</a> </div><h2><a href=\"/health-care/pr?sid=hlc\">Health Care</a></h2><div><a class=\"link\" href=\"/professional-medical-supplies/pr?sid=hlc,mly\">Professional medical supplies</a> <a class=\"link\" href=\"/eye-examination-equipment/pr?sid=hlc,mly,l4d\">Eye Examination Equipment</a> <a class=\"link\" href=\"/dental-instruments/pr?sid=hlc,mly,2cm\">Dental Instruments</a> <a class=\"link\" href=\"/medical-apparels/pr?sid=hlc,mly,qbi\">Medical Apparels</a> <a class=\"link\" href=\"/acupuncture-devices-and-accessories/pr?sid=hlc,mly,rua\">Acupuncture Devices and Accessories</a> <a class=\"link\" href=\"/ent-devices/pr?sid=hlc,mly,vei\">ENT Devices</a> <a class=\"link\" href=\"/diagnostics-and-screening/pr?sid=hlc,mly,bvi\">Diagnostics and Screening</a> <a class=\"link\" href=\"/surgical-equipment-and-accessories/pr?sid=hlc,mly,zry\">Surgical Equipment and Accessories</a> <a class=\"link\" href=\"/respiratory-equipment-accessories/pr?sid=hlc,mly,303\">Respiratory Equipment & Accessories</a> <a class=\"link\" href=\"/sexual-wellness/pr?sid=hlc,p5s\">Sexual Wellness</a> <a class=\"link\" href=\"/vaginal-dilators/pr?sid=hlc,p5s,ftg\">Vaginal Dilators</a> <a class=\"link\" href=\"/delay-spray/pr?sid=hlc,p5s,o8a\">Delay Spray</a> <a class=\"link\" href=\"/lubricants/pr?sid=hlc,p5s,sjm\">Lubricants</a> <a class=\"link\" href=\"/sexual-combo-kits/pr?sid=hlc,p5s,0cd\">Sexual Combo Kits</a> <a class=\"link\" href=\"/condoms/pr?sid=hlc,p5s,h5u\">Condoms</a> <a class=\"link\" href=\"/home-medical-supplies/pr?sid=hlc,20m\">Home Medical Supplies</a> <a class=\"link\" href=\"/medicine-organizer/pr?sid=hlc,20m,21y\">Medicine Organizer</a> <a class=\"link\" href=\"/health-monitors/pr?sid=hlc,20m,led\">Health Monitors</a> <a class=\"link\" href=\"/wound-dressing-and-accessories/pr?sid=hlc,20m,n8k\">Wound Dressing and Accessories</a> <a class=\"link\" href=\"/bathroom-and-toilet-aid/pr?sid=hlc,20m,0sl\">Bathroom and Toilet Aid</a> <a class=\"link\" href=\"/fertility-kits/pr?sid=hlc,20m,b05\">Fertility Kits</a> <a class=\"link\" href=\"/pain-relief-devices/pr?sid=hlc,20m,idb\">Pain Relief Devices</a> <a class=\"link\" href=\"/medical-supports-and-braces/pr?sid=hlc,20m,n30\">Medical Supports and Braces</a> <a class=\"link\" href=\"/mobility-and-rehabilitation-aid/pr?sid=hlc,20m,52n\">Mobility and Rehabilitation Aid</a> <a class=\"link\" href=\"/pregnancy-kits/pr?sid=hlc,20m,mk7\">Pregnancy Kits</a> <a class=\"link\" href=\"/womens-safety/pr?sid=hlc,iwt\">Women's Safety</a> <a class=\"link\" href=\"/personal-security-alarm/pr?sid=hlc,iwt,qrx\">Personal Security Alarm</a> <a class=\"link\" href=\"/pepper-safety-device/pr?sid=hlc,iwt,mie\">Pepper Safety Device</a> <a class=\"link\" href=\"/iron-batons/pr?sid=hlc,iwt,hq4\">Iron Batons</a> <a class=\"link\" href=\"/handcuffs/pr?sid=hlc,iwt,w5b\">Handcuffs</a> <a class=\"link\" href=\"/knuckles/pr?sid=hlc,iwt,icn\">Knuckles</a> <a class=\"link\" href=\"/stun-guns/pr?sid=hlc,iwt,o84\">Stun Guns</a> <a class=\"link\" href=\"/home-medicines/pr?sid=hlc,ah4\">Home Medicines</a> <a class=\"link\" href=\"/hearing-care/pr?sid=hlc,ah4,tfg\">Hearing Care</a> <a class=\"link\" href=\"/body-pain-relief/pr?sid=hlc,ah4,xos\">Body Pain Relief</a> <a class=\"link\" href=\"/general-wellness/pr?sid=hlc,ah4,iav\">General Wellness</a> <a class=\"link\" href=\"/eye-care/pr?sid=hlc,ah4,wwq\">Eye Care</a> <a class=\"link\" href=\"/male-disorders/pr?sid=hlc,ah4,9qq\">Male Disorders</a> <a class=\"link\" href=\"/post-natal-care/pr?sid=hlc,ah4,ed5\">Post Natal Care</a> <a class=\"link\" href=\"/skin-care/pr?sid=hlc,ah4,jn8\">Skin Care</a> <a class=\"link\" href=\"/hearing-care/pr?sid=hlc,ah4,ahd\">Hearing Care</a> <a class=\"link\" href=\"/cuts-wounds-and-burn-injury/pr?sid=hlc,ah4,0wd\">Cuts, Wounds and Burn Injury</a> <a class=\"link\" href=\"/digestive-health/pr?sid=hlc,ah4,2bl\">Digestive Health</a> <a class=\"link\" href=\"/cuts-wounds-and-burn-injury/pr?sid=hlc,ah4,h3m\">Cuts, Wounds and Burn Injury</a> <a class=\"link\" href=\"/hair-care/pr?sid=hlc,ah4,0tg\">Hair Care</a> <a class=\"link\" href=\"/deficiencies/pr?sid=hlc,ah4,5i6\">Deficiencies</a> <a class=\"link\" href=\"/bone-joint-and-muscle-care/pr?sid=hlc,ah4,vv6\">Bone, Joint and Muscle Care</a> <a class=\"link\" href=\"/cardiac-care/pr?sid=hlc,ah4,ack\">Cardiac Care</a> <a class=\"link\" href=\"/oral-care/pr?sid=hlc,ah4,y9v\">Oral Care</a> <a class=\"link\" href=\"/diabetes/pr?sid=hlc,ah4,ipc\">Diabetes</a> <a class=\"link\" href=\"/fever/pr?sid=hlc,ah4,wnl\">Fever</a> <a class=\"link\" href=\"/lifestyle-disorders/pr?sid=hlc,ah4,0nw\">Lifestyle Disorders</a> <a class=\"link\" href=\"/thyroid-care/pr?sid=hlc,ah4,wnz\">Thyroid Care</a> <a class=\"link\" href=\"/vision-care/pr?sid=hlc,ah4,b5z\">Vision Care</a> <a class=\"link\" href=\"/cough-cold/pr?sid=hlc,ah4,9ii\">Cough & Cold</a> <a class=\"link\" href=\"/mental-wellness/pr?sid=hlc,ah4,ere\">Mental Wellness</a> <a class=\"link\" href=\"/respiratory-care/pr?sid=hlc,ah4,xic\">Respiratory Care</a> <a class=\"link\" href=\"/male-disorders/pr?sid=hlc,ah4,caf\">Male Disorders</a> <a class=\"link\" href=\"/ayurvedic/pr?sid=hlc,ah4,d77\">Ayurvedic</a> <a class=\"link\" href=\"/antiseptics/pr?sid=hlc,ah4,c6g\">Antiseptics</a> <a class=\"link\" href=\"/pre-natal-care/pr?sid=hlc,ah4,5pb\">Pre Natal Care</a> <a class=\"link\" href=\"/female-disorders/pr?sid=hlc,ah4,aml\">Female Disorders</a> <a class=\"link\" href=\"/immunity-booster/pr?sid=hlc,ah4,lm3\">Immunity Booster</a> <a class=\"link\" href=\"/sexual-health/pr?sid=hlc,ah4,iim\">Sexual Health</a> <a class=\"link\" href=\"/child-care/pr?sid=hlc,ah4,pts\">Child Care</a> <a class=\"link\" href=\"/prescription-medication/pr?sid=hlc,ah4,qpd\">Prescription Medication</a> <a class=\"link\" href=\"/renal-health/pr?sid=hlc,ah4,gwx\">Renal Health</a> <a class=\"link\" href=\"/child-care/pr?sid=hlc,ah4,sws\">Child Care</a> <a class=\"link\" href=\"/bone-joint-and-muscle-care/pr?sid=hlc,ah4,wpc\">Bone, Joint and Muscle Care</a> <a class=\"link\" href=\"/pain-relief/pr?sid=hlc,ah4,kt0\">Pain Relief</a> <a class=\"link\" href=\"/piles/pr?sid=hlc,ah4,ms0\">Piles</a> <a class=\"link\" href=\"/deaddiction/pr?sid=hlc,ah4,sd2\">De-Addiction</a> <a class=\"link\" href=\"/lifestyle-disorders/pr?sid=hlc,ah4,00d\">Lifestyle Disorders</a> <a class=\"link\" href=\"/blood-purification/pr?sid=hlc,ah4,tdm\">Blood Purification</a> <a class=\"link\" href=\"/health-supplements/pr?sid=hlc,etg\">Health Supplements</a> <a class=\"link\" href=\"/vitamin-supplement/pr?sid=hlc,etg,qtw\">Vitamin Supplement</a> <a class=\"link\" href=\"/protein-supplement/pr?sid=hlc,etg,1rx\">Protein Supplement</a> <a class=\"link\" href=\"/chyawanprash/pr?sid=hlc,etg,hyk\">Chyawanprash</a> <a class=\"link\" href=\"/milk-drink-mixes/pr?sid=hlc,etg,sxm\">Milk Drink Mixes</a> <a class=\"link\" href=\"/digestive-probiotic/pr?sid=hlc,etg,q3t\">Digestive Probiotic</a> <a class=\"link\" href=\"/energy-drinks/pr?sid=hlc,etg,2yn\">Energy Drinks</a> <a class=\"link\" href=\"/health-care-combo/pr?sid=hlc,mwo\">Health Care Combo</a> </div><h2><a href=\"/beauty-and-grooming/pr?sid=g9b\">Beauty and Grooming</a></h2><div><a class=\"link\" href=\"/shaving-beard-care/pr?sid=g9b,tiz\">Shaving & Beard Care</a> <a class=\"link\" href=\"/shaving-oil/pr?sid=g9b,tiz,gf9\">Shaving Oil</a> <a class=\"link\" href=\"/shaving-blades/pr?sid=g9b,tiz,07u\">Shaving Blades</a> <a class=\"link\" href=\"/shaving-razors/pr?sid=g9b,tiz,rop\">Shaving Razors</a> <a class=\"link\" href=\"/aftershave/pr?sid=g9b,tiz,v6u\">Aftershave</a> <a class=\"link\" href=\"/shaving-gel/pr?sid=g9b,tiz,akj\">Shaving Gel</a> <a class=\"link\" href=\"/shaving-creams/pr?sid=g9b,tiz,myl\">Shaving Creams</a> <a class=\"link\" href=\"/shaving-foam/pr?sid=g9b,tiz,k6k\">Shaving Foam</a> <a class=\"link\" href=\"/beard-oil/pr?sid=g9b,tiz,cnj\">Beard Oil</a> <a class=\"link\" href=\"/shaving-brushes/pr?sid=g9b,tiz,f1f\">Shaving Brushes</a> <a class=\"link\" href=\"/shaving-soap/pr?sid=g9b,tiz,yj6\">Shaving Soap</a> <a class=\"link\" href=\"/mens-grooming-combo-kit/pr?sid=g9b,tiz,pwx\">Men's Grooming Combo Kit</a> <a class=\"link\" href=\"/hair-care-and-accessory/pr?sid=g9b,lcf\">Hair Care and Accessory</a> <a class=\"link\" href=\"/hair-accessory/pr?sid=g9b,lcf,bjl\">Hair Accessory</a> <a class=\"link\" href=\"/hair-care/pr?sid=g9b,lcf,qqm\">Hair Care</a> <a class=\"link\" href=\"/makeup/pr?sid=g9b,ffi\">Makeup</a> <a class=\"link\" href=\"/face-makeup/pr?sid=g9b,ffi,dzu\">Face Makeup</a> <a class=\"link\" href=\"/lips/pr?sid=g9b,ffi,tv5\">Lips</a> <a class=\"link\" href=\"/makeup-kits-combo/pr?sid=g9b,ffi,3dd\">Makeup Kits & Combo</a> <a class=\"link\" href=\"/eye-makeup/pr?sid=g9b,ffi,ttr\">Eye Makeup</a> <a class=\"link\" href=\"/makeup-accessory/pr?sid=g9b,ffi,ssf\">Makeup Accessory</a> <a class=\"link\" href=\"/nails/pr?sid=g9b,ffi,bhh\">Nails</a> <a class=\"link\" href=\"/bath-shower/pr?sid=g9b,5nz\">Bath & Shower</a> <a class=\"link\" href=\"/bath-accessory/pr?sid=g9b,5nz,yic\">Bath Accessory</a> <a class=\"link\" href=\"/bath-essentials/pr?sid=g9b,5nz,b1b\">Bath Essentials</a> <a class=\"link\" href=\"/body-face-skin-care/pr?sid=g9b,ema\">Body & Face Skin Care</a> <a class=\"link\" href=\"/body-and-face-accessory/pr?sid=g9b,ema,yfh\">Body and Face Accessory</a> <a class=\"link\" href=\"/hand-foot-care/pr?sid=g9b,ema,rhm\">Hand & Foot Care</a> <a class=\"link\" href=\"/body-and-face-care/pr?sid=g9b,ema,5la\">Body and Face Care</a> <a class=\"link\" href=\"/eye-care/pr?sid=g9b,ema,me0\">Eye Care</a> <a class=\"link\" href=\"/fragrances/pr?sid=g9b,0yh\">Fragrances</a> <a class=\"link\" href=\"/fragrance-combo/pr?sid=g9b,0yh,2ke\">Fragrance Combo</a> <a class=\"link\" href=\"/body-mist/pr?sid=g9b,0yh,aum\">Body Mist</a> <a class=\"link\" href=\"/deodorants/pr?sid=g9b,0yh,vp1\">Deodorants</a> <a class=\"link\" href=\"/attar/pr?sid=g9b,0yh,22f\">Attar</a> <a class=\"link\" href=\"/perfume/pr?sid=g9b,0yh,jhz\">Perfume</a> <a class=\"link\" href=\"/womens-personal-hygiene/pr?sid=g9b,iph\">Women's Personal Hygiene</a> <a class=\"link\" href=\"/intimate-care/pr?sid=g9b,iph,p78\">Intimate Care</a> <a class=\"link\" href=\"/sanitary-pad/pr?sid=g9b,iph,jth\">Sanitary Pad</a> <a class=\"link\" href=\"/menstrual-cup/pr?sid=g9b,iph,flg\">Menstrual Cup</a> <a class=\"link\" href=\"/tampons/pr?sid=g9b,iph,dle\">Tampons</a> <a class=\"link\" href=\"/pantyliner/pr?sid=g9b,iph,oag\">Pantyliner</a> <a class=\"link\" href=\"/female-urinating-device/pr?sid=g9b,iph,af6\">Female Urinating Device</a> <a class=\"link\" href=\"/womens-hygiene-combo/pr?sid=g9b,iph,kkk\">Women's Hygiene Combo</a> <a class=\"link\" href=\"/oral-care/pr?sid=g9b,cey\">Oral Care</a> <a class=\"link\" href=\"/dental-floss/pr?sid=g9b,cey,ddz\">Dental Floss</a> <a class=\"link\" href=\"/teeth-whitening/pr?sid=g9b,cey,3ky\">Teeth Whitening</a> <a class=\"link\" href=\"/toothbrush/pr?sid=g9b,cey,prx\">Toothbrush</a> <a class=\"link\" href=\"/toothbrush-sanitizer/pr?sid=g9b,cey,vuf\">Toothbrush Sanitizer</a> <a class=\"link\" href=\"/tongue-cleaner/pr?sid=g9b,cey,no7\">Tongue Cleaner</a> <a class=\"link\" href=\"/oral-care-combo/pr?sid=g9b,cey,rwt\">Oral Care Combo</a> <a class=\"link\" href=\"/toothpaste/pr?sid=g9b,cey,7ym\">Toothpaste</a> <a class=\"link\" href=\"/mouthwash/pr?sid=g9b,cey,ufa\">Mouthwash</a> <a class=\"link\" href=\"/toothpick/pr?sid=g9b,cey,qrr\">Toothpick</a> <a class=\"link\" href=\"/toothbrush-case/pr?sid=g9b,cey,imo\">Toothbrush Case</a> <a class=\"link\" href=\"/water-flosser/pr?sid=g9b,cey,5br\">Water Flosser</a> <a class=\"link\" href=\"/teeth-wipe/pr?sid=g9b,cey,e7z\">Teeth Wipe</a> <a class=\"link\" href=\"/breath-freshener/pr?sid=g9b,cey,m59\">Breath Freshener</a> </div><h2><a href=\"/mobiles-accessories/pr?sid=tyy\">Mobiles &amp; Accessories</a></h2><div><a class=\"link\" href=\"/power-bank-skins/pr?sid=tyy,hwl\">Power Bank Skins</a> <a class=\"link\" href=\"/mobiles/pr?sid=tyy,4io\">Mobiles</a> <a class=\"link\" href=\"/tablets/pr?sid=tyy,hry\">Tablets</a> <a class=\"link\" href=\"/tablets-with-call-facility/pr?sid=tyy,hry,adj\">Tablets with Call Facility</a> <a class=\"link\" href=\"/tablets-without-call-facility/pr?sid=tyy,hry,jut\">Tablets without Call Facility</a> <a class=\"link\" href=\"/mobile-accessories/pr?sid=tyy,4mr\">Mobile Accessories</a> <a class=\"link\" href=\"/mobile-camera-lens-protectors/pr?sid=tyy,4mr,mtg\">Mobile Camera Lens Protectors</a> <a class=\"link\" href=\"/mobile-accessories/cases-and-covers/pr?sid=tyy,4mr,q2u\">Cases & Covers</a> <a class=\"link\" href=\"/power-banks/pr?sid=tyy,4mr,fu6\">Power Banks</a> <a class=\"link\" href=\"/headphones/pr?sid=tyy,4mr,fp0\">Headphones</a> <a class=\"link\" href=\"/memory-cards-readers/pr?sid=tyy,4mr,zzf\">Memory Cards & Readers</a> <a class=\"link\" href=\"/smart-keys/pr?sid=tyy,4mr,ofc\">Smart Keys</a> <a class=\"link\" href=\"/mobile-holders/pr?sid=tyy,4mr,vnf\">Mobile Holders</a> <a class=\"link\" href=\"/mobile-sim-sd-card-trays/pr?sid=tyy,4mr,3mc\">Mobile Sim & SD Card Trays</a> <a class=\"link\" href=\"/mobile-flashes/pr?sid=tyy,4mr,kcr\">Mobile Flashes</a> <a class=\"link\" href=\"/mods/pr?sid=tyy,4mr,7ot\">Mods</a> <a class=\"link\" href=\"/mobile-body-panels/pr?sid=tyy,4mr,ukk\">Mobile Body Panels</a> <a class=\"link\" href=\"/bluetooth-shutter-remotes/pr?sid=tyy,4mr,msu\">Bluetooth Shutter Remotes</a> <a class=\"link\" href=\"/mobile-battery/pr?sid=tyy,4mr,ift\">Mobile Battery</a> <a class=\"link\" href=\"/photo-printers/pr?sid=tyy,4mr,j9d\">Photo Printers</a> <a class=\"link\" href=\"/satellite-phone-converters/pr?sid=tyy,4mr,z40\">Satellite Phone Converters</a> <a class=\"link\" href=\"/screen-expander-for-phones/pr?sid=tyy,4mr,r6z\">Screen Expander For Phones</a> <a class=\"link\" href=\"/mobile-pouches/pr?sid=tyy,4mr,xxl\">Mobile Pouches</a> <a class=\"link\" href=\"/mobile-portable-projectors/pr?sid=tyy,4mr,skj\">Mobile Portable Projectors</a> <a class=\"link\" href=\"/mobile-spare-parts/pr?sid=tyy,4mr,52s\">Mobile Spare Parts</a> <a class=\"link\" href=\"/earphone-cable-organizers/pr?sid=tyy,4mr,0ks\">Earphone Cable Organizers</a> <a class=\"link\" href=\"/on-the-go-pen-drives/pr?sid=tyy,4mr,k9h\">On the Go Pen Drives</a> <a class=\"link\" href=\"/mobile-cables/pr?sid=tyy,4mr,3nu\">Mobile Cables</a> <a class=\"link\" href=\"/bluetooth-headphones-with-mic/pr?sid=tyy,4mr,qtx\">Bluetooth Headphones (With Mic)</a> <a class=\"link\" href=\"/mobile-accessories/mobile-enhancements/pr?sid=tyy,4mr,qph\">Mobile Enhancements</a> <a class=\"link\" href=\"/anti-radiation-stickers-chips/pr?sid=tyy,4mr,m12\">Anti Radiation Stickers & Chips</a> <a class=\"link\" href=\"/charging-pads/pr?sid=tyy,4mr,f04\">Charging Pads</a> <a class=\"link\" href=\"/mobile-accessories/headsets/pr?sid=tyy,4mr,yhg\">Headphones (With Mic)</a> <a class=\"link\" href=\"/styling-maintenance/pr?sid=tyy,4mr,mr4\">Styling & Maintenance</a> <a class=\"link\" href=\"/selfie-sticks/pr?sid=tyy,4mr,nkm\">Selfie Sticks</a> <a class=\"link\" href=\"/power-bank-pouches/pr?sid=tyy,4mr,u99\">Power Bank Pouches</a> <a class=\"link\" href=\"/sim-adapters/pr?sid=tyy,4mr,nsd\">SIM Adapters</a> <a class=\"link\" href=\"/security-software/pr?sid=tyy,4mr,1ud\">Security Software</a> <a class=\"link\" href=\"/headphone-amplifiers/pr?sid=tyy,4mr,xpx\">Headphone Amplifiers</a> <a class=\"link\" href=\"/mobile-accessories/stylus/pr?sid=tyy,4mr,637\">Stylus Pens</a> <a class=\"link\" href=\"/sim-cutters/pr?sid=tyy,4mr,xrj\">Sim Cutters</a> <a class=\"link\" href=\"/headphone-splitters/pr?sid=tyy,4mr,d4e\">Headphone Splitters</a> <a class=\"link\" href=\"/anti-dust-plugs/pr?sid=tyy,4mr,kqh\">Anti Dust Plugs</a> <a class=\"link\" href=\"/car-accessories/pr?sid=tyy,4mr,7ce\">Car Accessories</a> <a class=\"link\" href=\"/batteries/pr?sid=tyy,4mr,w65\">Batteries</a> <a class=\"link\" href=\"/speakers/pr?sid=tyy,4mr,5ev\">Speakers</a> <a class=\"link\" href=\"/mobile-accessories/screen-guards/pr?sid=tyy,4mr,lrv\">Screen Guards</a> <a class=\"link\" href=\"/screen-protector-applicator/pr?sid=tyy,4mr,vwo\">Screen Protector Applicator</a> <a class=\"link\" href=\"/mobile-displays/pr?sid=tyy,4mr,apl\">Mobile Displays</a> <a class=\"link\" href=\"/headphone-pouches-cases/pr?sid=tyy,4mr,jqb\">Headphone Pouches & Cases</a> <a class=\"link\" href=\"/extended-warranty/pr?sid=tyy,4mr,h1x\">Extended Warranty</a> <a class=\"link\" href=\"/mobile-phone-lens/pr?sid=tyy,4mr,kx1\">Mobile Phone Lens</a> <a class=\"link\" href=\"/solar-mobile-chargers/pr?sid=tyy,4mr,ohx\">Solar Mobile Chargers</a> <a class=\"link\" href=\"/smart-gloves/pr?sid=tyy,4mr,rab\">Smart Gloves</a> <a class=\"link\" href=\"/bluetooth-hats/pr?sid=tyy,4mr,syj\">Bluetooth Hats</a> <a class=\"link\" href=\"/radiation-monitors/pr?sid=tyy,4mr,1n6\">Radiation Monitors</a> <a class=\"link\" href=\"/charging-pad-receivers/pr?sid=tyy,4mr,a3i\">Charging Pad Receivers</a> <a class=\"link\" href=\"/headphone-stands/pr?sid=tyy,4mr,ya9\">Headphone Stands</a> <a class=\"link\" href=\"/headphone-cushions-earbuds/pr?sid=tyy,4mr,bmu\">Headphone Cushions & Earbuds</a> <a class=\"link\" href=\"/cable-drop-clips/pr?sid=tyy,4mr,xel\">Cable Drop Clips</a> <a class=\"link\" href=\"/smart-watches/pr?sid=tyy,4mr,buh\">Smart Watches</a> <a class=\"link\" href=\"/mobile-chargers/pr?sid=tyy,4mr,tp2\">Mobile Chargers</a> <a class=\"link\" href=\"/otg-adapters/pr?sid=tyy,4mr,zmd\">OTG Adapters</a> <a class=\"link\" href=\"/tablet-accessories/pr?sid=tyy,jgu\">Tablet Accessories</a> <a class=\"link\" href=\"/headphones/pr?sid=tyy,jgu,5gu\">Headphones</a> <a class=\"link\" href=\"/car-accessories/pr?sid=tyy,jgu,3nj\">Car Accessories</a> <a class=\"link\" href=\"/chargers/pr?sid=tyy,jgu,nwb\">Chargers</a> <a class=\"link\" href=\"/cases-covers/pr?sid=tyy,jgu,47g\">Cases & Covers</a> <a class=\"link\" href=\"/security-software/pr?sid=tyy,jgu,d3d\">Security Software</a> <a class=\"link\" href=\"/keyboards/pr?sid=tyy,jgu,77o\">Keyboards</a> <a class=\"link\" href=\"/memory-cards-readers/pr?sid=tyy,jgu,l7d\">Memory Cards & Readers</a> <a class=\"link\" href=\"/headsets-mic/pr?sid=tyy,jgu,pa0\">Headsets (Mic)</a> <a class=\"link\" href=\"/batteries/pr?sid=tyy,jgu,yv7\">Batteries</a> <a class=\"link\" href=\"/bluetooth-headsets-mic/pr?sid=tyy,jgu,wka\">Bluetooth Headsets (Mic)</a> <a class=\"link\" href=\"/stylus-pens/pr?sid=tyy,jgu,k0m\">Stylus Pens</a> <a class=\"link\" href=\"/extended-warranty/pr?sid=tyy,jgu,od1\">Extended Warranty</a> <a class=\"link\" href=\"/pen-drives/pr?sid=tyy,jgu,c7i\">Pen Drives</a> <a class=\"link\" href=\"/keyboards/pr?sid=tyy,jgu,kbs\">Keyboards</a> <a class=\"link\" href=\"/cables/pr?sid=tyy,jgu,ype\">Cables</a> <a class=\"link\" href=\"/tablet-accessories/screen-guards/pr?sid=tyy,jgu,l8r\">Screen Protectors</a> <a class=\"link\" href=\"/speakers/pr?sid=tyy,jgu,o4j\">Speakers</a> <a class=\"link\" href=\"/landline-phones/pr?sid=tyy,n0e\">Landline Phones</a> </div><h2><a href=\"/home-improvement/pr?sid=h1m\">Home Improvement</a></h2><div><a class=\"link\" href=\"/lawn-and-gardening/pr?sid=h1m,um7\">Lawn and Gardening</a> <a class=\"link\" href=\"/watering-equipments/pr?sid=h1m,um7,i06\">Watering Equipments</a> <a class=\"link\" href=\"/gardening-tools/pr?sid=h1m,um7,yse\">Gardening Tools</a> <a class=\"link\" href=\"/plants-and-planters/pr?sid=h1m,um7,sd1\">Plants and Planters</a> <a class=\"link\" href=\"/garden-decor/pr?sid=h1m,um7,0mc\">Garden Decor</a> <a class=\"link\" href=\"/tools-and-measuring-equipment/pr?sid=h1m,hww\">Tools and Measuring Equipment</a> <a class=\"link\" href=\"/hand-tools/pr?sid=h1m,hww,fgi\">Hand Tools</a> <a class=\"link\" href=\"/measuring-and-layout-tools/pr?sid=h1m,hww,5gd\">Measuring and Layout Tools</a> <a class=\"link\" href=\"/center-punch-tool/pr?sid=h1m,hww,phm\">Center Punch Tool</a> <a class=\"link\" href=\"/power-tools/pr?sid=h1m,hww,slm\">Power Tools</a> <a class=\"link\" href=\"/tool-accessories-and-supplies/pr?sid=h1m,hww,8d1\">Tool Accessories and Supplies</a> <a class=\"link\" href=\"/testers/pr?sid=h1m,hww,cmc\">Testers</a> <a class=\"link\" href=\"/home-utilities-and-organizers/pr?sid=h1m,iee\">Home Utilities and Organizers</a> <a class=\"link\" href=\"/chimney-pipe-cover/pr?sid=h1m,iee,9yj\">Chimney Pipe Cover</a> <a class=\"link\" href=\"/umbrellas/pr?sid=h1m,iee,kjp\">Umbrellas</a> <a class=\"link\" href=\"/appliances-filters-and-cartridges/pr?sid=h1m,iee,kjm\">Appliances Filters and Cartridges</a> <a class=\"link\" href=\"/trolleys-and-stands/pr?sid=h1m,iee,xzu\">Trolleys and Stands</a> <a class=\"link\" href=\"/home-storage-and-organization/pr?sid=h1m,iee,zom\">Home Storage and Organization</a> <a class=\"link\" href=\"/pest-control-devices/pr?sid=h1m,iee,ctp\">Pest Control Devices</a> <a class=\"link\" href=\"/laundry/pr?sid=h1m,iee,3a7\">Laundry</a> <a class=\"link\" href=\"/home-safety/pr?sid=h1m,uls\">Home Safety</a> <a class=\"link\" href=\"/locks-and-security/pr?sid=h1m,uls,78l\">Locks and Security</a> <a class=\"link\" href=\"/sensors-and-alarms/pr?sid=h1m,uls,pdx\">Sensors and Alarms</a> <a class=\"link\" href=\"/fire-and-personal-safety/pr?sid=h1m,uls,ie0\">Fire and Personal Safety</a> </div><h2><a href=\"/computers/pr?sid=6bo\">Computers</a></h2><div><a class=\"link\" href=\"/laptops/pr?sid=6bo,b5g\">Laptops</a> <a class=\"link\" href=\"/laptop-accessories/pr?sid=6bo,ai3\">Laptop Accessories</a> <a class=\"link\" href=\"/replacement-screens/pr?sid=6bo,ai3,ac1\">Replacement Screens</a> <a class=\"link\" href=\"/memory-card-reader/pr?sid=6bo,ai3,ban\">Memory Card Reader</a> <a class=\"link\" href=\"/hard-disk-skins/pr?sid=6bo,ai3,0bn\">Hard Disk Skins</a> <a class=\"link\" href=\"/anti-dust-plugs/pr?sid=6bo,ai3,ky9\">Anti Dust Plugs</a> <a class=\"link\" href=\"/power-banks/pr?sid=6bo,ai3,7m7\">Power Banks</a> <a class=\"link\" href=\"/mouse/pr?sid=6bo,ai3,2ay\">Mouse</a> <a class=\"link\" href=\"/number-pads/pr?sid=6bo,ai3,pvy\">Number Pads</a> <a class=\"link\" href=\"/projector-mounts/pr?sid=6bo,ai3,e06\">Projector Mounts</a> <a class=\"link\" href=\"/otg-adapters/pr?sid=6bo,ai3,dgk\">OTG Adapters</a> <a class=\"link\" href=\"/wearable-mice/pr?sid=6bo,ai3,bwk\">Wearable Mice</a> <a class=\"link\" href=\"/printer-covers/pr?sid=6bo,ai3,bjm\">Printer Covers</a> <a class=\"link\" href=\"/ups/pr?sid=6bo,ai3,pi1\">UPS</a> <a class=\"link\" href=\"/keyboard-replacement-keys/pr?sid=6bo,ai3,adl\">Keyboard Replacement Keys</a> <a class=\"link\" href=\"/monitor-tv-covers/pr?sid=6bo,ai3,7h1\">Monitor & TV Covers</a> <a class=\"link\" href=\"/heat-sinks/pr?sid=6bo,ai3,nap\">Heat Sinks</a> <a class=\"link\" href=\"/laptop-bag-covers/pr?sid=6bo,ai3,nye\">Laptop Bag Covers</a> <a class=\"link\" href=\"/laptop-displays/pr?sid=6bo,ai3,wdv\">Laptop Displays</a> <a class=\"link\" href=\"/secure-access-keys/pr?sid=6bo,ai3,zjg\">Secure Access Keys</a> <a class=\"link\" href=\"/internal-sound-cards/pr?sid=6bo,ai3,01m\">Internal Sound Cards</a> <a class=\"link\" href=\"/stands/pr?sid=6bo,ai3,0rp\">Stands</a> <a class=\"link\" href=\"/hinges/pr?sid=6bo,ai3,63y\">Hinges</a> <a class=\"link\" href=\"/projector-screens/pr?sid=6bo,ai3,1vp\">Projector Screens</a> <a class=\"link\" href=\"/laptop-skins-decals/pr?sid=6bo,ai3,zvm\">Laptop Skins & Decals</a> <a class=\"link\" href=\"/laptop-adapters/pr?sid=6bo,ai3,8p1\">Laptop Adapters</a> <a class=\"link\" href=\"/batteries/pr?sid=6bo,ai3,w65\">Batteries</a> <a class=\"link\" href=\"/cooling-padscooling-stands/pr?sid=6bo,ai3,59n\">Cooling Pads/Cooling Stands</a> <a class=\"link\" href=\"/laptop-bags/pr?sid=6bo,ai3,qq9\">Laptop Bags</a> <a class=\"link\" href=\"/keyboards/pr?sid=6bo,ai3,3oe\">Keyboards</a> <a class=\"link\" href=\"/pen-drives/pr?sid=6bo,ai3,uar\">Pen Drives</a> <a class=\"link\" href=\"/hdd/pr?sid=6bo,ai3,nl6\">HDD</a> <a class=\"link\" href=\"/hard-drive-enclosures/pr?sid=6bo,ai3,f23\">Hard Drive Enclosures</a> <a class=\"link\" href=\"/presentation-remotes/pr?sid=6bo,ai3,4hy\">Presentation Remotes</a> <a class=\"link\" href=\"/screen-guards/pr?sid=6bo,ai3,csg\">Screen Guards</a> <a class=\"link\" href=\"/usb-gadgets/pr?sid=6bo,ai3,0xm\">USB Gadgets</a> <a class=\"link\" href=\"/extended-warranty/pr?sid=6bo,ai3,2hy\">Extended Warranty</a> <a class=\"link\" href=\"/hard-disk-cases/pr?sid=6bo,ai3,68d\">Hard Disk Cases</a> <a class=\"link\" href=\"/memory-cards/pr?sid=6bo,ai3,7y9\">Memory Cards</a> <a class=\"link\" href=\"/laser-pointers/pr?sid=6bo,ai3,cn2\">Laser Pointers</a> <a class=\"link\" href=\"/headphones/pr?sid=6bo,ai3,fp0\">Headphones</a> <a class=\"link\" href=\"/tv-tuners/pr?sid=6bo,ai3,ii9\">TV Tuners</a> <a class=\"link\" href=\"/touchpads/pr?sid=6bo,ai3,p1m\">Touchpads</a> <a class=\"link\" href=\"/docking-stations/pr?sid=6bo,ai3,pqc\">Docking Stations</a> <a class=\"link\" href=\"/keyboard-skins/pr?sid=6bo,ai3,qh2\">Keyboard Skins</a> <a class=\"link\" href=\"/webcams/pr?sid=6bo,ai3,r3e\">Webcams</a> <a class=\"link\" href=\"/mouse-pads/pr?sid=6bo,ai3,siy\">Mouse Pads</a> <a class=\"link\" href=\"/digital-pens/pr?sid=6bo,ai3,sjn\">Digital Pens</a> <a class=\"link\" href=\"/blank-media/pr?sid=6bo,ai3,x3f\">Blank Media</a> <a class=\"link\" href=\"/security-locks/pr?sid=6bo,ai3,xk1\">Security Locks</a> <a class=\"link\" href=\"/trackballs/pr?sid=6bo,ai3,xsj\">Trackballs</a> <a class=\"link\" href=\"/mobile-accessories/headsets/pr?sid=6bo,ai3,yhg\">Headphones (With Mic)</a> <a class=\"link\" href=\"/cleaning-kits/pr?sid=6bo,ai3,zy6\">Cleaning Kits</a> <a class=\"link\" href=\"/wrist-rests/pr?sid=6bo,ai3,7nu\">Wrist Rests</a> <a class=\"link\" href=\"/external-dvd-writers/pr?sid=6bo,ai3,w44\">External DVD Writers</a> <a class=\"link\" href=\"/computer-accessories-combos/pr?sid=6bo,ai3,c1j\">Computer Accessories Combos</a> <a class=\"link\" href=\"/network-components/pr?sid=6bo,70k\">Network Components</a> <a class=\"link\" href=\"/access-points/pr?sid=6bo,70k,i5e\">Access Points</a> <a class=\"link\" href=\"/internal-modems/pr?sid=6bo,70k,wvi\">Internal Modems</a> <a class=\"link\" href=\"/lan-adapters/pr?sid=6bo,70k,4j4\">LAN Adapters</a> <a class=\"link\" href=\"/network-interface-cards/pr?sid=6bo,70k,p4a\">Network Interface Cards</a> <a class=\"link\" href=\"/router-ups/pr?sid=6bo,70k,lpq\">Router UPS</a> <a class=\"link\" href=\"/antenna-amplifiers/pr?sid=6bo,70k,7r9\">Antenna Amplifiers</a> <a class=\"link\" href=\"/router-antennas-boosters/pr?sid=6bo,70k,hy1\">Router Antennas & Boosters</a> <a class=\"link\" href=\"/network-attached-storage/pr?sid=6bo,70k,3g1\">Network Attached Storage</a> <a class=\"link\" href=\"/switches/pr?sid=6bo,70k,es5\">Switches</a> <a class=\"link\" href=\"/data-cards/pr?sid=6bo,70k,o47\">Data cards</a> <a class=\"link\" href=\"/network-servers/pr?sid=6bo,70k,p1r\">Network Servers</a> <a class=\"link\" href=\"/wireless-usb-adapters/pr?sid=6bo,70k,85j\">Wireless USB Adapters</a> <a class=\"link\" href=\"/cables/pr?sid=6bo,70k,nj6\">Cables</a> <a class=\"link\" href=\"/routers/pr?sid=6bo,70k,2a2\">Routers</a> <a class=\"link\" href=\"/network-attached-storage/pr?sid=6bo,70k,9gq\">Network Attached Storage</a> <a class=\"link\" href=\"/voip-adapters/pr?sid=6bo,70k,hbh\">VOIP Adapters</a> <a class=\"link\" href=\"/computer-peripherals/pr?sid=6bo,tia\">Computer Peripherals</a> <a class=\"link\" href=\"/workstations/pr?sid=6bo,tia,zve\">Workstations</a> <a class=\"link\" href=\"/portable-projectors/pr?sid=6bo,tia,fju\">Portable Projectors</a> <a class=\"link\" href=\"/portable-scanners/pr?sid=6bo,tia,fxa\">Portable Scanners</a> <a class=\"link\" href=\"/cpu/pr?sid=6bo,tia,97r\">CPU</a> <a class=\"link\" href=\"/printers-inks/pr?sid=6bo,tia,ffn\">Printers & Inks</a> <a class=\"link\" href=\"/mini-pc/pr?sid=6bo,tia,w4m\">Mini PC</a> <a class=\"link\" href=\"/projectors/pr?sid=6bo,tia,1hx\">Projectors</a> <a class=\"link\" href=\"/scanners/pr?sid=6bo,tia,b3v\">Scanners</a> <a class=\"link\" href=\"/audios/pr?sid=6bo,tia,pbz\">Audios</a> <a class=\"link\" href=\"/others/pr?sid=6bo,tia,hlo\">Others</a> <a class=\"link\" href=\"/software/pr?sid=6bo,5hp\">Software</a> <a class=\"link\" href=\"/kids-education/pr?sid=6bo,5hp,qmk\">Kids Education</a> <a class=\"link\" href=\"/utilities/pr?sid=6bo,5hp,992\">Utilities</a> <a class=\"link\" href=\"/computer-based-training/pr?sid=6bo,5hp,06r\">Computer Based Training</a> <a class=\"link\" href=\"/language-learning/pr?sid=6bo,5hp,lll\">Language Learning</a> <a class=\"link\" href=\"/horoscope/pr?sid=6bo,5hp,hrs\">Horoscope</a> <a class=\"link\" href=\"/learn-software/pr?sid=6bo,5hp,45g\">Learn Software</a> <a class=\"link\" href=\"/business-productivity/pr?sid=6bo,5hp,upm\">Business Productivity</a> <a class=\"link\" href=\"/hobbies/pr?sid=6bo,5hp,iqd\">Hobbies</a> <a class=\"link\" href=\"/learn-languages/pr?sid=6bo,5hp,46l\">Learn Languages</a> <a class=\"link\" href=\"/multimedia/pr?sid=6bo,5hp,k45\">Multimedia</a> <a class=\"link\" href=\"/office-tools/pr?sid=6bo,5hp,cqk\">Office Tools</a> <a class=\"link\" href=\"/learn-programming/pr?sid=6bo,5hp,sbb\">Learn Programming</a> <a class=\"link\" href=\"/reference-software/pr?sid=6bo,5hp,em6\">Reference Software</a> <a class=\"link\" href=\"/operating-system/pr?sid=6bo,5hp,w63\">Operating System</a> <a class=\"link\" href=\"/educational-media/pr?sid=6bo,5hp,vxa\">Educational Media</a> <a class=\"link\" href=\"/security-software/pr?sid=6bo,5hp,lwb\">Security Software</a> <a class=\"link\" href=\"/computer-components/pr?sid=6bo,g0i\">Computer Components</a> <a class=\"link\" href=\"/monitors/pr?sid=6bo,g0i,9no\">Monitors</a> <a class=\"link\" href=\"/kvm-consoles/pr?sid=6bo,g0i,jnh\">KVM Consoles</a> <a class=\"link\" href=\"/coolers/pr?sid=6bo,g0i,xcm\">Coolers</a> <a class=\"link\" href=\"/thermal-pastes/pr?sid=6bo,g0i,fyv\">Thermal Pastes</a> <a class=\"link\" href=\"/internal-hard-drives/pr?sid=6bo,g0i,no8\">Internal Hard Drives</a> <a class=\"link\" href=\"/power-supply-units/pr?sid=6bo,g0i,qbk\">Power Supply Units</a> <a class=\"link\" href=\"/tv-tuners/pr?sid=6bo,g0i,kbe\">TV Tuners</a> <a class=\"link\" href=\"/cabinets/pr?sid=6bo,g0i,1fz\">Cabinets</a> <a class=\"link\" href=\"/graphic-cards/pr?sid=6bo,g0i,6sn\">Graphic Cards</a> <a class=\"link\" href=\"/internal-sound-cards/pr?sid=6bo,g0i,01m\">Internal Sound Cards</a> <a class=\"link\" href=\"/coolers/pr?sid=6bo,g0i,kh6\">Coolers</a> <a class=\"link\" href=\"/processors/pr?sid=6bo,g0i,17w\">Processors</a> <a class=\"link\" href=\"/rams/pr?sid=6bo,g0i,s5u\">RAMs</a> <a class=\"link\" href=\"/thin-clients/pr?sid=6bo,g0i,2g2\">Thin Clients</a> <a class=\"link\" href=\"/mini-pc/pr?sid=6bo,g0i,w4m\">Mini PC</a> <a class=\"link\" href=\"/motherboards/pr?sid=6bo,g0i,y7i\">Motherboards</a> <a class=\"link\" href=\"/internal-optical-drives/pr?sid=6bo,g0i,b7w\">Internal Optical Drives</a> <a class=\"link\" href=\"/combo-motherboards/pr?sid=6bo,g0i,ei5\">Combo Motherboards</a> <a class=\"link\" href=\"/desktop-pcs/pr?sid=6bo,nl4\">Desktop PCs</a> <a class=\"link\" href=\"/all-in-one-pcs/pr?sid=6bo,nl4,igk\">All In One PCs</a> <a class=\"link\" href=\"/mini-pcs/pr?sid=6bo,nl4,okr\">Mini PCs</a> <a class=\"link\" href=\"/tower-pcs/pr?sid=6bo,nl4,dze\">Tower PCs</a> <a class=\"link\" href=\"/ereaders/pr?sid=6bo,nal\">E-readers</a> <a class=\"link\" href=\"/supplies/pr?sid=6bo,ejb\">Supplies</a> <a class=\"link\" href=\"/toners/pr?sid=6bo,ejb,6xf\">Toners</a> <a class=\"link\" href=\"/storage/pr?sid=6bo,jdy\">Storage</a> <a class=\"link\" href=\"/hdd/pr?sid=6bo,jdy,nl6\">HDD</a> <a class=\"link\" href=\"/memory-cards/pr?sid=6bo,jdy,tby\">Memory Cards</a> <a class=\"link\" href=\"/pen-drives/pr?sid=6bo,jdy,uar\">Pen Drives</a> <a class=\"link\" href=\"/ssd/pr?sid=6bo,jdy,dus\">SSD</a> <a class=\"link\" href=\"/audio-players/pr?sid=6bo,ord\">Audio Players</a> <a class=\"link\" href=\"/audio-player-accessories/pr?sid=6bo,ord,713\">Audio Player Accessories</a> <a class=\"link\" href=\"/mp4-video-mp3-players/pr?sid=6bo,ord,lhy\">MP4 / Video MP3 Players</a> <a class=\"link\" href=\"/mp3-players/pr?sid=6bo,ord,h2k\">MP3 Players</a> <a class=\"link\" href=\"/ipods/pr?sid=6bo,ord,rrr\">iPods</a> <a class=\"link\" href=\"/home-audio/pr?sid=6bo,ord,rlj\">Home Audio</a> <a class=\"link\" href=\"/video-players/pr?sid=6bo,xdz\">Video Players</a> <a class=\"link\" href=\"/tv-video-accessories/pr?sid=6bo,ul6\">TV & Video Accessories</a> <a class=\"link\" href=\"/3d-video-glasses/pr?sid=6bo,ul6,52z\">3D Video Glasses</a> <a class=\"link\" href=\"/selector-smart-box/pr?sid=6bo,ul6,fcz\">Selector & Smart Box</a> <a class=\"link\" href=\"/voltage-stabilizers/pr?sid=6bo,ul6,v9r\">Voltage Stabilizers</a> <a class=\"link\" href=\"/media-players/pr?sid=6bo,ul6,cel\">Media Players</a> <a class=\"link\" href=\"/mobile-cables/pr?sid=6bo,ul6,3nu\">Mobile Cables</a> <a class=\"link\" href=\"/slingbox/pr?sid=6bo,ul6,u44\">Slingbox</a> <a class=\"link\" href=\"/remote-controllers/pr?sid=6bo,ul6,brg\">Remote Controllers</a> </div><h2><a href=\"/cameras-accessories/pr?sid=jek\">Cameras &amp; Accessories</a></h2><div><a class=\"link\" href=\"/cameras/pr?sid=jek,p31\">Cameras</a> <a class=\"link\" href=\"/drones/pr?sid=jek,p31,jnp\">Drones</a> <a class=\"link\" href=\"/point-and-shoot/pr?sid=jek,p31,nxa\">Point and Shoot</a> <a class=\"link\" href=\"/dslr-mirrorless/pr?sid=jek,p31,0hs\">DSLR & Mirrorless</a> <a class=\"link\" href=\"/ip-cameras/pr?sid=jek,p31,ev1\">IP Cameras</a> <a class=\"link\" href=\"/instant-cameras/pr?sid=jek,p31,nvx\">Instant Cameras</a> <a class=\"link\" href=\"/3d-cameras/pr?sid=jek,p31,9xs\">3D Cameras</a> <a class=\"link\" href=\"/sports-action/pr?sid=jek,p31,s3q\">Sports & Action</a> <a class=\"link\" href=\"/instant-cameras/pr?sid=jek,p31,ysu\">Instant Cameras</a> <a class=\"link\" href=\"/bird-cameras/pr?sid=jek,p31,nff\">Bird Cameras</a> <a class=\"link\" href=\"/point-and-shoot/pr?sid=jek,p31,die\">Point and Shoot</a> <a class=\"link\" href=\"/advanced-point-shoot/pr?sid=jek,p31,9c0\">Advanced Point & Shoot</a> <a class=\"link\" href=\"/camcorders/pr?sid=jek,p31,utz\">Camcorders</a> <a class=\"link\" href=\"/dslr-mirrorless/pr?sid=jek,p31,trv\">DSLR & Mirrorless</a> <a class=\"link\" href=\"/camcorders/pr?sid=jek,p31,enu\">Camcorders</a> <a class=\"link\" href=\"/camera-accessories/pr?sid=jek,6l2\">Camera Accessories</a> <a class=\"link\" href=\"/selfie-sticks-monopods/pr?sid=jek,6l2,kyl\">Selfie Sticks & Monopods</a> <a class=\"link\" href=\"/camera-battery-grips/pr?sid=jek,6l2,gte\">Camera Battery Grips</a> <a class=\"link\" href=\"/camera-bags/pr?sid=jek,6l2,6ts\">Camera Bags</a> <a class=\"link\" href=\"/camera-lenses/pr?sid=jek,6l2,e9y\">Camera Lenses</a> <a class=\"link\" href=\"/camera-filters/pr?sid=jek,6l2,owv\">Camera Filters</a> <a class=\"link\" href=\"/binoculars-optics/pr?sid=jek,6l2,epu\">Binoculars & Optics</a> <a class=\"link\" href=\"/lens-cleaners/pr?sid=jek,6l2,ne8\">Lens Cleaners</a> <a class=\"link\" href=\"/camera-remote-controls/pr?sid=jek,6l2,cfu\">Camera Remote Controls</a> <a class=\"link\" href=\"/underwater-camera-housing/pr?sid=jek,6l2,y2l\">Underwater Camera Housing</a> <a class=\"link\" href=\"/studio-flash-lights/pr?sid=jek,6l2,p99\">Studio Flash Lights</a> <a class=\"link\" href=\"/photo-printer/pr?sid=jek,6l2,ne2\">Photo Printer</a> <a class=\"link\" href=\"/sync-terminal-adapters/pr?sid=jek,6l2,zzj\">Sync Terminal Adapters</a> <a class=\"link\" href=\"/binocular-gauges/pr?sid=jek,6l2,ctq\">Binocular Gauges</a> <a class=\"link\" href=\"/honeycomb-grids/pr?sid=jek,6l2,9f6\">Honeycomb Grids</a> <a class=\"link\" href=\"/lens-hoods/pr?sid=jek,6l2,2ux\">Lens Hoods</a> <a class=\"link\" href=\"/photo-papers/pr?sid=jek,6l2,pdo\">Photo Papers</a> <a class=\"link\" href=\"/photo-backdrop-clamps/pr?sid=jek,6l2,shb\">Photo Backdrop Clamps</a> <a class=\"link\" href=\"/camera-housings/pr?sid=jek,6l2,7nr\">Camera Housings</a> <a class=\"link\" href=\"/selfie-sticks/pr?sid=jek,6l2,u9z\">Selfie Sticks</a> <a class=\"link\" href=\"/photography-backdrops/pr?sid=jek,6l2,lzd\">Photography Backdrops</a> <a class=\"link\" href=\"/camera-microphones/pr?sid=jek,6l2,0un\">Camera Microphones</a> <a class=\"link\" href=\"/lighting-barn-doors/pr?sid=jek,6l2,qay\">Lighting Barn Doors</a> <a class=\"link\" href=\"/matte-box/pr?sid=jek,6l2,bw4\">Matte Box</a> <a class=\"link\" href=\"/photo-video-light-kits/pr?sid=jek,6l2,mmg\">Photo Video Light Kits</a> <a class=\"link\" href=\"/lens-cap-holders/pr?sid=jek,6l2,37s\">Lens Cap Holders</a> <a class=\"link\" href=\"/hidden-camera-detectors/pr?sid=jek,6l2,xzs\">Hidden Camera Detectors</a> <a class=\"link\" href=\"/light-stands/pr?sid=jek,6l2,r6a\">Light Stands</a> <a class=\"link\" href=\"/camera-battery/pr?sid=jek,6l2,dls\">Camera Battery</a> <a class=\"link\" href=\"/studio-flash-lights/pr?sid=jek,6l2,p2o\">Studio Flash Lights</a> <a class=\"link\" href=\"/speedring-adapters/pr?sid=jek,6l2,qxz\">Speedring Adapters</a> <a class=\"link\" href=\"/gimbals/pr?sid=jek,6l2,ykl\">Gimbals</a> <a class=\"link\" href=\"/collapsible-reflectors/pr?sid=jek,6l2,a4a\">Collapsible Reflectors</a> <a class=\"link\" href=\"/led-lights/pr?sid=jek,6l2,4bd\">LED Lights</a> <a class=\"link\" href=\"/lighting-equipment-cases/pr?sid=jek,6l2,d67\">Lighting Equipment Cases</a> <a class=\"link\" href=\"/flash-shoe-adapters/pr?sid=jek,6l2,034\">Flash Shoe Adapters</a> <a class=\"link\" href=\"/selfie-flash/pr?sid=jek,6l2,j7q\">Selfie Flash</a> <a class=\"link\" href=\"/eyecups/pr?sid=jek,6l2,9al\">Eyecups</a> <a class=\"link\" href=\"/reflector-umbrellas/pr?sid=jek,6l2,ubd\">Reflector Umbrellas</a> <a class=\"link\" href=\"/lens-caps/pr?sid=jek,6l2,nok\">Lens Caps</a> <a class=\"link\" href=\"/flashes/pr?sid=jek,6l2,mx9\">Flashes</a> <a class=\"link\" href=\"/telescopes/pr?sid=jek,6l2,2x7\">Telescopes</a> <a class=\"link\" href=\"/straps/pr?sid=jek,6l2,adu\">Straps</a> <a class=\"link\" href=\"/levelers/pr?sid=jek,6l2,31n\">Levelers</a> <a class=\"link\" href=\"/usb-cables-data-cables/pr?sid=jek,6l2,xkt\">USB Cables / Data Cables</a> <a class=\"link\" href=\"/hard-drives/pr?sid=jek,6l2,tqi\">Hard Drives</a> <a class=\"link\" href=\"/power-adapters/pr?sid=jek,6l2,ahl\">Power Adapters</a> <a class=\"link\" href=\"/cleaning-tapes/pr?sid=jek,6l2,7av\">Cleaning tapes</a> <a class=\"link\" href=\"/tripods/pr?sid=jek,6l2,ce6\">Tripods</a> <a class=\"link\" href=\"/pistol-grips/pr?sid=jek,6l2,dn9\">Pistol Grips</a> <a class=\"link\" href=\"/soft-lens-case/pr?sid=jek,6l2,qeb\">Soft Lens Case</a> <a class=\"link\" href=\"/photographer-vests/pr?sid=jek,6l2,1cq\">Photographer Vests</a> <a class=\"link\" href=\"/camera-mounts/pr?sid=jek,6l2,nlb\">Camera Mounts</a> <a class=\"link\" href=\"/stepping-rings/pr?sid=jek,6l2,jfa\">Stepping Rings</a> <a class=\"link\" href=\"/extension-tubes/pr?sid=jek,6l2,ym6\">Extension Tubes</a> <a class=\"link\" href=\"/camera-flash-brackets/pr?sid=jek,6l2,duj\">Camera Flash Brackets</a> <a class=\"link\" href=\"/diffusers/pr?sid=jek,6l2,2ik\">Diffusers</a> <a class=\"link\" href=\"/quick-release-plates/pr?sid=jek,6l2,7ee\">Quick Release Plates</a> <a class=\"link\" href=\"/battery-chargers/pr?sid=jek,6l2,krc\">Battery chargers</a> <a class=\"link\" href=\"/memory-cards-travel-case/pr?sid=jek,6l2,ek8\">Memory Cards Travel Case</a> <a class=\"link\" href=\"/screen-guards/pr?sid=jek,6l2,csg\">Screen Guards</a> <a class=\"link\" href=\"/tripods-monopod-tripod-ball-head/pr?sid=jek,6l2,vwd\">Tripods / Monopod / Tripod Ball Head</a> <a class=\"link\" href=\"/audio-adapter-for-videos/pr?sid=jek,6l2,f30\">Audio Adapter for Videos</a> <a class=\"link\" href=\"/grey-cards/pr?sid=jek,6l2,k7d\">Grey Cards</a> <a class=\"link\" href=\"/camera-light-meters/pr?sid=jek,6l2,r4j\">Camera Light Meters</a> <a class=\"link\" href=\"/camera-rigs/pr?sid=jek,6l2,igp\">Camera Rigs</a> <a class=\"link\" href=\"/lens-adapters/pr?sid=jek,6l2,vz1\">Lens Adapters</a> <a class=\"link\" href=\"/tripod-bags/pr?sid=jek,6l2,sw8\">Tripod Bags</a> <a class=\"link\" href=\"/tripod-ball-head/pr?sid=jek,6l2,htt\">Tripod Ball Head</a> <a class=\"link\" href=\"/camera-film-rolls/pr?sid=jek,6l2,rkc\">Camera Film Rolls</a> <a class=\"link\" href=\"/reflectors/pr?sid=jek,6l2,g9h\">Reflectors</a> <a class=\"link\" href=\"/otg-adapters/pr?sid=jek,6l2,gm4\">OTG Adapters</a> <a class=\"link\" href=\"/snoots/pr?sid=jek,6l2,vit\">Snoots</a> <a class=\"link\" href=\"/camera-accessories/memory-cards/pr?sid=jek,6l2,7y6\">Camera Memory Cards</a> <a class=\"link\" href=\"/batteries/pr?sid=jek,6l2,w65\">Batteries</a> <a class=\"link\" href=\"/teleconverters/pr?sid=jek,6l2,kvf\">Teleconverters</a> <a class=\"link\" href=\"/lcd-screen-protectors/pr?sid=jek,6l2,vyn\">LCD Screen Protectors</a> <a class=\"link\" href=\"/wireless-remote-controls/pr?sid=jek,6l2,osi\">Wireless Remote Controls</a> <a class=\"link\" href=\"/digital-photo-frames/pr?sid=jek,6l2,3mw\">Digital Photo frames</a> <a class=\"link\" href=\"/travel-cases/pr?sid=jek,6l2,adb\">Travel Cases</a> </div><h2><a href=\"/home-kitchen/pr?sid=j9e\">Home &amp; Kitchen</a></h2><div><a class=\"link\" href=\"/home-appliances/pr?sid=j9e,abm\">Home Appliances</a> <a class=\"link\" href=\"/inverters-and-accessories/pr?sid=j9e,abm,ve9\">Inverters and Accessories</a> <a class=\"link\" href=\"/diffusers-humidifiers/pr?sid=j9e,abm,ebi\">Diffusers / Humidifiers</a> <a class=\"link\" href=\"/iron/pr?sid=j9e,abm,a0u\">Irons</a> <a class=\"link\" href=\"/water-purifiers/pr?sid=j9e,abm,i45\">Water purifiers</a> <a class=\"link\" href=\"/water-geysers/pr?sid=j9e,abm,bfm\">Water Geysers</a> <a class=\"link\" href=\"/air-purifiers/pr?sid=j9e,abm,3o4\">Air Purifiers</a> <a class=\"link\" href=\"/room-heaters/pr?sid=j9e,abm,xie\">Room Heaters</a> <a class=\"link\" href=\"/voltage-stabilizers/pr?sid=j9e,abm,xf4\">Voltage Stabilizers</a> <a class=\"link\" href=\"/sewing-machines/pr?sid=j9e,abm,0zg\">Sewing Machines</a> <a class=\"link\" href=\"/vacuum-cleaners/pr?sid=j9e,abm,ul2\">Vacuum Cleaners</a> <a class=\"link\" href=\"/immersion-rods/pr?sid=j9e,abm,rqo\">Immersion Rods</a> <a class=\"link\" href=\"/fan/pr?sid=j9e,abm,lbz\">Fans</a> <a class=\"link\" href=\"/air-coolers/pr?sid=j9e,abm,52j\">Air Coolers</a> <a class=\"link\" href=\"/landline-phones/pr?sid=j9e,abm,n0f\">Landline Phones</a> <a class=\"link\" href=\"/appliance-parts-accessories/pr?sid=j9e,abm,qh9\">Appliance Parts & Accessories</a> <a class=\"link\" href=\"/dimmers/pr?sid=j9e,abm,6ai\">Dimmers</a> <a class=\"link\" href=\"/sensor-security-systems/pr?sid=j9e,abm,k3w\">Sensor Security Systems</a> <a class=\"link\" href=\"/dryer/pr?sid=j9e,abm,bhi\">Dryer</a> <a class=\"link\" href=\"/compact-refrigerators/pr?sid=j9e,abm,qi7\">Compact Refrigerators</a> <a class=\"link\" href=\"/air-conditioners/pr?sid=j9e,abm,c54\">Air Conditioners</a> <a class=\"link\" href=\"/refrigerators/pr?sid=j9e,abm,hzg\">Refrigerators</a> <a class=\"link\" href=\"/washing-machines/pr?sid=j9e,abm,8qx\">Washing Machines</a> <a class=\"link\" href=\"/transformer-converters/pr?sid=j9e,abm,0o3\">Transformer Converters</a> <a class=\"link\" href=\"/water-heaters/pr?sid=j9e,abm,38c\">Water Heaters</a> <a class=\"link\" href=\"/ultrasonic-cleaners/pr?sid=j9e,abm,cix\">Ultrasonic Cleaners</a> <a class=\"link\" href=\"/emergency-lights/pr?sid=j9e,abm,ddc\">Emergency Lights</a> <a class=\"link\" href=\"/lightings/pr?sid=j9e,abm,f6f\">Lightings</a> <a class=\"link\" href=\"/thermostats/pr?sid=j9e,abm,fpp\">Thermostats</a> <a class=\"link\" href=\"/freezer-chests/pr?sid=j9e,abm,ix6\">Freezer Chests</a> <a class=\"link\" href=\"/telephones/pr?sid=j9e,abm,j41\">Telephones</a> <a class=\"link\" href=\"/popcorn-makers/pr?sid=j9e,abm,lk3\">Popcorn Makers</a> <a class=\"link\" href=\"/electric-shoe-dryers/pr?sid=j9e,abm,t1v\">Electric Shoe Dryers</a> <a class=\"link\" href=\"/kitchen-appliances/pr?sid=j9e,m38\">Kitchen Appliances</a> <a class=\"link\" href=\"/electric-lunch-boxes/pr?sid=j9e,m38,il6\">Electric Lunch Boxes</a> <a class=\"link\" href=\"/electric-choppers/pr?sid=j9e,m38,2re\">Electric Choppers</a> <a class=\"link\" href=\"/mixerjuicergrinders/pr?sid=j9e,m38,7ek\">Mixer Juicer Grinder</a> <a class=\"link\" href=\"/electric-jugheatertravel-kettles/pr?sid=j9e,m38,xrv\">Electric Jug(heater)/Travel Kettles</a> <a class=\"link\" href=\"/induction-cooktops/pr?sid=j9e,m38,575\">Induction Cooktops</a> <a class=\"link\" href=\"/hand-blenders/pr?sid=j9e,m38,u7m\">Hand Blenders</a> <a class=\"link\" href=\"/sandwich-makers/pr?sid=j9e,m38,1vj\">Sandwich Makers</a> <a class=\"link\" href=\"/chimney/pr?sid=j9e,m38,tgz\">Chimney</a> <a class=\"link\" href=\"/electric-cookers/pr?sid=j9e,m38,9m9\">Electric Cookers</a> <a class=\"link\" href=\"/electric-meat-grinders/pr?sid=j9e,m38,oll\">Electric Meat Grinders</a> <a class=\"link\" href=\"/electric-food-dehydrators/pr?sid=j9e,m38,zrq\">Electric Food Dehydrators</a> <a class=\"link\" href=\"/electric-bottle-openers/pr?sid=j9e,m38,2kq\">Electric Bottle Openers</a> <a class=\"link\" href=\"/chocolate-fountain-makers/pr?sid=j9e,m38,hgk\">Chocolate Fountain Makers</a> <a class=\"link\" href=\"/electric-woks/pr?sid=j9e,m38,0ts\">Electric Woks</a> <a class=\"link\" href=\"/ovens/pr?sid=j9e,m38,mme\">Ovens</a> <a class=\"link\" href=\"/pizzelle-maker/pr?sid=j9e,m38,zjy\">Pizzelle Maker</a> <a class=\"link\" href=\"/ice-makers/pr?sid=j9e,m38,0kf\">Ice Makers</a> <a class=\"link\" href=\"/wet-grinders/pr?sid=j9e,m38,u0a\">Wet Grinders</a> <a class=\"link\" href=\"/electric-carving-knife/pr?sid=j9e,m38,i0z\">Electric Carving Knife</a> <a class=\"link\" href=\"/ice-cream-makers/pr?sid=j9e,m38,doz\">Ice Cream Makers</a> <a class=\"link\" href=\"/soup-miso-maker/pr?sid=j9e,m38,x60\">Soup & Miso Maker</a> <a class=\"link\" href=\"/cooking-range/pr?sid=j9e,m38,fy7\">Cooking Range</a> <a class=\"link\" href=\"/digital-measuring-spoons/pr?sid=j9e,m38,oaz\">Digital Measuring Spoons</a> <a class=\"link\" href=\"/hot-dog-machines/pr?sid=j9e,m38,1f7\">Hot Dog Machines</a> <a class=\"link\" href=\"/cake-maker/pr?sid=j9e,m38,z9o\">Cake Maker</a> <a class=\"link\" href=\"/peanut-butter-makers/pr?sid=j9e,m38,tpp\">Peanut Butter Makers</a> <a class=\"link\" href=\"/appliance-parts-accessories/pr?sid=j9e,m38,vli\">Appliance Parts & Accessories</a> <a class=\"link\" href=\"/electric-pans/pr?sid=j9e,m38,xf0\">Electric Pans</a> <a class=\"link\" href=\"/refrigerators/pr?sid=j9e,m38,hzg\">Refrigerators</a> <a class=\"link\" href=\"/sausage-makers/pr?sid=j9e,m38,0ek\">Sausage Makers</a> <a class=\"link\" href=\"/coffee-makers/pr?sid=j9e,m38,wqo\">Coffee makers</a> <a class=\"link\" href=\"/dish-washers/pr?sid=j9e,m38,58n\">Dish washers</a> <a class=\"link\" href=\"/microwave-ovens/pr?sid=j9e,m38,o49\">Microwave Ovens</a> <a class=\"link\" href=\"/oven-toaster-grills/pr?sid=j9e,m38,vr5\">Oven Toaster Grills</a> <a class=\"link\" href=\"/food-makers/pr?sid=j9e,m38,3op\">Food Makers</a> <a class=\"link\" href=\"/egg-cookers/pr?sid=j9e,m38,zo3\">Egg Cookers</a> <a class=\"link\" href=\"/air-fryers/pr?sid=j9e,m38,j1e\">Air Fryers</a> <a class=\"link\" href=\"/popup-toasters/pr?sid=j9e,m38,txh\">Pop-up Toasters</a> <a class=\"link\" href=\"/wet-grinders/pr?sid=j9e,m38,htd\">Wet Grinders</a> <a class=\"link\" href=\"/food-processors/pr?sid=j9e,m38,rj3\">Food Processors</a> <a class=\"link\" href=\"/dough-presses/pr?sid=j9e,m38,eq3\">Dough Presses</a> <a class=\"link\" href=\"/waffle-makers/pr?sid=j9e,m38,xhu\">Waffle Makers</a> <a class=\"link\" href=\"/electric-tandoor/pr?sid=j9e,m38,eun\">Electric Tandoor</a> <a class=\"link\" href=\"/electric-cooking-heaters/pr?sid=j9e,m38,3yh\">Electric Cooking Heaters</a> <a class=\"link\" href=\"/roti-makers/pr?sid=j9e,m38,rq0\">Roti Makers</a> <a class=\"link\" href=\"/cupcake-makers/pr?sid=j9e,m38,mt3\">Cupcake Makers</a> <a class=\"link\" href=\"/electric-deep-fryers/pr?sid=j9e,m38,4ov\">Electric Deep Fryers</a> <a class=\"link\" href=\"/indian-coffee-filters/pr?sid=j9e,m38,oap\">Indian Coffee Filters</a> <a class=\"link\" href=\"/donut-makers/pr?sid=j9e,m38,0es\">Donut Makers</a> <a class=\"link\" href=\"/popcorn-makers/pr?sid=j9e,m38,lk3\">Popcorn Makers</a> <a class=\"link\" href=\"/soda-makers/pr?sid=j9e,m38,24c\">Soda Makers</a> <a class=\"link\" href=\"/cotton-candy-maker/pr?sid=j9e,m38,jla\">Cotton Candy Maker</a> <a class=\"link\" href=\"/weighing-scales/pr?sid=j9e,m38,udm\">Weighing Scales</a> <a class=\"link\" href=\"/bread-makers/pr?sid=j9e,m38,y3d\">Bread Makers</a> <a class=\"link\" href=\"/noodles-spaghetti-maker/pr?sid=j9e,m38,f6x\">Noodles & Spaghetti Maker</a> <a class=\"link\" href=\"/pizza-makers/pr?sid=j9e,m38,ah0\">Pizza Makers</a> <a class=\"link\" href=\"/vada-makers/pr?sid=j9e,m38,ym4\">Vada Makers</a> <a class=\"link\" href=\"/flourmills/pr?sid=j9e,m38,aao\">Flourmills</a> <a class=\"link\" href=\"/butter-churn-makers/pr?sid=j9e,m38,s42\">Butter Churn Makers</a> <a class=\"link\" href=\"/soup-makers/pr?sid=j9e,m38,sbu\">Soup Makers</a> <a class=\"link\" href=\"/slow-cookers/pr?sid=j9e,m38,ugr\">Slow Cookers</a> <a class=\"link\" href=\"/potato-twister-machines/pr?sid=j9e,m38,agw\">Potato Twister Machines</a> </div><h2><a href=\"/clothing/pr?sid=2oq\">Clothing</a></h2><div><a class=\"link\" href=\"/mens-clothing/pr?sid=2oq,s9b\">Men's Clothing</a> <a class=\"link\" href=\"/men/tshirts/pr?sid=2oq,s9b,j9y\">T-Shirts</a> <a class=\"link\" href=\"/men/shirts/pr?sid=2oq,s9b,mg4\">Shirts</a> <a class=\"link\" href=\"/men/jeans/pr?sid=2oq,s9b,94h\">Jeans</a> <a class=\"link\" href=\"/sports-wear/pr?sid=2oq,s9b,6gr\">Sports Wear</a> <a class=\"link\" href=\"/men/trousers/pr?sid=2oq,s9b,9uj\">Trousers</a> <a class=\"link\" href=\"/inner-wear-sleep-wear/pr?sid=2oq,s9b,b1a\">Inner Wear & Sleep Wear</a> <a class=\"link\" href=\"/suits-blazers/pr?sid=2oq,s9b,q9f\">Suits & Blazers</a> <a class=\"link\" href=\"/cargos-shorts-34ths/pr?sid=2oq,s9b,vde\">Cargos, Shorts & 3/4ths</a> <a class=\"link\" href=\"/accessories-combo-sets/pr?sid=2oq,s9b,8jf\">Accessories & Combo Sets</a> <a class=\"link\" href=\"/ethnic-wear/pr?sid=2oq,s9b,3a0\">Ethnic Wear</a> <a class=\"link\" href=\"/fabrics/pr?sid=2oq,s9b,9hz\">Fabrics</a> <a class=\"link\" href=\"/winter-seasonal-wear/pr?sid=2oq,s9b,qgu\">Winter & Seasonal Wear</a> <a class=\"link\" href=\"/womens-clothing/pr?sid=2oq,c1r\">Women's Clothing</a> <a class=\"link\" href=\"/ethnic-wear/pr?sid=2oq,c1r,3pj\">Ethnic Wear</a> <a class=\"link\" href=\"/western-wear/pr?sid=2oq,c1r,ha6\">Western Wear</a> <a class=\"link\" href=\"/lingerie-sleep-swimwear/pr?sid=2oq,c1r,tbt\">Lingerie, Sleep & Swimwear</a> <a class=\"link\" href=\"/fusion-wear/pr?sid=2oq,c1r,p43\">Fusion Wear</a> <a class=\"link\" href=\"/combo-sets/pr?sid=2oq,c1r,758\">Combo Sets</a> <a class=\"link\" href=\"/formal-wear/pr?sid=2oq,c1r,f4y\">Formal Wear</a> <a class=\"link\" href=\"/leggings-jeggings/pr?sid=2oq,c1r,q7g\">Leggings & Jeggings</a> <a class=\"link\" href=\"/halloween-costumes/pr?sid=2oq,c1r,1un\">Halloween Costumes</a> <a class=\"link\" href=\"/maternity-wear/pr?sid=2oq,c1r,zcy\">Maternity Wear</a> <a class=\"link\" href=\"/fabrics/pr?sid=2oq,c1r,9tg\">Fabrics</a> <a class=\"link\" href=\"/accessories/pr?sid=2oq,c1r,3gz\">Accessories</a> <a class=\"link\" href=\"/winter-seasonal-wear/pr?sid=2oq,c1r,67x\">Winter & Seasonal Wear</a> <a class=\"link\" href=\"/sports-gym-wear/pr?sid=2oq,c1r,6p8\">Sports & Gym Wear</a> <a class=\"link\" href=\"/kids-clothing/pr?sid=2oq,mpf\">Kids' Clothing</a> <a class=\"link\" href=\"/boys-wear/pr?sid=2oq,mpf,u6l\">Boys Wear</a> <a class=\"link\" href=\"/girls-wear/pr?sid=2oq,mpf,acr\">Girls Wear</a> <a class=\"link\" href=\"/infants-wear/pr?sid=2oq,mpf,cki\">Infants Wear</a> </div><h2><a href=\"/footwear/pr?sid=osp\">Footwear</a></h2><div><a class=\"link\" href=\"/womens-footwear/pr?sid=osp,iko\">Women's Footwear</a> <a class=\"link\" href=\"/womens-flats/pr?sid=osp,iko,9d5\">Women's Flats</a> <a class=\"link\" href=\"/womens-heels/pr?sid=osp,iko,6q1\">Women's Heels</a> <a class=\"link\" href=\"/womens-wedges/pr?sid=osp,iko,jpm\">Women's Wedges</a> <a class=\"link\" href=\"/womens-sports-shoes/pr?sid=osp,iko,d20\">Women's Sports Shoes</a> <a class=\"link\" href=\"/womens-casual-shoes/pr?sid=osp,iko,sx7\">Women's Casual Shoes</a> <a class=\"link\" href=\"/womens-ballerinas/pr?sid=osp,iko,974\">Women's Ballerinas</a> <a class=\"link\" href=\"/womens-ethnic-shoes/pr?sid=osp,iko,w4a\">Women's Ethnic Shoes</a> <a class=\"link\" href=\"/womens-formals/pr?sid=osp,iko,2ox\">Women's Formals</a> <a class=\"link\" href=\"/womens-slippers-flip-flops/pr?sid=osp,iko,iz7\">Women's Slippers & Flip Flops</a> <a class=\"link\" href=\"/womens-sports-sandals/pr?sid=osp,iko,ojy\">Women's Sports Sandals</a> <a class=\"link\" href=\"/sandals/pr?sid=osp,iko,riq\">Sandals</a> <a class=\"link\" href=\"/kids-infant-footwear/pr?sid=osp,mba\">Kids' & Infant Footwear</a> <a class=\"link\" href=\"/boys-footwear/pr?sid=osp,mba,o3t\">Boys Footwear</a> <a class=\"link\" href=\"/girls-footwear/pr?sid=osp,mba,erx\">Girls Footwear</a> <a class=\"link\" href=\"/infants/pr?sid=osp,mba,qzr\">Infants</a> <a class=\"link\" href=\"/shoe-accessories/pr?sid=osp,scr\">Shoe Accessories</a> <a class=\"link\" href=\"/socks/pr?sid=osp,scr,sck\">Socks</a> <a class=\"link\" href=\"/mens-footwear/pr?sid=osp,cil\">Men's Footwear</a> <a class=\"link\" href=\"/shoe-laces/pr?sid=osp,cil,1bm\">Shoe Laces</a> <a class=\"link\" href=\"/mens-casual-shoes/pr?sid=osp,cil,e1f\">Men’s Casual Shoes</a> <a class=\"link\" href=\"/mens-sports-shoes/pr?sid=osp,cil,1cu\">Men’s Sports Shoes</a> <a class=\"link\" href=\"/mens-formal-shoes/pr?sid=osp,cil,ssb\">Men’s Formal Shoes</a> <a class=\"link\" href=\"/mens-sandals-floaters/pr?sid=osp,cil,e83\">Men’s Sandals & Floaters</a> <a class=\"link\" href=\"/mens-slippers-flip-flops/pr?sid=osp,cil,e1r\">Men’s Slippers & Flip Flops</a> <a class=\"link\" href=\"/mens-ethnic-shoes/pr?sid=osp,cil,ssd\">Men’s Ethnic Shoes</a> <a class=\"link\" href=\"/shoe-care/pr?sid=osp,cil,ja7\">Shoe Care</a> <a class=\"link\" href=\"/shoe-accessories/pr?sid=osp,cil,scr\">Shoe Accessories</a> </div><h2><a href=\"/watches/pr?sid=r18\">Watches</a></h2><div><a class=\"link\" href=\"/wrist-watches/pr?sid=r18,f13\">Wrist Watches</a> <a class=\"link\" href=\"/watch-accessories/pr?sid=r18,trt\">Watch Accessories</a> <a class=\"link\" href=\"/pocket-watch-chains/pr?sid=r18,trt,z1j\">Pocket Watch Chains</a> <a class=\"link\" href=\"/watch-boxes/pr?sid=r18,trt,kn9\">Watch Boxes</a> <a class=\"link\" href=\"/watch-protective-cases-covers/pr?sid=r18,trt,aer\">Watch Protective Cases & Covers</a> <a class=\"link\" href=\"/watch-repair-kits/pr?sid=r18,trt,3ty\">Watch Repair Kits</a> <a class=\"link\" href=\"/wrist-bands/pr?sid=r18,trt,fis\">Wrist Bands</a> <a class=\"link\" href=\"/watch-winders/pr?sid=r18,trt,xth\">Watch Winders</a> <a class=\"link\" href=\"/watch-straps/pr?sid=r18,trt,7qt\">Watch Straps</a> <a class=\"link\" href=\"/weather-stations/pr?sid=r18,9qn\">Weather Stations</a> <a class=\"link\" href=\"/clocks/pr?sid=r18,4ub\">Clocks</a> <a class=\"link\" href=\"/wall-clocks/pr?sid=r18,4ub,3gt\">Wall Clocks</a> <a class=\"link\" href=\"/table-clocks/pr?sid=r18,4ub,sut\">Table Clocks</a> <a class=\"link\" href=\"/pocket-watches/pr?sid=r18,aha\">Pocket Watches</a> </div><h2><a href=\"/bags-wallets-belts/pr?sid=reh\">Bags, Wallets &amp; Belts</a></h2><div><a class=\"link\" href=\"/bags-backpacks/pr?sid=reh,4d7\">Bags & Backpacks</a> <a class=\"link\" href=\"/gym-bags/pr?sid=reh,4d7,6aw\">Gym Bags</a> <a class=\"link\" href=\"/cross-body-bags/pr?sid=reh,4d7,j66\">Cross Body Bags</a> <a class=\"link\" href=\"/waist-bags/pr?sid=reh,4d7,tx1\">Waist Bags</a> <a class=\"link\" href=\"/messenger-bags/pr?sid=reh,4d7,ss4\">Messenger Bags</a> <a class=\"link\" href=\"/wallets/pr?sid=reh,4d7,tlx\">Wallets</a> <a class=\"link\" href=\"/backpacks/pr?sid=reh,4d7,ak9\">Backpacks</a> <a class=\"link\" href=\"/laptop-bags/pr?sid=reh,4d7,x9i\">Laptop Bags</a> <a class=\"link\" href=\"/luggage-travel/pr?sid=reh,plk\">Luggage & Travel</a> <a class=\"link\" href=\"/luggage-combo/pr?sid=reh,plk,fx4\">Luggage Combo</a> <a class=\"link\" href=\"/duffel-bags/pr?sid=reh,plk,26y\">Duffel Bags</a> <a class=\"link\" href=\"/suitcases/pr?sid=reh,plk,tvv\">Suitcases</a> <a class=\"link\" href=\"/rucksacks/pr?sid=reh,plk,san\">Rucksacks</a> <a class=\"link\" href=\"/small-travel-bags/pr?sid=reh,plk,p9z\">Small Travel Bags</a> <a class=\"link\" href=\"/travel-accessories/pr?sid=reh,plk,t1w\">Travel Accessories</a> <a class=\"link\" href=\"/waist-bags/pr?sid=reh,plk,1l1\">Waist Bags</a> <a class=\"link\" href=\"/briefcases/pr?sid=reh,plk,yxg\">Briefcases</a> <a class=\"link\" href=\"/luggage-covers/pr?sid=reh,plk,myk\">Luggage Covers</a> <a class=\"link\" href=\"/wallets-clutches/pr?sid=reh,cca\">Wallets & Clutches</a> <a class=\"link\" href=\"/wallets/pr?sid=reh,cca,h76\">Wallets</a> <a class=\"link\" href=\"/clutches/pr?sid=reh,cca,q6i\">Clutches</a> <a class=\"link\" href=\"/travel-document-holders-card-holders/pr?sid=reh,cca,v85\">Travel Document Holders & Card Holders</a> <a class=\"link\" href=\"/wallet-emblems/pr?sid=reh,cca,qii\">Wallet Emblems</a> <a class=\"link\" href=\"/money-clip/pr?sid=reh,cca,5mm\">Money Clip</a> <a class=\"link\" href=\"/handbags-clutches/pr?sid=reh,ihu\">Handbags & Clutches</a> <a class=\"link\" href=\"/clutches-wallets/pr?sid=reh,ihu,x9j\">Clutches & Wallets</a> <a class=\"link\" href=\"/backpack-handbags/pr?sid=reh,ihu,yvb\">Backpack Handbags</a> <a class=\"link\" href=\"/shoulder-bags/pr?sid=reh,ihu,1gy\">Shoulder Bags</a> <a class=\"link\" href=\"/handbags/pr?sid=reh,ihu,m08\">Handbags</a> <a class=\"link\" href=\"/totes/pr?sid=reh,ihu,v57\">Totes</a> <a class=\"link\" href=\"/sling-bags/pr?sid=reh,ihu,mf2\">Sling Bags</a> <a class=\"link\" href=\"/backpacks/pr?sid=reh,ihu,4ma\">Backpacks</a> <a class=\"link\" href=\"/messenger-bags/pr?sid=reh,ihu,psb\">Messenger Bags</a> <a class=\"link\" href=\"/pouches-and-potlis/pr?sid=reh,ihu,6vv\">Pouches and Potlis</a> <a class=\"link\" href=\"/laptop-bags/pr?sid=reh,ihu,q4f\">Laptop Bags</a> <a class=\"link\" href=\"/gym-bags/pr?sid=reh,ihu,ilz\">Gym Bags</a> <a class=\"link\" href=\"/cross-body-bags/pr?sid=reh,ihu,uxy\">Cross Body Bags</a> <a class=\"link\" href=\"/waist-bags/pr?sid=reh,ihu,1l1\">Waist Bags</a> <a class=\"link\" href=\"/wristlets/pr?sid=reh,ihu,5ph\">Wristlets</a> <a class=\"link\" href=\"/coin-purses/pr?sid=reh,ihu,8jn\">Coin Purses</a> <a class=\"link\" href=\"/soiled-garment-bags/pr?sid=reh,ihu,c62\">Soiled Garment Bags</a> <a class=\"link\" href=\"/vanity-bags/pr?sid=reh,ihu,cir\">Vanity Bags</a> <a class=\"link\" href=\"/potlis/pr?sid=reh,ihu,jld\">Potlis</a> <a class=\"link\" href=\"/clutches/pr?sid=reh,ihu,q6i\">Clutches</a> <a class=\"link\" href=\"/cosmetic-bags/pr?sid=reh,ihu,rpk\">Cosmetic Bags</a> <a class=\"link\" href=\"/bags-belts-wallets-combo/pr?sid=reh,ftf\">Bags, Belts & Wallets Combo</a> <a class=\"link\" href=\"/garment-covers/pr?sid=reh,agc\">Garment Covers</a> <a class=\"link\" href=\"/key-chains/pr?sid=reh,flc\">Key Chains</a> <a class=\"link\" href=\"/suspenders/pr?sid=reh,p0y\">Suspenders</a> <a class=\"link\" href=\"/accessories-combo/pr?sid=reh,gie\">Accessories Combo</a> <a class=\"link\" href=\"/carabiners/pr?sid=reh,i3m\">Carabiners</a> <a class=\"link\" href=\"/belts/pr?sid=reh,ro3\">Belts</a> <a class=\"link\" href=\"/key-chains/pr?sid=reh,j3j\">Key Chains</a> <a class=\"link\" href=\"/tie-pins/pr?sid=reh,k60\">Tie Pins</a> <a class=\"link\" href=\"/cufflinks/pr?sid=reh,ve5\">Cufflinks</a> <a class=\"link\" href=\"/brooches/pr?sid=reh,jff\">Brooches</a> <a class=\"link\" href=\"/cardholders/pr?sid=reh,ibo\">Cardholders</a> </div><h2><a href=\"/health-personal-care-appliances/pr?sid=zlw\">Health &amp; Personal Care Appliances</a></h2><div><a class=\"link\" href=\"/personal-care-appliances/pr?sid=zlw,79s\">Personal Care Appliances</a> <a class=\"link\" href=\"/appliance-combos/pr?sid=zlw,79s,fwi\">Appliance Combos</a> <a class=\"link\" href=\"/trimmers/pr?sid=zlw,79s,by3\">Trimmers</a> <a class=\"link\" href=\"/shavers/pr?sid=zlw,79s,u3j\">Shavers</a> <a class=\"link\" href=\"/hair-straighteners/pr?sid=zlw,79s,dk5\">Hair Straighteners</a> <a class=\"link\" href=\"/electric-tanners/pr?sid=zlw,79s,eyb\">Electric Tanners</a> <a class=\"link\" href=\"/water-flosser/pr?sid=zlw,79s,sg3\">Water Flosser</a> <a class=\"link\" href=\"/grooming-kit/pr?sid=zlw,79s,bi7\">Grooming Kit</a> <a class=\"link\" href=\"/electrical-hand-warmers/pr?sid=zlw,79s,oky\">Electrical Hand Warmers</a> <a class=\"link\" href=\"/shaving-hair-removal/pr?sid=zlw,79s,vee\">Shaving & Hair Removal</a> <a class=\"link\" href=\"/tattoo-machines/pr?sid=zlw,79s,0na\">Tattoo Machines</a> <a class=\"link\" href=\"/tattoo-ink/pr?sid=zlw,79s,sfw\">Tattoo Ink</a> <a class=\"link\" href=\"/hair-dryers/pr?sid=zlw,79s,mh8\">Hair Dryers</a> <a class=\"link\" href=\"/anti-wrinkle-machines/pr?sid=zlw,79s,bve\">Anti Wrinkle Machines</a> <a class=\"link\" href=\"/electronic-facial-cleansers/pr?sid=zlw,79s,z9y\">Electronic Facial Cleansers</a> <a class=\"link\" href=\"/salon-hood-dryers/pr?sid=zlw,79s,lxk\">Salon Hood Dryers</a> <a class=\"link\" href=\"/appliance-combos/pr?sid=zlw,79s,qks\">Appliance Combos</a> <a class=\"link\" href=\"/hair-rejuvenator-helmets/pr?sid=zlw,79s,7be\">Hair Rejuvenator Helmets</a> <a class=\"link\" href=\"/epilators/pr?sid=zlw,79s,k32\">Epilators</a> <a class=\"link\" href=\"/hair-curlers/pr?sid=zlw,79s,76i\">Hair Curlers</a> <a class=\"link\" href=\"/hair-stylers/pr?sid=zlw,79s,rtx\">Hair Stylers</a> <a class=\"link\" href=\"/hair-removers/pr?sid=zlw,79s,33q\">Hair Removers</a> <a class=\"link\" href=\"/vaping-devices/pr?sid=zlw,79s,7lq\">Vaping Devices</a> <a class=\"link\" href=\"/health-care/pr?sid=zlw,nyl\">Health Care</a> <a class=\"link\" href=\"/stethoscopes/pr?sid=zlw,nyl,mqv\">Stethoscopes</a> <a class=\"link\" href=\"/electric-ear-cleaners/pr?sid=zlw,nyl,nze\">Electric Ear Cleaners</a> <a class=\"link\" href=\"/heating-pads/pr?sid=zlw,nyl,lfv\">Heating Pads</a> <a class=\"link\" href=\"/slimming-belts/pr?sid=zlw,nyl,71s\">Slimming Belts</a> <a class=\"link\" href=\"/respiratory-exercisers/pr?sid=zlw,nyl,mqi\">Respiratory Exercisers</a> <a class=\"link\" href=\"/appliance-combos/pr?sid=zlw,nyl,vim\">Appliance Combos</a> <a class=\"link\" href=\"/maternity-care/pr?sid=zlw,nyl,aaa\">Maternity Care</a> <a class=\"link\" href=\"/appliance-combos/pr?sid=zlw,nyl,liu\">Appliance Combos</a> <a class=\"link\" href=\"/oxygen-concentrators/pr?sid=zlw,nyl,tcm\">Oxygen Concentrators</a> <a class=\"link\" href=\"/cholestrol-analyzers/pr?sid=zlw,nyl,thy\">Cholestrol Analyzers</a> <a class=\"link\" href=\"/bp-monitor-bulbs/pr?sid=zlw,nyl,jll\">BP Monitor Bulbs</a> <a class=\"link\" href=\"/electronic-cigarettes/pr?sid=zlw,nyl,wm7\">Electronic Cigarettes</a> <a class=\"link\" href=\"/slimming-machines/pr?sid=zlw,nyl,tq4\">Slimming Machines</a> <a class=\"link\" href=\"/health-care-devices/pr?sid=zlw,nyl,bvv\">Health Care Devices</a> <a class=\"link\" href=\"/medicines-treatment/pr?sid=zlw,nyl,ggb\">Medicines & Treatment</a> <a class=\"link\" href=\"/health-care-accessories/pr?sid=zlw,nyl,mmm\">Health Care Accessories</a> <a class=\"link\" href=\"/combo-kits/pr?sid=zlw,nyl,xsb\">Combo & Kits</a> <a class=\"link\" href=\"/elderly-care/pr?sid=zlw,nyl,oxb\">Elderly Care</a> <a class=\"link\" href=\"/acupuncture-devices-accessories/pr?sid=zlw,nyl,7pn\">Acupuncture Devices & Accessories</a> <a class=\"link\" href=\"/medical-equipment-accessories/pr?sid=zlw,nyl,kk3\">Medical Equipment & Accessories</a> </div><h2><a href=\"/vas/pr?sid=mcd\">Vas</a></h2><div><a class=\"link\" href=\"/door-step-demo/pr?sid=mcd,dj5\">Door Step Demo</a> <a class=\"link\" href=\"/gift-cards/pr?sid=mcd,1ob\">Gift Cards</a> <a class=\"link\" href=\"/digital-gift-cards/pr?sid=mcd,1ob,dci\">Digital Gift Cards</a> <a class=\"link\" href=\"/physical-gift-cards/pr?sid=mcd,1ob,tfp\">Physical Gift Cards</a> <a class=\"link\" href=\"/on-demand-services/pr?sid=mcd,wvt\">On Demand Services</a> <a class=\"link\" href=\"/photoshoot-services/pr?sid=mcd,fzl\">Photoshoot Services</a> <a class=\"link\" href=\"/physical-gift-voucher/pr?sid=mcd,v3k\">Physical Gift Voucher</a> <a class=\"link\" href=\"/photography-workshops/pr?sid=mcd,6r9\">Photography Workshops</a> <a class=\"link\" href=\"/digital/pr?sid=mcd,zyx\">Digital</a> <a class=\"link\" href=\"/grocery-loyalty-pass/pr?sid=mcd,zyx,cv8\">Grocery Loyalty Pass</a> <a class=\"link\" href=\"/automobile-digital-voucher/pr?sid=mcd,zyx,gu9\">Automobile Digital Voucher</a> <a class=\"link\" href=\"/digital-voucher-codes/pr?sid=mcd,zyx,72f\">Digital Voucher Codes</a> <a class=\"link\" href=\"/damage-protection-plan/pr?sid=mcd,zyx,9cz\">Damage Protection Plan</a> <a class=\"link\" href=\"/extended-warranty/pr?sid=mcd,zyx,qwx\">Extended Warranty</a> <a class=\"link\" href=\"/digital-voucher-code/pr?sid=mcd,zyx,zzo\">Digital Voucher Code</a> <a class=\"link\" href=\"/camera-rental-services/pr?sid=mcd,msb\">Camera Rental Services</a> </div><h2><a href=\"/grocery/pr?sid=73z\">Grocery</a></h2><div><a class=\"link\" href=\"/staples/pr?sid=73z,bpe\">Staples</a> <a class=\"link\" href=\"/dals-pulses/pr?sid=73z,bpe,3uv\">Dals & Pulses</a> <a class=\"link\" href=\"/ghee-oils/pr?sid=73z,bpe,4wu\">Ghee & Oils</a> <a class=\"link\" href=\"/atta-flours/pr?sid=73z,bpe,9da\">Atta & Flours</a> <a class=\"link\" href=\"/masalas-spices/pr?sid=73z,bpe,a6m\">Masalas & Spices</a> <a class=\"link\" href=\"/rice-rice-products/pr?sid=73z,bpe,zwp\">Rice & Rice Products</a> <a class=\"link\" href=\"/dry-fruits-nuts-seeds/pr?sid=73z,bpe,dtp\">Dry Fruits, Nuts & Seeds</a> <a class=\"link\" href=\"/sugar-jaggery-salt/pr?sid=73z,bpe,fdl\">Sugar, Jaggery & Salt</a> <a class=\"link\" href=\"/home-kitchen/pr?sid=73z,uyk\">Home & Kitchen</a> <a class=\"link\" href=\"/decor-festive-needs/pr?sid=73z,uyk,hnw\">Decor & Festive Needs</a> <a class=\"link\" href=\"/home-utilities-tools-organizers/pr?sid=73z,uyk,sgh\">Home Utilities, Tools & Organizers</a> <a class=\"link\" href=\"/kitchen-tools-appliances/pr?sid=73z,uyk,hho\">Kitchen Tools & Appliances</a> <a class=\"link\" href=\"/cookware-serveware/pr?sid=73z,uyk,vdx\">Cookware & Serveware</a> <a class=\"link\" href=\"/bath-bed-essentials/pr?sid=73z,uyk,6f4\">Bath & Bed Essentials</a> <a class=\"link\" href=\"/office-school-supplies/pr?sid=73z,pyy\">Office & School Supplies</a> <a class=\"link\" href=\"/art-stationery-supplies/pr?sid=73z,pyy,utd\">Art & Stationery Supplies</a> <a class=\"link\" href=\"/snacks-beverages/pr?sid=73z,ujs\">Snacks & Beverages</a> <a class=\"link\" href=\"/biscuits/pr?sid=73z,ujs,eb9\">Biscuits</a> <a class=\"link\" href=\"/chips-namkeen-snacks/pr?sid=73z,ujs,dd9\">Chips, Namkeen & Snacks</a> <a class=\"link\" href=\"/tea/pr?sid=73z,ujs,amr\">Tea</a> <a class=\"link\" href=\"/coffee/pr?sid=73z,ujs,t7k\">Coffee</a> <a class=\"link\" href=\"/juices/pr?sid=73z,ujs,afd\">Juices</a> <a class=\"link\" href=\"/nutritional-drink-mix/pr?sid=73z,ujs,vnq\">Nutritional Drink Mix</a> <a class=\"link\" href=\"/soft-drinks/pr?sid=73z,ujs,dfw\">Soft Drinks</a> <a class=\"link\" href=\"/instant-drink-mixes-squash-syrups/pr?sid=73z,ujs,iau\">Instant Drink Mixes, Squash & Syrups</a> <a class=\"link\" href=\"/water/pr?sid=73z,ujs,wsx\">Water</a> <a class=\"link\" href=\"/packaged-food/pr?sid=73z,u0u\">Packaged Food</a> <a class=\"link\" href=\"/noodles-pasta/pr?sid=73z,u0u,ltz\">Noodles & Pasta</a> <a class=\"link\" href=\"/chocolates-sweets/pr?sid=73z,u0u,7o6\">Chocolates & Sweets</a> <a class=\"link\" href=\"/ketchups-spreads/pr?sid=73z,u0u,0tl\">Ketchups & Spreads</a> <a class=\"link\" href=\"/breakfast-cereals/pr?sid=73z,u0u,bx9\">Breakfast Cereals</a> <a class=\"link\" href=\"/jams-honey/pr?sid=73z,u0u,j4e\">Jams & Honey</a> <a class=\"link\" href=\"/ready-to-cook/pr?sid=73z,u0u,0gv\">Ready To Cook</a> <a class=\"link\" href=\"/pickles-chutney/pr?sid=73z,u0u,03x\">Pickles & Chutney</a> <a class=\"link\" href=\"/cooking-sauces-vinegar/pr?sid=73z,u0u,wd7\">Cooking Sauces & Vinegar</a> <a class=\"link\" href=\"/baking/pr?sid=73z,u0u,td1\">Baking</a> <a class=\"link\" href=\"/personal-baby-care/pr?sid=73z,njl\">Personal & Baby Care</a> <a class=\"link\" href=\"/soaps-body-wash/pr?sid=73z,njl,sn6\">Soaps & Body Wash</a> <a class=\"link\" href=\"/hair-care/pr?sid=73z,njl,vpw\">Hair Care</a> <a class=\"link\" href=\"/oral-care/pr?sid=73z,njl,2s3\">Oral Care</a> <a class=\"link\" href=\"/deos-perfumes-talc/pr?sid=73z,njl,np3\">Deos, Perfumes & Talc</a> <a class=\"link\" href=\"/creams-lotions-skin-care/pr?sid=73z,njl,n3m\">Creams, Lotions, Skin Care</a> <a class=\"link\" href=\"/kajal-makeup/pr?sid=73z,njl,lzq\">Kajal & Makeup</a> <a class=\"link\" href=\"/sanitary-needs/pr?sid=73z,njl,tlj\">Sanitary Needs</a> <a class=\"link\" href=\"/wellness-common-pharma/pr?sid=73z,njl,07d\">Wellness & Common Pharma</a> <a class=\"link\" href=\"/shaving-needs/pr?sid=73z,njl,nw3\">Shaving Needs</a> <a class=\"link\" href=\"/diapers-wipes/pr?sid=73z,njl,smb\">Diapers & Wipes</a> <a class=\"link\" href=\"/baby-foods/pr?sid=73z,njl,2jj\">Baby Foods</a> <a class=\"link\" href=\"/baby-bath-skin-care/pr?sid=73z,njl,m1f\">Baby Bath & Skin Care</a> <a class=\"link\" href=\"/household-care/pr?sid=73z,cwl\">Household Care</a> <a class=\"link\" href=\"/detergents-laundry/pr?sid=73z,cwl,2z2\">Detergents & Laundry</a> <a class=\"link\" href=\"/utensil-cleaners/pr?sid=73z,cwl,bdc\">Utensil Cleaners</a> <a class=\"link\" href=\"/floor-other-cleaners/pr?sid=73z,cwl,u3c\">Floor & Other Cleaners</a> <a class=\"link\" href=\"/repellants-fresheners/pr?sid=73z,cwl,qz9\">Repellants & Fresheners</a> <a class=\"link\" href=\"/paper-disposables/pr?sid=73z,cwl,2wc\">Paper & Disposables</a> <a class=\"link\" href=\"/basic-electricals/pr?sid=73z,cwl,0s4\">Basic Electricals</a> <a class=\"link\" href=\"/pooja-needs/pr?sid=73z,cwl,u64\">Pooja Needs</a> <a class=\"link\" href=\"/pet-food/pr?sid=73z,cwl,m92\">Pet Food</a> <a class=\"link\" href=\"/shoe-care/pr?sid=73z,cwl,5mx\">Shoe Care</a> <a class=\"link\" href=\"/dairy-bakery-and-eggs/pr?sid=73z,esa\">Dairy, Bakery and Eggs</a> <a class=\"link\" href=\"/dairy/pr?sid=73z,esa,dt6\">Dairy</a> <a class=\"link\" href=\"/eggs/pr?sid=73z,esa,hh7\">Eggs</a> <a class=\"link\" href=\"/bakery-sweets-namkeen/pr?sid=73z,esa,93l\">Bakery, Sweets & Namkeen</a> <a class=\"link\" href=\"/fruits-vegetables/pr?sid=73z,mk9\">Fruits & Vegetables</a> <a class=\"link\" href=\"/fruits/pr?sid=73z,mk9,w9z\">Fruits</a> <a class=\"link\" href=\"/vegetables/pr?sid=73z,mk9,aiw\">Vegetables</a> </div><h2><a href=\"/audio-video/pr?sid=0pm\">Audio &amp; Video</a></h2><div><a class=\"link\" href=\"/video-accessories/pr?sid=0pm,q9n\">Video Accessories</a> <a class=\"link\" href=\"/cables/pr?sid=0pm,q9n,043\">Cables</a> <a class=\"link\" href=\"/video-glasses/pr?sid=0pm,q9n,srr\">Video Glasses</a> <a class=\"link\" href=\"/remote-controllers/pr?sid=0pm,q9n,e9p\">Remote Controllers</a> <a class=\"link\" href=\"/speakers/pr?sid=0pm,0o7\">Speakers</a> <a class=\"link\" href=\"/portable-audio/pr?sid=0pm,0o7,0it\">Portable Audio</a> <a class=\"link\" href=\"/home-audio/pr?sid=0pm,0o7,2to\">Home Audio</a> <a class=\"link\" href=\"/20-speakers/pr?sid=0pm,0o7,by6\">2.0 Speakers</a> <a class=\"link\" href=\"/51-speakers/pr?sid=0pm,0o7,0g3\">5.1 Speakers</a> <a class=\"link\" href=\"/soundbar/pr?sid=0pm,0o7,yo4\">Soundbar</a> <a class=\"link\" href=\"/41-speakers/pr?sid=0pm,0o7,91n\">4.1 Speakers</a> <a class=\"link\" href=\"/music-players-accessories/pr?sid=0pm,dfp\">Music Players & Accessories</a> <a class=\"link\" href=\"/media-streaming-devices/pr?sid=0pm,dfp,wng\">Media Streaming Devices</a> <a class=\"link\" href=\"/dvdblueray-players/pr?sid=0pm,dfp,kgm\">DVD/Blueray Players</a> <a class=\"link\" href=\"/fm-radio/pr?sid=0pm,dfp,e39\">FM Radio</a> <a class=\"link\" href=\"/boom-box/pr?sid=0pm,dfp,kgd\">Boom Box</a> <a class=\"link\" href=\"/karaoke-players/pr?sid=0pm,dfp,wji\">Karaoke Players</a> <a class=\"link\" href=\"/dvdblueray-players/pr?sid=0pm,dfp,7gb\">DVD/Blueray Players</a> <a class=\"link\" href=\"/voice-recorder/pr?sid=0pm,dfp,zgi\">Voice Recorder</a> <a class=\"link\" href=\"/media-streaming-devices/pr?sid=0pm,dfp,vnw\">Media Streaming Devices</a> <a class=\"link\" href=\"/amplifier-receivers/pr?sid=0pm,dfp,cvr\">Amplifier Receivers</a> <a class=\"link\" href=\"/television/pr?sid=0pm,i2c\">Television</a> <a class=\"link\" href=\"/audio-accessories/pr?sid=0pm,uvd\">Audio Accessories</a> <a class=\"link\" href=\"/cables/pr?sid=0pm,uvd,bti\">Cables</a> <a class=\"link\" href=\"/remote-controllers/pr?sid=0pm,uvd,1z9\">Remote Controllers</a> <a class=\"link\" href=\"/home-theaters/pr?sid=0pm,ehi\">Home Theaters</a> <a class=\"link\" href=\"/headset/pr?sid=0pm,fcn\">Headset</a> <a class=\"link\" href=\"/headphones/pr?sid=0pm,fcn,gc3\">Headphones</a> <a class=\"link\" href=\"/earphones/pr?sid=0pm,fcn,821\">Earphones</a> <a class=\"link\" href=\"/professional-audio-systems/pr?sid=0pm,gq0\">Professional Audio Systems</a> <a class=\"link\" href=\"/sound-mixers/pr?sid=0pm,gq0,vlw\">Sound Mixers</a> <a class=\"link\" href=\"/dj-controllers/pr?sid=0pm,gq0,fgq\">DJ Controllers</a> <a class=\"link\" href=\"/public-address-systems/pr?sid=0pm,gq0,sww\">Public Address Systems</a> <a class=\"link\" href=\"/video-players-recorders/pr?sid=0pm,w7f\">Video Players & Recorders</a> </div><h2><a href=\"/food-nutrition/pr?sid=7jv\">Food &amp; Nutrition</a></h2><div><a class=\"link\" href=\"/dairy-products/pr?sid=7jv,ga2\">Dairy Products</a> <a class=\"link\" href=\"/spices-condiments-sauces/pr?sid=7jv,cph\">Spices, Condiments & Sauces</a> <a class=\"link\" href=\"/condiments/pr?sid=7jv,cph,n29\">Condiments</a> <a class=\"link\" href=\"/pickles-chutneys/pr?sid=7jv,cph,zo9\">Pickles & Chutneys</a> <a class=\"link\" href=\"/dips-sauces-pastes/pr?sid=7jv,cph,rhk\">Dips, Sauces & Pastes</a> <a class=\"link\" href=\"/edible-seeds/pr?sid=7jv,cph,a7t\">Edible Seeds</a> <a class=\"link\" href=\"/salt/pr?sid=7jv,cph,qny\">Salt</a> <a class=\"link\" href=\"/spices-masala/pr?sid=7jv,cph,c99\">Spices & Masala</a> <a class=\"link\" href=\"/beverages/pr?sid=7jv,ldw\">Beverages</a> <a class=\"link\" href=\"/fruit-drinks/pr?sid=7jv,ldw,kli\">Fruit Drinks</a> <a class=\"link\" href=\"/aerated-drinks/pr?sid=7jv,ldw,mno\">Aerated Drinks</a> <a class=\"link\" href=\"/energy-sports-drinks/pr?sid=7jv,ldw,edw\">Energy & Sports Drinks</a> <a class=\"link\" href=\"/coffee/pr?sid=7jv,ldw,kj3\">Coffee</a> <a class=\"link\" href=\"/tea/pr?sid=7jv,ldw,mqx\">Tea</a> <a class=\"link\" href=\"/health-drink-mixes/pr?sid=7jv,ldw,fum\">Health Drink Mixes</a> <a class=\"link\" href=\"/concentrates/pr?sid=7jv,ldw,rek\">Concentrates</a> <a class=\"link\" href=\"/milk-milk-powder/pr?sid=7jv,ldw,syy\">Milk & Milk Powder</a> <a class=\"link\" href=\"/ice-cubes/pr?sid=7jv,ldw,mzo\">Ice Cubes</a> <a class=\"link\" href=\"/buttermilk/pr?sid=7jv,ldw,alx\">Buttermilk</a> <a class=\"link\" href=\"/water/pr?sid=7jv,ldw,zlv\">Water</a> <a class=\"link\" href=\"/lassi/pr?sid=7jv,ldw,nzd\">Lassi</a> <a class=\"link\" href=\"/health-nutrition/pr?sid=7jv,owt\">Health & Nutrition</a> <a class=\"link\" href=\"/vitamin-supplements/pr?sid=7jv,owt,n2j\">Vitamin & Supplements</a> <a class=\"link\" href=\"/protein-supplements/pr?sid=7jv,owt,d9u\">Protein Supplements</a> <a class=\"link\" href=\"/chyawanprash/pr?sid=7jv,owt,k6s\">Chyawanprash</a> <a class=\"link\" href=\"/digestives-probiotics/pr?sid=7jv,owt,nq0\">Digestives & Probiotics</a> <a class=\"link\" href=\"/health-and-energy-drinks/pr?sid=7jv,owt,a39\">Health and Energy drinks</a> <a class=\"link\" href=\"/health-food-snacks/pr?sid=7jv,owt,dn6\">Health Food & Snacks</a> <a class=\"link\" href=\"/bakery-baking-essentials/pr?sid=7jv,32y\">Bakery & Baking Essentials</a> <a class=\"link\" href=\"/breads/pr?sid=7jv,32y,eoc\">Breads</a> <a class=\"link\" href=\"/bakery-rolls/pr?sid=7jv,32y,3cf\">Bakery Rolls</a> <a class=\"link\" href=\"/bread-crumbs/pr?sid=7jv,32y,3np\">Bread Crumbs</a> <a class=\"link\" href=\"/buns/pr?sid=7jv,32y,w19\">Buns</a> <a class=\"link\" href=\"/food-additives/pr?sid=7jv,32y,mhe\">Food Additives</a> <a class=\"link\" href=\"/cakes-pastries/pr?sid=7jv,32y,uwn\">Cakes & Pastries</a> <a class=\"link\" href=\"/rusks/pr?sid=7jv,32y,7qi\">Rusks</a> <a class=\"link\" href=\"/baking-ingredients-decoratives/pr?sid=7jv,32y,htg\">Baking Ingredients & Decoratives</a> <a class=\"link\" href=\"/breakfast-mixes-cereals/pr?sid=7jv,vx6\">Breakfast Mixes & Cereals</a> <a class=\"link\" href=\"/rice-rice-products/pr?sid=7jv,vx6,fhd\">Rice & Rice Products</a> <a class=\"link\" href=\"/corn-flakes/pr?sid=7jv,vx6,gqw\">Corn Flakes</a> <a class=\"link\" href=\"/oats/pr?sid=7jv,vx6,xbz\">Oats</a> <a class=\"link\" href=\"/muesli/pr?sid=7jv,vx6,3ow\">Muesli</a> <a class=\"link\" href=\"/other-breakfast-mixes-cereals/pr?sid=7jv,vx6,9a6\">Other Breakfast Mixes & Cereals</a> <a class=\"link\" href=\"/ready-mixes/pr?sid=7jv,vx6,hpm\">Ready Mixes</a> <a class=\"link\" href=\"/snacks-nibbles/pr?sid=7jv,x9l\">Snacks & Nibbles</a> <a class=\"link\" href=\"/popcorn/pr?sid=7jv,x9l,vb2\">Popcorn</a> <a class=\"link\" href=\"/savouries-namkeens/pr?sid=7jv,x9l,0tp\">Savouries & Namkeens</a> <a class=\"link\" href=\"/chips/pr?sid=7jv,x9l,gqs\">Chips</a> <a class=\"link\" href=\"/cookies-biscuits/pr?sid=7jv,x9l,q9u\">Cookies & Biscuits</a> <a class=\"link\" href=\"/wafers-waffles/pr?sid=7jv,x9l,nm6\">Wafers & Waffles</a> <a class=\"link\" href=\"/fryums-papads/pr?sid=7jv,x9l,0g9\">Fryums & Papads</a> <a class=\"link\" href=\"/canned-food/pr?sid=7jv,nkj\">Canned Food</a> <a class=\"link\" href=\"/food-nutrition-combo/pr?sid=7jv,jid\">Food & Nutrition Combo</a> <a class=\"link\" href=\"/staples/pr?sid=7jv,p3n\">Staples</a> <a class=\"link\" href=\"/sugar-sweeteners/pr?sid=7jv,p3n,sp9\">Sugar & Sweeteners</a> <a class=\"link\" href=\"/soya-products/pr?sid=7jv,p3n,lkg\">Soya Products</a> <a class=\"link\" href=\"/flours-sooji/pr?sid=7jv,p3n,v26\">Flours & Sooji</a> <a class=\"link\" href=\"/dals-pulses/pr?sid=7jv,p3n,0ed\">Dals & Pulses</a> <a class=\"link\" href=\"/grains-millets/pr?sid=7jv,p3n,j4y\">Grains & Millets</a> <a class=\"link\" href=\"/rice-rice-products/pr?sid=7jv,p3n,4ct\">Rice & Rice Products</a> <a class=\"link\" href=\"/poultry-meat-seafood/pr?sid=7jv,44o\">Poultry, Meat & Seafood</a> <a class=\"link\" href=\"/fruits-vegetables/pr?sid=7jv,7rd\">Fruits & Vegetables</a> <a class=\"link\" href=\"/edible-oils-ghee/pr?sid=7jv,72u\">Edible Oils & Ghee</a> <a class=\"link\" href=\"/ghee/pr?sid=7jv,72u,4mb\">Ghee</a> <a class=\"link\" href=\"/edible-oils/pr?sid=7jv,72u,d6s\">Edible Oils</a> <a class=\"link\" href=\"/noodles-pasta/pr?sid=7jv,pv6\">Noodles & Pasta</a> <a class=\"link\" href=\"/noodles/pr?sid=7jv,pv6,vxw\">Noodles</a> <a class=\"link\" href=\"/pasta/pr?sid=7jv,pv6,7wy\">Pasta</a> <a class=\"link\" href=\"/vermicelli/pr?sid=7jv,pv6,nxs\">Vermicelli</a> <a class=\"link\" href=\"/ready-to-cook-eat/pr?sid=7jv,ojp\">Ready to Cook & Eat</a> <a class=\"link\" href=\"/ready-mixes/pr?sid=7jv,ojp,mns\">Ready Mixes</a> <a class=\"link\" href=\"/ready-to-cook-snacks/pr?sid=7jv,ojp,mnp\">Ready to Cook Snacks</a> <a class=\"link\" href=\"/ready-salads/pr?sid=7jv,ojp,yj9\">Ready Salads</a> <a class=\"link\" href=\"/ready-salads/pr?sid=7jv,ojp,wau\">Ready Salads</a> <a class=\"link\" href=\"/soup/pr?sid=7jv,ojp,q0p\">Soup</a> <a class=\"link\" href=\"/ready-meals/pr?sid=7jv,ojp,sew\">Ready Meals</a> <a class=\"link\" href=\"/wraps-bases/pr?sid=7jv,ojp,2xj\">Wraps & Bases</a> <a class=\"link\" href=\"/nuts-dry-fruits-combos/pr?sid=7jv,30b\">Nuts, Dry Fruits & Combos</a> <a class=\"link\" href=\"/nuts-dry-fruits-combo/pr?sid=7jv,30b,ywe\">Nuts & Dry Fruits Combo</a> <a class=\"link\" href=\"/nuts-dry-fruits/pr?sid=7jv,30b,pne\">Nuts & Dry Fruits</a> <a class=\"link\" href=\"/confectioneries-sweets/pr?sid=7jv,iyp\">Confectioneries & Sweets</a> <a class=\"link\" href=\"/chewing-gums/pr?sid=7jv,iyp,zp0\">Chewing Gums</a> <a class=\"link\" href=\"/candies-mouth-fresheners/pr?sid=7jv,iyp,njo\">Candies & Mouth Fresheners</a> <a class=\"link\" href=\"/chocolates/pr?sid=7jv,iyp,s4n\">Chocolates</a> <a class=\"link\" href=\"/sweets-mithai/pr?sid=7jv,iyp,2e1\">Sweets & Mithai</a> <a class=\"link\" href=\"/jams-spreads-honey/pr?sid=7jv,kzq\">Jams, Spreads & Honey</a> <a class=\"link\" href=\"/jams-spreads/pr?sid=7jv,kzq,3uo\">Jams & Spreads</a> <a class=\"link\" href=\"/honey/pr?sid=7jv,kzq,ub9\">Honey</a> <a class=\"link\" href=\"/baby-food/pr?sid=7jv,ipz\">Baby Food</a> </div><h2><a href=\"/furniture/pr?sid=wwe\">Furniture</a></h2><div><a class=\"link\" href=\"/modular-kitchen/pr?sid=wwe,rg5\">Modular Kitchen</a> <a class=\"link\" href=\"/showcases/pr?sid=wwe,3sa\">Showcases</a> <a class=\"link\" href=\"/display-racks/pr?sid=wwe,3sa,sh0\">Display Racks</a> <a class=\"link\" href=\"/display-units/pr?sid=wwe,3sa,13l\">Display Units</a> <a class=\"link\" href=\"/tables/pr?sid=wwe,ki7\">Tables</a> <a class=\"link\" href=\"/side-tables/pr?sid=wwe,ki7,yso\">Side Tables</a> <a class=\"link\" href=\"/portable-laptop-tables/pr?sid=wwe,ki7,d4s\">Portable Laptop Tables</a> <a class=\"link\" href=\"/outdoor-tables/pr?sid=wwe,ki7,bq1\">Outdoor Tables</a> <a class=\"link\" href=\"/office-study-table/pr?sid=wwe,ki7,l1t\">Office Study Table</a> <a class=\"link\" href=\"/nesting-tables/pr?sid=wwe,ki7,vdf\">Nesting Tables</a> <a class=\"link\" href=\"/dressing-tables/pr?sid=wwe,ki7,vh2\">Dressing Tables</a> <a class=\"link\" href=\"/coffee-tables/pr?sid=wwe,ki7,ot1\">Coffee Tables</a> <a class=\"link\" href=\"/furniture-accessories/pr?sid=wwe,q7b\">Furniture Accessories</a> <a class=\"link\" href=\"/belt-tie-racks/pr?sid=wwe,q7b,nsl\">Belt & Tie Racks</a> <a class=\"link\" href=\"/church-pews/pr?sid=wwe,q7b,4hd\">Church Pews</a> <a class=\"link\" href=\"/mannequin-bag-trunks/pr?sid=wwe,q7b,11u\">Mannequin Bag & Trunks</a> <a class=\"link\" href=\"/walker-rollators/pr?sid=wwe,q7b,bts\">Walker Rollators</a> <a class=\"link\" href=\"/kids-bean-bag/pr?sid=wwe,q7b,met\">Kids Bean Bag</a> <a class=\"link\" href=\"/portable-pool/pr?sid=wwe,q7b,67n\">Portable Pool</a> <a class=\"link\" href=\"/awnings/pr?sid=wwe,q7b,63g\">Awnings</a> <a class=\"link\" href=\"/fume-hoods/pr?sid=wwe,q7b,pon\">Fume Hoods</a> <a class=\"link\" href=\"/coffin-caskets/pr?sid=wwe,q7b,l44\">Coffin Caskets</a> <a class=\"link\" href=\"/dressing-mirrors/pr?sid=wwe,q7b,zdz\">Dressing Mirrors</a> <a class=\"link\" href=\"/prefabricated-homes/pr?sid=wwe,q7b,91j\">Prefabricated Homes</a> <a class=\"link\" href=\"/treatment-tables/pr?sid=wwe,q7b,llm\">Treatment Tables</a> <a class=\"link\" href=\"/fireplaces/pr?sid=wwe,q7b,qou\">Fireplaces</a> <a class=\"link\" href=\"/medicine-cabinets/pr?sid=wwe,q7b,09y\">Medicine Cabinets</a> <a class=\"link\" href=\"/hospital-beds/pr?sid=wwe,q7b,i7g\">Hospital Beds</a> <a class=\"link\" href=\"/auditorium-chairs/pr?sid=wwe,q7b,4hr\">Auditorium Chairs</a> <a class=\"link\" href=\"/cat-trees/pr?sid=wwe,q7b,qqc\">Cat Trees</a> <a class=\"link\" href=\"/magazine-holder/pr?sid=wwe,q7b,49k\">Magazine Holder</a> <a class=\"link\" href=\"/coffin-stands/pr?sid=wwe,q7b,26v\">Coffin Stands</a> <a class=\"link\" href=\"/luggage-racks/pr?sid=wwe,q7b,a7b\">Luggage Racks</a> <a class=\"link\" href=\"/trunk-boxes/pr?sid=wwe,q7b,3ql\">Trunk Boxes</a> <a class=\"link\" href=\"/room-divider-partitions/pr?sid=wwe,q7b,96a\">Room Divider Partitions</a> <a class=\"link\" href=\"/shampoo-styling-chairs/pr?sid=wwe,q7b,hqd\">Shampoo Styling Chairs</a> <a class=\"link\" href=\"/saline-stands/pr?sid=wwe,q7b,md4\">Saline Stands</a> <a class=\"link\" href=\"/anesthesia-cart-trolleys/pr?sid=wwe,q7b,m6q\">Anesthesia Cart & Trolleys</a> <a class=\"link\" href=\"/coffin-trolleys/pr?sid=wwe,q7b,fvn\">Coffin Trolleys</a> <a class=\"link\" href=\"/bar-trolleys/pr?sid=wwe,q7b,nrx\">Bar Trolleys</a> <a class=\"link\" href=\"/bird-baths/pr?sid=wwe,q7b,gcd\">Bird Baths</a> <a class=\"link\" href=\"/outdoor-set/pr?sid=wwe,q7b,4yj\">Outdoor Set</a> <a class=\"link\" href=\"/blood-donor-chairs/pr?sid=wwe,q7b,0v7\">Blood Donor Chairs</a> <a class=\"link\" href=\"/podium-lectern-pulpits/pr?sid=wwe,q7b,otl\">Podium & Lectern Pulpits</a> <a class=\"link\" href=\"/bird-houses/pr?sid=wwe,q7b,ko2\">Bird Houses</a> <a class=\"link\" href=\"/aquarium-tanks/pr?sid=wwe,q7b,jhc\">Aquarium Tanks</a> <a class=\"link\" href=\"/bar-stools-chairs/pr?sid=wwe,q7b,zzm\">Bar Stools & Chairs</a> <a class=\"link\" href=\"/hospital-bedside-screens/pr?sid=wwe,q7b,ot0\">Hospital Bedside Screens</a> <a class=\"link\" href=\"/oxygen-cylinder-holders/pr?sid=wwe,q7b,ur2\">Oxygen Cylinder Holders</a> <a class=\"link\" href=\"/laundry-trolleys/pr?sid=wwe,q7b,bba\">Laundry Trolleys</a> <a class=\"link\" href=\"/cat-scratching-posts/pr?sid=wwe,q7b,at2\">Cat Scratching Posts</a> <a class=\"link\" href=\"/pet-stair-ramps/pr?sid=wwe,q7b,w0r\">Pet Stair Ramps</a> <a class=\"link\" href=\"/notice-boards/pr?sid=wwe,q7b,fdg\">Notice Boards</a> <a class=\"link\" href=\"/pet-beds/pr?sid=wwe,q7b,w24\">Pet Beds</a> <a class=\"link\" href=\"/pet-grooming-tables/pr?sid=wwe,q7b,9id\">Pet Grooming Tables</a> <a class=\"link\" href=\"/gazebos/pr?sid=wwe,q7b,pmd\">Gazebos</a> <a class=\"link\" href=\"/pet-crates/pr?sid=wwe,q7b,mc0\">Pet Crates</a> <a class=\"link\" href=\"/keyboard-trays/pr?sid=wwe,q7b,0ev\">Keyboard Trays</a> <a class=\"link\" href=\"/pool-step-ladders/pr?sid=wwe,q7b,gtr\">Pool Step Ladders</a> <a class=\"link\" href=\"/spa-trolleys/pr?sid=wwe,q7b,q36\">Spa Trolleys</a> <a class=\"link\" href=\"/lounger-chaises/pr?sid=wwe,q7b,j7e\">Lounger Chaises</a> <a class=\"link\" href=\"/furniture-combo/pr?sid=wwe,q7b,0rw\">Furniture Combo</a> <a class=\"link\" href=\"/home-temple/pr?sid=wwe,q7b,9zz\">Home Temple</a> <a class=\"link\" href=\"/table-chair-combo/pr?sid=wwe,q7b,z0t\">Table & Chair Combo</a> <a class=\"link\" href=\"/moulded-chair/pr?sid=wwe,q7b,f77\">Moulded Chair</a> <a class=\"link\" href=\"/benches/pr?sid=wwe,q7b,xsq\">Benches</a> <a class=\"link\" href=\"/pedicure-manicure-chairs/pr?sid=wwe,q7b,psf\">Pedicure & Manicure Chairs</a> <a class=\"link\" href=\"/gynecologist-tables/pr?sid=wwe,q7b,q9d\">Gynecologist Tables</a> <a class=\"link\" href=\"/ottoman-pouffe/pr?sid=wwe,q7b,hht\">Ottoman & Pouffe</a> <a class=\"link\" href=\"/bunk-loft-beds/pr?sid=wwe,q7b,v04\">Bunk Loft Beds</a> <a class=\"link\" href=\"/massage-beds/pr?sid=wwe,q7b,0zh\">Massage Beds</a> <a class=\"link\" href=\"/massage-chairs/pr?sid=wwe,q7b,s6b\">Massage Chairs</a> <a class=\"link\" href=\"/aquarium-tank-dividers/pr?sid=wwe,q7b,y7p\">Aquarium Tank Dividers</a> <a class=\"link\" href=\"/changing-room-lockers/pr?sid=wwe,q7b,l4l\">Changing Room Lockers</a> <a class=\"link\" href=\"/kids-table/pr?sid=wwe,q7b,kko\">Kids Table</a> <a class=\"link\" href=\"/litter-box-enclosures/pr?sid=wwe,q7b,kc3\">Litter Box Enclosures</a> <a class=\"link\" href=\"/tattoo-trolleys/pr?sid=wwe,q7b,s6n\">Tattoo Trolleys</a> <a class=\"link\" href=\"/crowd-barriers/pr?sid=wwe,q7b,1h4\">Crowd Barriers</a> <a class=\"link\" href=\"/hammock-swings/pr?sid=wwe,q7b,1sr\">Hammock Swings</a> <a class=\"link\" href=\"/fence-pickets/pr?sid=wwe,q7b,o3q\">Fence Pickets</a> <a class=\"link\" href=\"/hospital-food-stools/pr?sid=wwe,q7b,i31\">Hospital Food Stools</a> <a class=\"link\" href=\"/mattress-stoppers/pr?sid=wwe,q7b,6qi\">Mattress Stoppers</a> <a class=\"link\" href=\"/kitchen-trolleys/pr?sid=wwe,q7b,7zt\">Kitchen Trolleys</a> <a class=\"link\" href=\"/big-sacs/pr?sid=wwe,q7b,aoe\">Big Sacs</a> <a class=\"link\" href=\"/kitchen-islands/pr?sid=wwe,q7b,zsu\">Kitchen Islands</a> <a class=\"link\" href=\"/stretchers/pr?sid=wwe,q7b,f9m\">Stretchers</a> <a class=\"link\" href=\"/kid-seating/pr?sid=wwe,q7b,kh7\">Kid Seating</a> <a class=\"link\" href=\"/dental-chairs/pr?sid=wwe,q7b,i6l\">Dental Chairs</a> <a class=\"link\" href=\"/operatory-cabinetry/pr?sid=wwe,q7b,gpm\">Operatory Cabinetry</a> <a class=\"link\" href=\"/bottle-rack/pr?sid=wwe,q7b,27x\">Bottle Rack</a> <a class=\"link\" href=\"/kitchen-grease-filters/pr?sid=wwe,q7b,3pf\">Kitchen Grease Filters</a> <a class=\"link\" href=\"/hospital-trolleys/pr?sid=wwe,q7b,w3k\">Hospital Trolleys</a> <a class=\"link\" href=\"/hospital-baby-cribs/pr?sid=wwe,q7b,pbk\">Hospital Baby Cribs</a> <a class=\"link\" href=\"/pool-covers/pr?sid=wwe,q7b,wvf\">Pool Covers</a> <a class=\"link\" href=\"/shoe-racks-more/pr?sid=wwe,0ye\">Shoe Racks & More</a> <a class=\"link\" href=\"/shoe-rack/pr?sid=wwe,0ye,n0l\">Shoe Rack</a> <a class=\"link\" href=\"/bean-bags/pr?sid=wwe,4n6\">Bean Bags</a> <a class=\"link\" href=\"/bean-bag-fillers/pr?sid=wwe,4n6,biq\">Bean Bag Fillers</a> <a class=\"link\" href=\"/bean-bag-covers/pr?sid=wwe,4n6,q2w\">Bean Bag Covers</a> <a class=\"link\" href=\"/bean-bags/pr?sid=wwe,4n6,zet\">Bean Bags</a> <a class=\"link\" href=\"/mattresses/pr?sid=wwe,rg9\">Mattresses</a> <a class=\"link\" href=\"/bed-mattress/pr?sid=wwe,rg9,6t1\">Bed Mattress</a> <a class=\"link\" href=\"/shelves/pr?sid=wwe,vmc\">Shelves</a> <a class=\"link\" href=\"/racks-shelves/pr?sid=wwe,vmc,92h\">Racks & Shelves</a> <a class=\"link\" href=\"/bookshelves/pr?sid=wwe,vmc,1qe\">Bookshelves</a> <a class=\"link\" href=\"/dining-tables-sets/pr?sid=wwe,ur9\">Dining Tables & Sets</a> <a class=\"link\" href=\"/dining-sets/pr?sid=wwe,ur9,0t7\">Dining Sets</a> <a class=\"link\" href=\"/dining-tables/pr?sid=wwe,ur9,ysz\">Dining Tables</a> <a class=\"link\" href=\"/bedroom-set/pr?sid=wwe,ual\">Bedroom Set</a> <a class=\"link\" href=\"/bedroom-set/pr?sid=wwe,ual,reu\">Bedroom Set</a> <a class=\"link\" href=\"/sofa-beds-more/pr?sid=wwe,osg\">Sofa Beds & More</a> <a class=\"link\" href=\"/sofa-beds/pr?sid=wwe,osg,itp\">Sofa Beds</a> <a class=\"link\" href=\"/beds-more/pr?sid=wwe,7p7\">Beds & More</a> <a class=\"link\" href=\"/beds/pr?sid=wwe,7p7,4yf\">Beds</a> <a class=\"link\" href=\"/bedroom-set/pr?sid=wwe,7p7,juz\">Bedroom Set</a> <a class=\"link\" href=\"/chairs/pr?sid=wwe,y7b\">Chairs</a> <a class=\"link\" href=\"/gaming-chair/pr?sid=wwe,y7b,cnp\">Gaming Chair</a> <a class=\"link\" href=\"/floor-seating-chairs/pr?sid=wwe,y7b,g32\">Floor Seating Chairs</a> <a class=\"link\" href=\"/outdoor-chairs/pr?sid=wwe,y7b,bzv\">Outdoor Chairs</a> <a class=\"link\" href=\"/dining-chairs/pr?sid=wwe,y7b,ke2\">Dining Chairs</a> <a class=\"link\" href=\"/office-study-chairs/pr?sid=wwe,y7b,foc\">Office Study Chairs</a> <a class=\"link\" href=\"/stool/pr?sid=wwe,y7b,j3p\">Stool</a> <a class=\"link\" href=\"/living-room-chairs/pr?sid=wwe,y7b,lwd\">Living Room Chairs</a> <a class=\"link\" href=\"/rocking-chairs/pr?sid=wwe,y7b,99i\">Rocking Chairs</a> <a class=\"link\" href=\"/drawers/pr?sid=wwe,xdf\">Drawers</a> <a class=\"link\" href=\"/cabinets-drawers/pr?sid=wwe,xdf,fcg\">Cabinets & Drawers</a> <a class=\"link\" href=\"/tv-units-cabinets/pr?sid=wwe,243\">TV Units & Cabinets</a> <a class=\"link\" href=\"/tv-entertainment-units/pr?sid=wwe,243,koe\">TV Entertainment Units</a> <a class=\"link\" href=\"/cabinets/pr?sid=wwe,6by\">Cabinets</a> <a class=\"link\" href=\"/bar-cabinets/pr?sid=wwe,6by,n9q\">Bar Cabinets</a> <a class=\"link\" href=\"/kitchen-cabinets/pr?sid=wwe,6by,9dn\">Kitchen Cabinets</a> <a class=\"link\" href=\"/filing-cabinets/pr?sid=wwe,6by,iht\">Filing Cabinets</a> <a class=\"link\" href=\"/wardrobes-more/pr?sid=wwe,fc3\">Wardrobes & More</a> <a class=\"link\" href=\"/wardrobes/pr?sid=wwe,fc3,dsw\">Wardrobes</a> <a class=\"link\" href=\"/collapsible-wardrobes/pr?sid=wwe,fc3,xlp\">Collapsible Wardrobes</a> <a class=\"link\" href=\"/stands/pr?sid=wwe,v1j\">Stands</a> <a class=\"link\" href=\"/coat-umbrella-stands/pr?sid=wwe,v1j,vvt\">Coat & Umbrella Stands</a> <a class=\"link\" href=\"/sofas/pr?sid=wwe,c3z\">Sofas</a> <a class=\"link\" href=\"/sofas-sectionals/pr?sid=wwe,c3z,0mv\">Sofas & Sectionals</a> <a class=\"link\" href=\"/sofa-sets/pr?sid=wwe,c3z,r0c\">Sofa Sets</a> <a class=\"link\" href=\"/recliners/pr?sid=wwe,c3z,gxy\">Recliners</a> <a class=\"link\" href=\"/diwans-settees/pr?sid=wwe,c3z,cba\">Diwans & Settees</a> <a class=\"link\" href=\"/inflatable-sofas/pr?sid=wwe,c3z,hjj\">Inflatable Sofas</a> </div><h2><a href=\"/music/pr?sid=p2c\">Music</a></h2><div><a class=\"link\" href=\"/dance-styles/pr?sid=p2c,rxt\">Dance Styles</a> <a class=\"link\" href=\"/special-interest/pr?sid=p2c,bnp\">Special Interest</a> <a class=\"link\" href=\"/vcd/pr?sid=p2c,9gk\">VCD</a> <a class=\"link\" href=\"/world-music/pr?sid=p2c,a9j\">World Music</a> <a class=\"link\" href=\"/wav/pr?sid=p2c,l6e\">WAV</a> <a class=\"link\" href=\"/mini-cd/pr?sid=p2c,pwl\">Mini CD</a> <a class=\"link\" href=\"/rap-hiphop/pr?sid=p2c,oox\">Rap & Hip-Hop</a> <a class=\"link\" href=\"/live/pr?sid=p2c,lj3\">Live</a> <a class=\"link\" href=\"/electronicdance/pr?sid=p2c,rr3\">Electronic/Dance</a> <a class=\"link\" href=\"/ghazal/pr?sid=p2c,l0d\">Ghazal</a> <a class=\"link\" href=\"/dvd/pr?sid=p2c,n03\">DVD</a> <a class=\"link\" href=\"/instrumental/pr?sid=p2c,wi2\">Instrumental</a> <a class=\"link\" href=\"/film-ost/pr?sid=p2c,tfk\">Film / OST</a> <a class=\"link\" href=\"/children-teenagers/pr?sid=p2c,5s3\">Children & Teenagers</a> <a class=\"link\" href=\"/soul-rb/pr?sid=p2c,qih\">Soul / R&B</a> <a class=\"link\" href=\"/exercise-fitness/pr?sid=p2c,m0t\">Exercise & Fitness</a> <a class=\"link\" href=\"/qawwali/pr?sid=p2c,7na\">Qawwali</a> <a class=\"link\" href=\"/reggae/pr?sid=p2c,fwk\">Reggae</a> <a class=\"link\" href=\"/folk/pr?sid=p2c,u2v\">Folk</a> <a class=\"link\" href=\"/devotional-spiritual/pr?sid=p2c,m66\">Devotional & Spiritual</a> <a class=\"link\" href=\"/audio-cd/pr?sid=p2c,cfb\">Audio CD</a> <a class=\"link\" href=\"/jazz/pr?sid=p2c,aye\">Jazz</a> <a class=\"link\" href=\"/indi-pop-indian-artists/pr?sid=p2c,ing\">Indi Pop (Indian Artists)</a> <a class=\"link\" href=\"/rock/pr?sid=p2c,y8b\">Rock</a> <a class=\"link\" href=\"/vinyl/pr?sid=p2c,u7b\">Vinyl</a> <a class=\"link\" href=\"/festivals-occasions/pr?sid=p2c,gvx\">Festivals & Occasions</a> <a class=\"link\" href=\"/mp3/pr?sid=p2c,9g1\">MP3</a> <a class=\"link\" href=\"/sufi/pr?sid=p2c,6kp\">Sufi</a> <a class=\"link\" href=\"/classical/pr?sid=p2c,pjf\">Classical</a> <a class=\"link\" href=\"/lounge-fusion/pr?sid=p2c,foh\">Lounge / Fusion</a> <a class=\"link\" href=\"/blues/pr?sid=p2c,4tk\">Blues</a> <a class=\"link\" href=\"/pop/pr?sid=p2c,k7h\">Pop</a> <a class=\"link\" href=\"/country-western/pr?sid=p2c,nbv\">Country & Western</a> </div><h2><a href=\"/packaging/pr?sid=ddf\">Packaging</a></h2><div><a class=\"link\" href=\"/flipkart-carton-box/pr?sid=ddf,oor\">Flipkart Carton Box</a> <a class=\"link\" href=\"/flipkart-tapes/pr?sid=ddf,tmc\">Flipkart Tapes</a> <a class=\"link\" href=\"/flipkart-security-bag/pr?sid=ddf,gn7\">Flipkart Security Bag</a> </div><h2><a href=\"/kids-accessories/pr?sid=d69\">Kids Accessories</a></h2><div><a class=\"link\" href=\"/kids-bags-belts-wallets/pr?sid=d69,zha\">Kids Bags, Belts & Wallets</a> <a class=\"link\" href=\"/weekender-bags/pr?sid=d69,zha,nr4\">Weekender Bags</a> <a class=\"link\" href=\"/wallets/pr?sid=d69,zha,1u1\">Wallets</a> <a class=\"link\" href=\"/trolley-bags/pr?sid=d69,zha,zrn\">Trolley Bags</a> <a class=\"link\" href=\"/daypacks/pr?sid=d69,zha,p1n\">Daypacks</a> <a class=\"link\" href=\"/multipurpose-bags/pr?sid=d69,zha,ewm\">Multipurpose Bags</a> <a class=\"link\" href=\"/messenger-bags/pr?sid=d69,zha,hbi\">Messenger Bags</a> <a class=\"link\" href=\"/haversacks/pr?sid=d69,zha,gbq\">Haversacks</a> <a class=\"link\" href=\"/sling-bags/pr?sid=d69,zha,tij\">Sling Bags</a> <a class=\"link\" href=\"/belts/pr?sid=d69,zha,fn3\">Belts</a> <a class=\"link\" href=\"/backpacks-shoulder-bags/pr?sid=d69,zha,7jb\">Backpacks & Shoulder Bags</a> <a class=\"link\" href=\"/school-supplies/pr?sid=d69,thr\">School Supplies</a> <a class=\"link\" href=\"/umbrellas/pr?sid=d69,thr,n4k\">Umbrellas</a> <a class=\"link\" href=\"/geometry-pencil-boxes/pr?sid=d69,thr,dkv\">Geometry & Pencil Boxes</a> <a class=\"link\" href=\"/lunch-boxes/pr?sid=d69,thr,vzp\">Lunch Boxes</a> <a class=\"link\" href=\"/stickers/pr?sid=d69,thr,ofx\">Stickers</a> <a class=\"link\" href=\"/water-bottles/pr?sid=d69,thr,e1h\">Water Bottles</a> <a class=\"link\" href=\"/school-bags/pr?sid=d69,thr,wsp\">School Bags</a> <a class=\"link\" href=\"/examination-pads/pr?sid=d69,thr,a34\">Examination Pads</a> <a class=\"link\" href=\"/school-accessories/pr?sid=d69,thr,bap\">School Accessories</a> <a class=\"link\" href=\"/badges/pr?sid=d69,thr,gcr\">Badges</a> <a class=\"link\" href=\"/coin-banks/pr?sid=d69,thr,c4y\">Coin Banks</a> <a class=\"link\" href=\"/school-sets/pr?sid=d69,thr,scm\">School Sets</a> <a class=\"link\" href=\"/uniform/pr?sid=d69,thr,ub2\">Uniform</a> <a class=\"link\" href=\"/lunch-bags/pr?sid=d69,thr,t4b\">Lunch Bags</a> </div><h2><a href=\"/elearning/pr?sid=xfw\">E-Learning</a></h2><div><a class=\"link\" href=\"/online-courses/pr?sid=xfw,way\">Online Courses</a> <a class=\"link\" href=\"/online-tests/pr?sid=xfw,ogo\">Online Tests</a> <a class=\"link\" href=\"/reference/pr?sid=xfw,igx\">Reference</a> <a class=\"link\" href=\"/certification-professional-courses/pr?sid=xfw,lnr\">Certification & Professional Courses</a> <a class=\"link\" href=\"/educational-media/pr?sid=xfw,bhn\">Educational Media</a> <a class=\"link\" href=\"/academic/pr?sid=xfw,bhn,yqw\">Academic</a> <a class=\"link\" href=\"/reference/pr?sid=xfw,bhn,1eo\">Reference</a> </div><h2><a href=\"/special/pr?sid=qrm\">Special</a></h2><div><a class=\"link\" href=\"/festivals/pr?sid=qrm,rag\">Festivals</a> <a class=\"link\" href=\"/raksha-bandhan/pr?sid=qrm,rag,ru6\">Raksha Bandhan</a> </div><h2><a href=\"/automation-robotics/pr?sid=igc\">Automation &amp; Robotics</a></h2><div><a class=\"link\" href=\"/smart-voice-translators/pr?sid=igc,21k\">Smart Voice Translators</a> <a class=\"link\" href=\"/smart-lighting/pr?sid=igc,b4q\">Smart Lighting</a> <a class=\"link\" href=\"/smart-assistants/pr?sid=igc,amm\">Smart Assistants</a> <a class=\"link\" href=\"/drones/pr?sid=igc,7x3\">Drones</a> <a class=\"link\" href=\"/sensor-security-systems/pr?sid=igc,yj7\">Sensor Security Systems</a> <a class=\"link\" href=\"/multipurposecontroller/pr?sid=igc,uz2\">multipurpose_controller</a> <a class=\"link\" href=\"/smart-switches/pr?sid=igc,snr\">Smart Switches</a> <a class=\"link\" href=\"/sensors-alarms/pr?sid=igc,v7d\">Sensors & Alarms</a> <a class=\"link\" href=\"/metal-voltage-detectors/pr?sid=igc,v7d,g19\">Metal & Voltage Detectors</a> <a class=\"link\" href=\"/door-window-alarms/pr?sid=igc,v7d,bn1\">Door & Window Alarms</a> <a class=\"link\" href=\"/gas-leak-detector/pr?sid=igc,v7d,0gt\">Gas Leak Detector</a> <a class=\"link\" href=\"/smoke-fire-alarm/pr?sid=igc,v7d,2ii\">Smoke & Fire Alarm</a> <a class=\"link\" href=\"/leak-water-sensor/pr?sid=igc,v7d,4j7\">Leak & Water Sensor</a> <a class=\"link\" href=\"/motion-sensors/pr?sid=igc,v7d,fuh\">Motion Sensors</a> <a class=\"link\" href=\"/moisture-meters/pr?sid=igc,v7d,new\">Moisture Meters</a> <a class=\"link\" href=\"/garage-parking-sensors/pr?sid=igc,v7d,xm1\">Garage Parking Sensors</a> <a class=\"link\" href=\"/beacon/pr?sid=igc,v7d,jz4\">Beacon</a> <a class=\"link\" href=\"/smart-monitoring-systems/pr?sid=igc,ukp\">Smart Monitoring Systems</a> <a class=\"link\" href=\"/controllers/pr?sid=igc,7u1\">Controllers</a> <a class=\"link\" href=\"/smart-pens/pr?sid=igc,ud9\">Smart Pens</a> <a class=\"link\" href=\"/smart-switches/pr?sid=igc,xpt\">Smart Switches</a> <a class=\"link\" href=\"/surveillance-devices/pr?sid=igc,j69\">Surveillance Devices</a> <a class=\"link\" href=\"/baby-monitors/pr?sid=igc,j69,qvf\">Baby Monitors</a> <a class=\"link\" href=\"/security-cameras/pr?sid=igc,j69,agd\">Security Cameras</a> <a class=\"link\" href=\"/security-camera-system-accessories/pr?sid=igc,j69,ki2\">Security Camera System Accessories</a> <a class=\"link\" href=\"/video-door-phone/pr?sid=igc,j69,ycc\">Video Door Phone</a> <a class=\"link\" href=\"/smart-door-locks/pr?sid=igc,u0f\">Smart Door Locks</a> </div><h2><a href=\"/tools-hardware/pr?sid=amz\">Tools &amp; Hardware</a></h2><div><a class=\"link\" href=\"/tools/pr?sid=amz,qrp\">Tools</a> <a class=\"link\" href=\"/hand-tools/pr?sid=amz,qrp,ez4\">Hand Tools</a> <a class=\"link\" href=\"/alternate-energy/pr?sid=amz,qrp,wa4\">Alternate Energy</a> <a class=\"link\" href=\"/power-tools/pr?sid=amz,qrp,7yd\">Power Tools</a> <a class=\"link\" href=\"/measuring-layout-tools/pr?sid=amz,qrp,h3w\">Measuring & Layout Tools</a> <a class=\"link\" href=\"/paint-equipments-supplies/pr?sid=amz,qrp,cfz\">Paint Equipments & Supplies</a> <a class=\"link\" href=\"/gardening-tools/pr?sid=amz,qrp,h0o\">Gardening Tools</a> <a class=\"link\" href=\"/home-utilities/pr?sid=amz,qrp,dc4\">Home Utilities</a> <a class=\"link\" href=\"/building-construction/pr?sid=amz,qrp,aoy\">Building & Construction</a> <a class=\"link\" href=\"/home-automation-safety/pr?sid=amz,qrp,gk1\">Home Automation & Safety</a> <a class=\"link\" href=\"/tool-accessories/pr?sid=amz,qrp,pyr\">Tool Accessories</a> <a class=\"link\" href=\"/light-fixtures/pr?sid=amz,qrp,mlq\">Light Fixtures</a> <a class=\"link\" href=\"/home-organizers-storage/pr?sid=amz,qrp,ezf\">Home Organizers & Storage</a> <a class=\"link\" href=\"/tools-combo/pr?sid=amz,qrp,pf6\">Tools Combo</a> <a class=\"link\" href=\"/hardware-electricals/pr?sid=amz,qrp,rmi\">Hardware & Electricals</a> </div><h2><a href=\"/eyewear/pr?sid=u73\">Eyewear</a></h2><div><a class=\"link\" href=\"/reading-glasses/pr?sid=u73,2uc\">Reading Glasses</a> <a class=\"link\" href=\"/contact-lenses/pr?sid=u73,n9v\">Contact Lenses</a> <a class=\"link\" href=\"/frames/pr?sid=u73,h4k\">Frames</a> <a class=\"link\" href=\"/nose-pads/pr?sid=u73,lw4\">Nose Pads</a> </div><h2><a href=\"/wearable-smart-devices/pr?sid=ajy\">Wearable Smart Devices</a></h2><div><a class=\"link\" href=\"/smart-watches/pr?sid=ajy,buh\">Smart Watches</a> <a class=\"link\" href=\"/smart-bands/pr?sid=ajy,q7p\">Smart Bands</a> <a class=\"link\" href=\"/bluetooth-hats/pr?sid=ajy,2p9\">Bluetooth Hats</a> <a class=\"link\" href=\"/smart-gloves/pr?sid=ajy,av4\">Smart Gloves</a> <a class=\"link\" href=\"/smart-jackets/pr?sid=ajy,xti\">Smart Jackets</a> <a class=\"link\" href=\"/smart-glasses/pr?sid=ajy,tcy\">Smart Glasses</a> <a class=\"link\" href=\"/smart-headphones/pr?sid=ajy,vam\">Smart Headphones</a> <a class=\"link\" href=\"/smart-pendants/pr?sid=ajy,uib\">Smart Pendants</a> <a class=\"link\" href=\"/wearable-accessories/pr?sid=ajy,vne\">Wearable Accessories</a> <a class=\"link\" href=\"/smart-watch-screenguards/pr?sid=ajy,vne,qic\">Smart Watch Screenguards</a> <a class=\"link\" href=\"/smart-band-straps/pr?sid=ajy,vne,hje\">Smart Band Straps</a> <a class=\"link\" href=\"/smart-watch-straps/pr?sid=ajy,vne,0wk\">Smart Watch Straps</a> <a class=\"link\" href=\"/mods/pr?sid=ajy,vne,dar\">Mods</a> <a class=\"link\" href=\"/smart-trackers/pr?sid=ajy,7rp\">Smart Trackers</a> <a class=\"link\" href=\"/smart-rings/pr?sid=ajy,p6d\">Smart Rings</a> <a class=\"link\" href=\"/smart-footwears/pr?sid=ajy,sbq\">Smart Footwears</a> <a class=\"link\" href=\"/vr-camera/pr?sid=ajy,01r\">VR Camera</a> <a class=\"link\" href=\"/bluetooth-item-finders/pr?sid=ajy,dsr\">Bluetooth Item Finders</a> <a class=\"link\" href=\"/vr-controllers/pr?sid=ajy,4zv\">VR Controllers</a> <a class=\"link\" href=\"/smart-helmets/pr?sid=ajy,9f0\">Smart Helmets</a> </div><h2><a href=\"/musical-instruments/pr?sid=ypu\">Musical Instruments</a></h2><div><a class=\"link\" href=\"/string-instruments/pr?sid=ypu,ujd\">String Instruments</a> <a class=\"link\" href=\"/tonkori/pr?sid=ypu,ujd,1yd\">Tonkori</a> <a class=\"link\" href=\"/double-bass/pr?sid=ypu,ujd,oo9\">Double Bass</a> <a class=\"link\" href=\"/sitars/pr?sid=ypu,ujd,z9z\">Sitars</a> <a class=\"link\" href=\"/veenas/pr?sid=ypu,ujd,im6\">Veenas</a> <a class=\"link\" href=\"/violins/pr?sid=ypu,ujd,hbc\">Violins</a> <a class=\"link\" href=\"/tanpuras/pr?sid=ypu,ujd,of2\">Tanpuras</a> <a class=\"link\" href=\"/electric-guitars/pr?sid=ypu,ujd,kqe\">Electric Guitars</a> <a class=\"link\" href=\"/lyre/pr?sid=ypu,ujd,4s6\">Lyre</a> <a class=\"link\" href=\"/mandolins/pr?sid=ypu,ujd,ht4\">Mandolins</a> <a class=\"link\" href=\"/taus/pr?sid=ypu,ujd,vta\">Taus</a> <a class=\"link\" href=\"/santoors/pr?sid=ypu,ujd,jqk\">Santoors</a> <a class=\"link\" href=\"/sanshin/pr?sid=ypu,ujd,7rk\">Sanshin</a> <a class=\"link\" href=\"/ukuleles/pr?sid=ypu,ujd,ggx\">Ukuleles</a> <a class=\"link\" href=\"/sanshin/pr?sid=ypu,ujd,39a\">Sanshin</a> <a class=\"link\" href=\"/tonkori/pr?sid=ypu,ujd,hal\">Tonkori</a> <a class=\"link\" href=\"/acoustic-guitars/pr?sid=ypu,ujd,7wz\">Acoustic Guitars</a> <a class=\"link\" href=\"/accessories/pr?sid=ypu,ujd,m73\">Accessories</a> <a class=\"link\" href=\"/bass-guitars/pr?sid=ypu,ujd,vwq\">Bass Guitars</a> <a class=\"link\" href=\"/lyre/pr?sid=ypu,ujd,0u6\">Lyre</a> <a class=\"link\" href=\"/wind-instruments/pr?sid=ypu,a3t\">Wind Instruments</a> <a class=\"link\" href=\"/trumpets/pr?sid=ypu,a3t,2a6\">Trumpets</a> <a class=\"link\" href=\"/alto-horns/pr?sid=ypu,a3t,426\">Alto Horns</a> <a class=\"link\" href=\"/sousaphones/pr?sid=ypu,a3t,7dj\">Sousaphones</a> <a class=\"link\" href=\"/tubas/pr?sid=ypu,a3t,ja2\">Tubas</a> <a class=\"link\" href=\"/clarinets/pr?sid=ypu,a3t,jda\">Clarinets</a> <a class=\"link\" href=\"/bagpipes/pr?sid=ypu,a3t,uq0\">Bagpipes</a> <a class=\"link\" href=\"/euphoniums/pr?sid=ypu,a3t,ffb\">Euphoniums</a> <a class=\"link\" href=\"/accessories/pr?sid=ypu,a3t,qg1\">Accessories</a> <a class=\"link\" href=\"/tibetan-horns/pr?sid=ypu,a3t,qz6\">Tibetan Horns</a> <a class=\"link\" href=\"/concertinas/pr?sid=ypu,a3t,hph\">Concertinas</a> <a class=\"link\" href=\"/flugelhorns/pr?sid=ypu,a3t,x1s\">Flugelhorns</a> <a class=\"link\" href=\"/trombones/pr?sid=ypu,a3t,wcp\">Trombones</a> <a class=\"link\" href=\"/conches/pr?sid=ypu,a3t,n6o\">Conches</a> <a class=\"link\" href=\"/cornets/pr?sid=ypu,a3t,aqv\">Cornets</a> <a class=\"link\" href=\"/flutes/pr?sid=ypu,a3t,q4z\">Flutes</a> <a class=\"link\" href=\"/saxophones/pr?sid=ypu,a3t,bg3\">Saxophones</a> <a class=\"link\" href=\"/shehanais/pr?sid=ypu,a3t,9du\">Shehanais</a> <a class=\"link\" href=\"/bugles/pr?sid=ypu,a3t,wzg\">Bugles</a> <a class=\"link\" href=\"/baritones/pr?sid=ypu,a3t,pzv\">Baritones</a> <a class=\"link\" href=\"/mellophones/pr?sid=ypu,a3t,phv\">Mellophones</a> <a class=\"link\" href=\"/pungis/pr?sid=ypu,a3t,ljj\">Pungis</a> <a class=\"link\" href=\"/bassoons/pr?sid=ypu,a3t,f9t\">Bassoons</a> <a class=\"link\" href=\"/oboes/pr?sid=ypu,a3t,od9\">Oboes</a> <a class=\"link\" href=\"/recorders/pr?sid=ypu,a3t,eyt\">Recorders</a> <a class=\"link\" href=\"/harmonicas/pr?sid=ypu,a3t,p03\">Harmonicas</a> <a class=\"link\" href=\"/keys-synthesizers/pr?sid=ypu,nvg\">Keys & Synthesizers</a> <a class=\"link\" href=\"/musical-keyboards/pr?sid=ypu,nvg,xqg\">Musical Keyboards</a> <a class=\"link\" href=\"/shruti-boxes/pr?sid=ypu,nvg,s3i\">Shruti Boxes</a> <a class=\"link\" href=\"/harmoniums/pr?sid=ypu,nvg,n7w\">Harmoniums</a> <a class=\"link\" href=\"/mbiras/pr?sid=ypu,nvg,6kx\">Mbiras</a> <a class=\"link\" href=\"/accessories/pr?sid=ypu,nvg,vro\">Accessories</a> <a class=\"link\" href=\"/studiostage-equipment-accessories/pr?sid=ypu,alc\">Studio/Stage Equipment & Accessories</a> <a class=\"link\" href=\"/audio-compressors/pr?sid=ypu,alc,0qw\">Audio Compressors</a> <a class=\"link\" href=\"/musical-amplifiers/pr?sid=ypu,alc,6fs\">Musical Amplifiers</a> <a class=\"link\" href=\"/sound-mixers/pr?sid=ypu,alc,l26\">Sound Mixers</a> <a class=\"link\" href=\"/dj-controller/pr?sid=ypu,alc,6pt\">DJ Controller</a> <a class=\"link\" href=\"/amplifier-receiver/pr?sid=ypu,alc,4xd\">Amplifier Receiver</a> <a class=\"link\" href=\"/microphone/pr?sid=ypu,alc,3d4\">Microphone</a> <a class=\"link\" href=\"/electronic-instruments/pr?sid=ypu,iy4\">Electronic Instruments</a> <a class=\"link\" href=\"/electronic-instruments/pr?sid=ypu,o9w\">Electronic Instruments</a> <a class=\"link\" href=\"/theremin/pr?sid=ypu,o9w,xll\">Theremin</a> <a class=\"link\" href=\"/drums-percussion/pr?sid=ypu,ttd\">Drums & Percussion</a> <a class=\"link\" href=\"/bongos/pr?sid=ypu,ttd,ea1\">Bongos</a> <a class=\"link\" href=\"/triangles/pr?sid=ypu,ttd,gyb\">Triangles</a> <a class=\"link\" href=\"/dholaks/pr?sid=ypu,ttd,giz\">Dholaks</a> <a class=\"link\" href=\"/morsing/pr?sid=ypu,ttd,79h\">Morsing</a> <a class=\"link\" href=\"/percussion-pads/pr?sid=ypu,ttd,gop\">Percussion Pads</a> <a class=\"link\" href=\"/ghungroos/pr?sid=ypu,ttd,ybw\">Ghungroos</a> <a class=\"link\" href=\"/chenda/pr?sid=ypu,ttd,py7\">Chenda</a> <a class=\"link\" href=\"/nagara/pr?sid=ypu,ttd,qdo\">Nagara</a> <a class=\"link\" href=\"/cajons/pr?sid=ypu,ttd,4pf\">Cajons</a> <a class=\"link\" href=\"/nagara/pr?sid=ypu,ttd,wbf\">Nagara</a> <a class=\"link\" href=\"/steelpan/pr?sid=ypu,ttd,tmn\">Steelpan</a> <a class=\"link\" href=\"/davul/pr?sid=ypu,ttd,s7x\">Davul</a> <a class=\"link\" href=\"/cowbells/pr?sid=ypu,ttd,pok\">Cowbells</a> <a class=\"link\" href=\"/conga-drums/pr?sid=ypu,ttd,cv3\">Conga Drums</a> <a class=\"link\" href=\"/sapp/pr?sid=ypu,ttd,34k\">Sapp</a> <a class=\"link\" href=\"/kartal/pr?sid=ypu,ttd,3ak\">Kartal</a> <a class=\"link\" href=\"/tablas/pr?sid=ypu,ttd,q70\">Tablas</a> <a class=\"link\" href=\"/davul/pr?sid=ypu,ttd,ht3\">Davul</a> <a class=\"link\" href=\"/madal/pr?sid=ypu,ttd,d43\">Madal</a> <a class=\"link\" href=\"/accessories/pr?sid=ypu,ttd,qj3\">Accessories</a> <a class=\"link\" href=\"/shakers/pr?sid=ypu,ttd,hvo\">Shakers</a> <a class=\"link\" href=\"/ravanahatha/pr?sid=ypu,ttd,max\">Ravanahatha</a> <a class=\"link\" href=\"/sapp/pr?sid=ypu,ttd,02n\">Sapp</a> <a class=\"link\" href=\"/morsing/pr?sid=ypu,ttd,knr\">Morsing</a> <a class=\"link\" href=\"/nagphani/pr?sid=ypu,ttd,n9s\">Nagphani</a> <a class=\"link\" href=\"/madal/pr?sid=ypu,ttd,2nd\">Madal</a> <a class=\"link\" href=\"/drum-cymbals/pr?sid=ypu,ttd,x0e\">Drum Cymbals</a> <a class=\"link\" href=\"/steelpan/pr?sid=ypu,ttd,vug\">Steelpan</a> <a class=\"link\" href=\"/jal-tarang/pr?sid=ypu,ttd,wdg\">Jal Tarang</a> <a class=\"link\" href=\"/kartal/pr?sid=ypu,ttd,yqz\">Kartal</a> <a class=\"link\" href=\"/daf/pr?sid=ypu,ttd,dsc\">Daf</a> <a class=\"link\" href=\"/tambourines/pr?sid=ypu,ttd,7ds\">Tambourines</a> <a class=\"link\" href=\"/chimes/pr?sid=ypu,ttd,2k1\">Chimes</a> <a class=\"link\" href=\"/bhapang/pr?sid=ypu,ttd,eed\">Bhapang</a> <a class=\"link\" href=\"/chimta/pr?sid=ypu,ttd,2b0\">Chimta</a> <a class=\"link\" href=\"/chenda/pr?sid=ypu,ttd,z0e\">Chenda</a> <a class=\"link\" href=\"/ratchets/pr?sid=ypu,ttd,o1o\">Ratchets</a> <a class=\"link\" href=\"/ravanahatha/pr?sid=ypu,ttd,h7t\">Ravanahatha</a> <a class=\"link\" href=\"/xylophones/pr?sid=ypu,ttd,vln\">Xylophones</a> <a class=\"link\" href=\"/djembes/pr?sid=ypu,ttd,rvn\">Djembes</a> <a class=\"link\" href=\"/chimta/pr?sid=ypu,ttd,s9p\">Chimta</a> <a class=\"link\" href=\"/drum-kits-sets/pr?sid=ypu,ttd,s0r\">Drum Kits & Sets</a> <a class=\"link\" href=\"/accessories/pr?sid=ypu,asg\">Accessories</a> <a class=\"link\" href=\"/string-instruments/pr?sid=ypu,asg,6rj\">String Instruments</a> <a class=\"link\" href=\"/keys-synthesizers/pr?sid=ypu,asg,olz\">Keys & Synthesizers</a> <a class=\"link\" href=\"/musical-stands/pr?sid=ypu,asg,opk\">Musical Stands</a> <a class=\"link\" href=\"/veena-stand/pr?sid=ypu,asg,ols\">Veena Stand</a> <a class=\"link\" href=\"/drums-percussion/pr?sid=ypu,asg,o2e\">Drums & Percussion</a> <a class=\"link\" href=\"/wind-instruments/pr?sid=ypu,asg,c12\">Wind Instruments</a> <a class=\"link\" href=\"/cases-covers/pr?sid=ypu,asg,yhz\">Cases & Covers</a> <a class=\"link\" href=\"/studiostage-equipment-accessories/pr?sid=ypu,asg,2pk\">Studio/Stage Equipment & Accessories</a> <a class=\"link\" href=\"/singing-bowls/pr?sid=ypu,fiq\">Singing Bowls</a> </div><h2><a href=\"/jewellery/pr?sid=mcr\">Jewellery</a></h2><div><a class=\"link\" href=\"/gold-silver-coins/pr?sid=mcr,73x\">Gemstones, Coins & Bars</a> <a class=\"link\" href=\"/gemstones/pr?sid=mcr,73x,nsa\">Gemstones</a> <a class=\"link\" href=\"/gold-silver-coins/pr?sid=mcr,73x,ydh\">Coins & Bars</a> <a class=\"link\" href=\"/precious-articles/pr?sid=mcr,pyi\">Precious Articles</a> <a class=\"link\" href=\"/pooja-thali-sets/pr?sid=mcr,pyi,7an\">Pooja Thali Sets</a> <a class=\"link\" href=\"/showpieces-figurines/pr?sid=mcr,pyi,b9i\">Showpieces & Figurines</a> <a class=\"link\" href=\"/artificial-jewellery/pr?sid=mcr,96v\">Artificial Jewellery</a> <a class=\"link\" href=\"/jewellery-sets/pr?sid=mcr,96v,yx2\">Jewellery Sets</a> <a class=\"link\" href=\"/bangles-bracelets-armlets/pr?sid=mcr,96v,fbc\">Bangles Bracelets & Armlets</a> <a class=\"link\" href=\"/rings/pr?sid=mcr,96v,az2\">Rings</a> <a class=\"link\" href=\"/earrings/pr?sid=mcr,96v,k9d\">Earrings</a> <a class=\"link\" href=\"/necklaces-chains/pr?sid=mcr,96v,0vq\">Necklaces & Chains</a> <a class=\"link\" href=\"/pendants-lockets/pr?sid=mcr,96v,btd\">Pendants & Lockets</a> <a class=\"link\" href=\"/mangalsutras-tanmaniyas/pr?sid=mcr,96v,t4i\">Mangalsutras & Tanmaniyas</a> <a class=\"link\" href=\"/anklets/pr?sid=mcr,96v,jf9\">Anklets</a> <a class=\"link\" href=\"/accessories/pr?sid=mcr,96v,ofb\">Accessories</a> <a class=\"link\" href=\"/nose-rings-studs/pr?sid=mcr,96v,0ew\">Nose Rings & Studs</a> <a class=\"link\" href=\"/body-chains/pr?sid=mcr,96v,fl4\">Body Chains</a> <a class=\"link\" href=\"/kamarband/pr?sid=mcr,96v,2lx\">Kamarband</a> <a class=\"link\" href=\"/horse-shoe-rings/pr?sid=mcr,96v,onh\">Horse Shoe Rings</a> <a class=\"link\" href=\"/precious-jewellery/pr?sid=mcr,ykh\">Precious Jewellery</a> <a class=\"link\" href=\"/jewellery-sets/pr?sid=mcr,ykh,4uc\">Jewellery Sets</a> <a class=\"link\" href=\"/necklaces-chains/pr?sid=mcr,ykh,woy\">Necklaces & Chains</a> <a class=\"link\" href=\"/kamarband/pr?sid=mcr,ykh,aki\">Kamarband</a> <a class=\"link\" href=\"/earrings/pr?sid=mcr,ykh,nvk\">Earrings</a> <a class=\"link\" href=\"/couple-rings/pr?sid=mcr,ykh,0zb\">Couple Rings</a> <a class=\"link\" href=\"/pendants-lockets/pr?sid=mcr,ykh,nxj\">Pendants & Lockets</a> <a class=\"link\" href=\"/nose-rings-studs/pr?sid=mcr,ykh,uie\">Nose Rings & Studs</a> <a class=\"link\" href=\"/bangles-bracelets-armlets/pr?sid=mcr,ykh,02y\">Bangles, Bracelets & Armlets</a> <a class=\"link\" href=\"/anklets/pr?sid=mcr,ykh,0pc\">Anklets</a> <a class=\"link\" href=\"/mangalsutras-tanmaniyas/pr?sid=mcr,ykh,d6t\">Mangalsutras & Tanmaniyas</a> <a class=\"link\" href=\"/maang-tikkas/pr?sid=mcr,ykh,33u\">Maang Tikkas</a> <a class=\"link\" href=\"/precious-articles/pr?sid=mcr,ykh,esi\">Precious Articles</a> <a class=\"link\" href=\"/accessories/pr?sid=mcr,ykh,ovp\">Accessories</a> <a class=\"link\" href=\"/jewellery/rings/pr?sid=mcr,ykh,3ob\">Rings</a> <a class=\"link\" href=\"/digitally-crafted-jewellery/pr?sid=mcr,ctf\">Digitally Crafted Jewellery</a> <a class=\"link\" href=\"/rings/pr?sid=mcr,ctf,bk4\">Rings</a> <a class=\"link\" href=\"/necklaces/pr?sid=mcr,ctf,p01\">Necklaces</a> <a class=\"link\" href=\"/pendants-lockets/pr?sid=mcr,ctf,ane\">Pendants & Lockets</a> <a class=\"link\" href=\"/bangles-bracelets-armlets/pr?sid=mcr,ctf,37w\">Bangles Bracelets & Armlets</a> <a class=\"link\" href=\"/earrings/pr?sid=mcr,ctf,0i4\">Earrings</a> <a class=\"link\" href=\"/chains/pr?sid=mcr,ctf,7ok\">Chains</a> <a class=\"link\" href=\"/gift-vouchers/pr?sid=mcr,si1\">Gift Vouchers</a> <a class=\"link\" href=\"/silver-jewellery/pr?sid=mcr,tfz\">Silver Jewellery</a> <a class=\"link\" href=\"/accessories/pr?sid=mcr,tfz,cpd\">Accessories</a> <a class=\"link\" href=\"/rings/pr?sid=mcr,tfz,xnc\">Rings</a> <a class=\"link\" href=\"/jewellery-sets/pr?sid=mcr,tfz,0x3\">Jewellery Sets</a> <a class=\"link\" href=\"/maang-tikkas/pr?sid=mcr,tfz,rmv\">Maang Tikkas</a> <a class=\"link\" href=\"/kamarbands/pr?sid=mcr,tfz,x6v\">Kamarbands</a> <a class=\"link\" href=\"/pendants-lockets/pr?sid=mcr,tfz,3zb\">Pendants & Lockets</a> <a class=\"link\" href=\"/necklaces-chains/pr?sid=mcr,tfz,xsr\">Necklaces & Chains</a> <a class=\"link\" href=\"/earrings/pr?sid=mcr,tfz,k2j\">Earrings</a> <a class=\"link\" href=\"/mangalsutras-tanmaniyas/pr?sid=mcr,tfz,pq4\">Mangalsutras & Tanmaniyas</a> <a class=\"link\" href=\"/bangles-bracelets-armlets/pr?sid=mcr,tfz,fey\">Bangles, Bracelets & Armlets</a> <a class=\"link\" href=\"/anklets/pr?sid=mcr,tfz,uue\">Anklets</a> <a class=\"link\" href=\"/nose-rings-studs/pr?sid=mcr,tfz,fbx\">Nose Rings & Studs</a> <a class=\"link\" href=\"/body-chains/pr?sid=mcr,tfz,j0j\">Body Chains</a> </div><h2><a href=\"/pens-stationery/pr?sid=dgv\">Pens &amp; Stationery</a></h2><div><a class=\"link\" href=\"/pens/pr?sid=dgv,mqm\">Pens</a> <a class=\"link\" href=\"/fountain-pens/pr?sid=dgv,mqm,p50\">Fountain Pens</a> <a class=\"link\" href=\"/ball-pens/pr?sid=dgv,mqm,upv\">Ball Pens</a> <a class=\"link\" href=\"/roller-ball-pens/pr?sid=dgv,mqm,9pn\">Roller Ball Pens</a> <a class=\"link\" href=\"/fineliners/pr?sid=dgv,mqm,gvw\">Fineliners</a> <a class=\"link\" href=\"/digital-pens/pr?sid=dgv,mqm,hsn\">Digital Pens</a> <a class=\"link\" href=\"/pen-sets/pr?sid=dgv,mqm,5pq\">Pen Sets</a> <a class=\"link\" href=\"/refills/pr?sid=dgv,mqm,cqi\">Refills</a> <a class=\"link\" href=\"/gel-pens/pr?sid=dgv,mqm,gox\">Gel Pens</a> <a class=\"link\" href=\"/mechanical-pencils/pr?sid=dgv,mqm,g3e\">Mechanical Pencils</a> <a class=\"link\" href=\"/inks/pr?sid=dgv,mqm,5vo\">Inks</a> <a class=\"link\" href=\"/multifunction-pens/pr?sid=dgv,mqm,ngy\">Multifunction Pens</a> <a class=\"link\" href=\"/clutch-pencils/pr?sid=dgv,mqm,dvk\">Clutch Pencils</a> <a class=\"link\" href=\"/calculators/pr?sid=dgv,qtq\">Calculators</a> <a class=\"link\" href=\"/basic/pr?sid=dgv,qtq,qr0\">Basic</a> <a class=\"link\" href=\"/printing/pr?sid=dgv,qtq,35a\">Printing</a> <a class=\"link\" href=\"/graphing/pr?sid=dgv,qtq,31l\">Graphing</a> <a class=\"link\" href=\"/financial-business/pr?sid=dgv,qtq,i7w\">Financial & Business</a> <a class=\"link\" href=\"/scientific/pr?sid=dgv,qtq,g50\">Scientific</a> <a class=\"link\" href=\"/diaries-notebooks/pr?sid=dgv,gas\">Diaries & Notebooks</a> <a class=\"link\" href=\"/notepads/pr?sid=dgv,gas,l95\">Notepads</a> <a class=\"link\" href=\"/memo-pads/pr?sid=dgv,gas,khg\">Memo Pads</a> <a class=\"link\" href=\"/planners-organisers/pr?sid=dgv,gas,pai\">Planners & Organisers</a> <a class=\"link\" href=\"/calendars/pr?sid=dgv,gas,asd\">Calendars</a> <a class=\"link\" href=\"/diaries/pr?sid=dgv,gas,mwh\">Diaries</a> <a class=\"link\" href=\"/utility-pads/pr?sid=dgv,gas,t2j\">Utility Pads</a> <a class=\"link\" href=\"/scrapbook-kits/pr?sid=dgv,gas,wti\">Scrapbook Kits</a> <a class=\"link\" href=\"/journals/pr?sid=dgv,gas,dgm\">Journals</a> <a class=\"link\" href=\"/notebooks/pr?sid=dgv,gas,v3u\">Notebooks</a> <a class=\"link\" href=\"/record-keeping-books/pr?sid=dgv,gas,0s3\">Record Keeping Books</a> <a class=\"link\" href=\"/art-supplies/pr?sid=dgv,j6t\">Art Supplies</a> <a class=\"link\" href=\"/light-tracing-boards/pr?sid=dgv,j6t,jcn\">Light Tracing Boards</a> <a class=\"link\" href=\"/accessories/pr?sid=dgv,j6t,psa\">Accessories</a> <a class=\"link\" href=\"/candle-gel-wax/pr?sid=dgv,j6t,02v\">Candle Gel Wax</a> <a class=\"link\" href=\"/jewellery-design-templates/pr?sid=dgv,j6t,mtk\">Jewellery Design Templates</a> <a class=\"link\" href=\"/silhouette-papers/pr?sid=dgv,j6t,u1u\">Silhouette Papers</a> <a class=\"link\" href=\"/stencils/pr?sid=dgv,j6t,0h6\">Stencils</a> <a class=\"link\" href=\"/aida-clothes/pr?sid=dgv,j6t,kzj\">Aida Clothes</a> <a class=\"link\" href=\"/paints/pr?sid=dgv,j6t,ale\">Paints</a> <a class=\"link\" href=\"/cutting-mats/pr?sid=dgv,j6t,z3t\">Cutting Mats</a> <a class=\"link\" href=\"/flower-making-wires/pr?sid=dgv,j6t,dlg\">Flower Making Wires</a> <a class=\"link\" href=\"/spatula-knives-tools/pr?sid=dgv,j6t,s4m\">Spatula, Knives & Tools</a> <a class=\"link\" href=\"/candle-wax-dyes-powders/pr?sid=dgv,j6t,71g\">Candle Wax Dyes & Powders</a> <a class=\"link\" href=\"/unpainted-dolls-figurines/pr?sid=dgv,j6t,694\">Unpainted Dolls & Figurines</a> <a class=\"link\" href=\"/canvases/pr?sid=dgv,j6t,e7f\">Canvases</a> <a class=\"link\" href=\"/engraving-set/pr?sid=dgv,j6t,nhg\">Engraving Set</a> <a class=\"link\" href=\"/printing-blocks/pr?sid=dgv,j6t,skh\">Printing Blocks</a> <a class=\"link\" href=\"/decoupage-mediums/pr?sid=dgv,j6t,fnm\">Decoupage Mediums</a> <a class=\"link\" href=\"/mediums-varnishes/pr?sid=dgv,j6t,kk5\">Mediums & Varnishes</a> <a class=\"link\" href=\"/gessos-grounds/pr?sid=dgv,j6t,k2r\">Gessos & Grounds</a> <a class=\"link\" href=\"/palettes/pr?sid=dgv,j6t,5p3\">Palettes</a> <a class=\"link\" href=\"/airbrushes/pr?sid=dgv,j6t,vpu\">Airbrushes</a> <a class=\"link\" href=\"/drawing-papers/pr?sid=dgv,j6t,ey6\">Drawing Papers</a> <a class=\"link\" href=\"/sketch-pens/pr?sid=dgv,j6t,ax9\">Sketch Pens</a> <a class=\"link\" href=\"/paint-brushes/pr?sid=dgv,j6t,7uz\">Paint Brushes</a> <a class=\"link\" href=\"/art-sets/pr?sid=dgv,j6t,sey\">Art Sets</a> <a class=\"link\" href=\"/sketch-pads/pr?sid=dgv,j6t,sk7\">Sketch Pads</a> <a class=\"link\" href=\"/charcoal-graphite/pr?sid=dgv,j6t,lph\">Charcoal & Graphite</a> <a class=\"link\" href=\"/drawing-pencils/pr?sid=dgv,j6t,2gc\">Drawing Pencils</a> <a class=\"link\" href=\"/screen-drying-rack/pr?sid=dgv,j6t,qa9\">Screen Drying Rack</a> <a class=\"link\" href=\"/parchment-craft-kits/pr?sid=dgv,j6t,w61\">Parchment Craft Kits</a> <a class=\"link\" href=\"/storage-bags/pr?sid=dgv,j6t,st5\">Storage & Bags</a> <a class=\"link\" href=\"/calligraphy/pr?sid=dgv,j6t,clh\">Calligraphy</a> <a class=\"link\" href=\"/embossers/pr?sid=dgv,j6t,u03\">Embossers</a> <a class=\"link\" href=\"/sketch-paint-markers/pr?sid=dgv,j6t,q0z\">Sketch & Paint Markers</a> <a class=\"link\" href=\"/pastels-crayons/pr?sid=dgv,j6t,nf0\">Pastels & Crayons</a> <a class=\"link\" href=\"/embossing-powders/pr?sid=dgv,j6t,yu2\">Embossing Powders</a> <a class=\"link\" href=\"/felt-sheets/pr?sid=dgv,j6t,3tu\">Felt Sheets</a> <a class=\"link\" href=\"/acrylic-sheets/pr?sid=dgv,j6t,e6r\">Acrylic Sheets</a> <a class=\"link\" href=\"/erasers/pr?sid=dgv,j6t,1xf\">Erasers</a> <a class=\"link\" href=\"/accessories/pr?sid=dgv,j6t,csz\">Accessories</a> <a class=\"link\" href=\"/easel/pr?sid=dgv,j6t,ese\">Easel</a> <a class=\"link\" href=\"/lead-accessory/pr?sid=dgv,j6t,78a\">Lead Accessory</a> <a class=\"link\" href=\"/color-pencils/pr?sid=dgv,j6t,iv1\">Color Pencils</a> <a class=\"link\" href=\"/art-clay/pr?sid=dgv,j6t,3i7\">Art Clay</a> <a class=\"link\" href=\"/painting-sponges/pr?sid=dgv,j6t,hg9\">Painting Sponges</a> <a class=\"link\" href=\"/office-equipments/pr?sid=dgv,id7\">Office Equipments</a> <a class=\"link\" href=\"/metal-detectors/pr?sid=dgv,id7,in6\">Metal Detectors</a> <a class=\"link\" href=\"/photocopier-machines/pr?sid=dgv,id7,tpj\">Photocopier Machines</a> <a class=\"link\" href=\"/label-printers/pr?sid=dgv,id7,6lf\">Label Printers</a> <a class=\"link\" href=\"/lamination-machines/pr?sid=dgv,id7,cl3\">Lamination Machines</a> <a class=\"link\" href=\"/vending-machines/pr?sid=dgv,id7,bab\">Vending Machines</a> <a class=\"link\" href=\"/paper-jogger-machines/pr?sid=dgv,id7,36q\">Paper Jogger Machines</a> <a class=\"link\" href=\"/tagging-guns/pr?sid=dgv,id7,2sb\">Tagging Guns</a> <a class=\"link\" href=\"/barcode-scanners/pr?sid=dgv,id7,wks\">Barcode Scanners</a> <a class=\"link\" href=\"/paper-shredders/pr?sid=dgv,id7,bed\">Paper Shredders</a> <a class=\"link\" href=\"/analytical-scales/pr?sid=dgv,id7,7ci\">Analytical Scales</a> <a class=\"link\" href=\"/voip-adapters/pr?sid=dgv,id7,x2t\">VOIP Adapters</a> <a class=\"link\" href=\"/currency-detectors/pr?sid=dgv,id7,xqp\">Currency Detectors</a> <a class=\"link\" href=\"/paper-trimmers/pr?sid=dgv,id7,jsr\">Paper Trimmers</a> <a class=\"link\" href=\"/floor-cleaning-machines/pr?sid=dgv,id7,cqa\">Floor Cleaning Machines</a> <a class=\"link\" href=\"/spiral-binders/pr?sid=dgv,id7,3bz\">Spiral Binders</a> <a class=\"link\" href=\"/cash-registers/pr?sid=dgv,id7,j26\">Cash Registers</a> <a class=\"link\" href=\"/biometric-devices/pr?sid=dgv,id7,lt9\">Biometric Devices</a> <a class=\"link\" href=\"/note-counting-machines/pr?sid=dgv,id7,s1s\">Note Counting Machines</a> <a class=\"link\" href=\"/public-address-systems/pr?sid=dgv,id7,mw3\">Public Address Systems</a> <a class=\"link\" href=\"/home-security-cameras/pr?sid=dgv,id7,blr\">Home Security Cameras</a> <a class=\"link\" href=\"/safe-lockers/pr?sid=dgv,id7,wx1\">Safe Lockers</a> <a class=\"link\" href=\"/office-supplies/pr?sid=dgv,tkw\">Office Supplies</a> <a class=\"link\" href=\"/files-and-folders/pr?sid=dgv,tkw,d00\">Files and Folders</a> <a class=\"link\" href=\"/desk-organizers/pr?sid=dgv,tkw,hlr\">Desk Organizers</a> <a class=\"link\" href=\"/hand-tools/pr?sid=dgv,tkw,x77\">Hand Tools</a> <a class=\"link\" href=\"/office-supplies-accessories/pr?sid=dgv,tkw,lxx\">Office Supplies Accessories</a> <a class=\"link\" href=\"/printing-solutions/pr?sid=dgv,tkw,p1u\">Printing Solutions</a> <a class=\"link\" href=\"/paper-shredders/pr?sid=dgv,tkw,bed\">Paper Shredders</a> <a class=\"link\" href=\"/card-holders/pr?sid=dgv,tkw,chd\">Card Holders</a> <a class=\"link\" href=\"/papers/pr?sid=dgv,tkw,kt3\">Papers</a> <a class=\"link\" href=\"/sketch-paint-markers/pr?sid=dgv,tkw,q0z\">Sketch & Paint Markers</a> <a class=\"link\" href=\"/labeling-stamping-machines/pr?sid=dgv,tkw,6mv\">Labeling & Stamping Machines</a> <a class=\"link\" href=\"/drafting-drawing/pr?sid=dgv,tkw,wzh\">Drafting & Drawing</a> <a class=\"link\" href=\"/megaphones/pr?sid=dgv,tkw,sr1\">Megaphones</a> <a class=\"link\" href=\"/garbage-bags/pr?sid=dgv,tkw,co7\">Garbage Bags</a> <a class=\"link\" href=\"/laminating-sheets/pr?sid=dgv,tkw,tsj\">Laminating Sheets</a> <a class=\"link\" href=\"/stretch-films/pr?sid=dgv,tkw,dda\">Stretch Films</a> <a class=\"link\" href=\"/stickers/pr?sid=dgv,tkw,s11\">Stickers</a> <a class=\"link\" href=\"/magnifiers/pr?sid=dgv,tkw,0d9\">Magnifiers</a> <a class=\"link\" href=\"/window-films/pr?sid=dgv,tkw,gz7\">Window Films</a> <a class=\"link\" href=\"/3d-printer-pens/pr?sid=dgv,tkw,toy\">3D Printer Pens</a> <a class=\"link\" href=\"/key-chains/pr?sid=dgv,tkw,k7f\">Key Chains</a> <a class=\"link\" href=\"/cigarette-receptacles/pr?sid=dgv,tkw,0hq\">Cigarette Receptacles</a> <a class=\"link\" href=\"/paper-labels/pr?sid=dgv,tkw,2wa\">Paper Labels</a> <a class=\"link\" href=\"/packaging-security-bags/pr?sid=dgv,tkw,sop\">Packaging Security Bags</a> <a class=\"link\" href=\"/cash-register-paper/pr?sid=dgv,tkw,mo0\">Cash Register Paper</a> <a class=\"link\" href=\"/air-tight-pouches/pr?sid=dgv,tkw,69n\">Air Tight Pouches</a> <a class=\"link\" href=\"/card-display-stands/pr?sid=dgv,tkw,7z7\">Card Display Stands</a> <a class=\"link\" href=\"/spiral-binder-coils/pr?sid=dgv,tkw,md3\">Spiral Binder Coils</a> <a class=\"link\" href=\"/scissors/pr?sid=dgv,tkw,mks\">Scissors</a> <a class=\"link\" href=\"/key-chains/pr?sid=dgv,tkw,amn\">Key Chains</a> <a class=\"link\" href=\"/coin-banks/pr?sid=dgv,tkw,pfd\">Coin Banks</a> <a class=\"link\" href=\"/id-card-holders/pr?sid=dgv,tkw,y9j\">ID Card Holders</a> <a class=\"link\" href=\"/stamping-pens/pr?sid=dgv,tkw,qjg\">Stamping Pens</a> <a class=\"link\" href=\"/bubble-wraps/pr?sid=dgv,tkw,ygy\">Bubble Wraps</a> <a class=\"link\" href=\"/calendars/pr?sid=dgv,tkw,vwm\">Calendars</a> <a class=\"link\" href=\"/table-lamps/pr?sid=dgv,tkw,mdl\">Table Lamps</a> <a class=\"link\" href=\"/photo-die-cutters/pr?sid=dgv,tkw,m77\">Photo Die Cutters</a> <a class=\"link\" href=\"/felt-sheets/pr?sid=dgv,tkw,3tu\">Felt Sheets</a> <a class=\"link\" href=\"/paper-fabric-backing/pr?sid=dgv,tkw,hia\">Paper & Fabric Backing</a> <a class=\"link\" href=\"/lanyards/pr?sid=dgv,tkw,odj\">Lanyards</a> <a class=\"link\" href=\"/lead-pointers/pr?sid=dgv,tkw,a3n\">Lead Pointers</a> <a class=\"link\" href=\"/letter-openers/pr?sid=dgv,tkw,9vv\">Letter Openers</a> <a class=\"link\" href=\"/photo-die-cutters/pr?sid=dgv,tkw,6nr\">Photo Die Cutters</a> <a class=\"link\" href=\"/document-tubes/pr?sid=dgv,tkw,uq1\">Document Tubes</a> <a class=\"link\" href=\"/hand-dryer-machines/pr?sid=dgv,tkw,1xo\">Hand Dryer Machines</a> <a class=\"link\" href=\"/loose-fills/pr?sid=dgv,tkw,7pu\">Loose Fills</a> <a class=\"link\" href=\"/carton-packaging-boxes/pr?sid=dgv,tkw,lp2\">Carton & Packaging Boxes</a> <a class=\"link\" href=\"/drafting-tapes/pr?sid=dgv,tkw,a0e\">Drafting Tapes</a> <a class=\"link\" href=\"/umbrellas/pr?sid=dgv,tkw,jcx\">Umbrellas</a> <a class=\"link\" href=\"/cello-tapes-tape-dispensers/pr?sid=dgv,tkw,p17\">Cello Tapes & Tape Dispensers</a> <a class=\"link\" href=\"/punches-punching-machines/pr?sid=dgv,tkw,b89\">Punches & Punching Machines</a> <a class=\"link\" href=\"/boards-dusters/pr?sid=dgv,tkw,b86\">Boards & Dusters</a> <a class=\"link\" href=\"/staplers-pins-removers/pr?sid=dgv,tkw,lel\">Staplers, Pins & Removers</a> <a class=\"link\" href=\"/multiutility-stands/pr?sid=dgv,tkw,9y8\">Multi-utility Stands</a> <a class=\"link\" href=\"/journals/pr?sid=dgv,tkw,dgm\">Journals</a> <a class=\"link\" href=\"/memo-pads/pr?sid=dgv,tkw,khg\">Memo Pads</a> <a class=\"link\" href=\"/diaries/pr?sid=dgv,tkw,mwh\">Diaries</a> <a class=\"link\" href=\"/paper-cutters/pr?sid=dgv,tkw,3tk\">Paper Cutters</a> <a class=\"link\" href=\"/swiss-knives/pr?sid=dgv,tkw,d9a\">Swiss Knives</a> <a class=\"link\" href=\"/office-tools/pr?sid=dgv,tkw,evf\">Office Tools</a> <a class=\"link\" href=\"/bookmarks/pr?sid=dgv,tkw,0og\">Bookmarks</a> <a class=\"link\" href=\"/multi-utility-knives/pr?sid=dgv,tkw,muk\">Multi Utility Knives</a> <a class=\"link\" href=\"/digital-pens/pr?sid=dgv,tkw,hsn\">Digital Pens</a> <a class=\"link\" href=\"/college-supplies/pr?sid=dgv,rxj\">College Supplies</a> <a class=\"link\" href=\"/calculators/pr?sid=dgv,rxj,07r\">Calculators</a> <a class=\"link\" href=\"/water-bottles/pr?sid=dgv,rxj,bi2\">Water Bottles</a> <a class=\"link\" href=\"/globes/pr?sid=dgv,rxj,hk2\">Globes</a> <a class=\"link\" href=\"/graduation-tassels/pr?sid=dgv,rxj,9ap\">Graduation Tassels</a> <a class=\"link\" href=\"/graduation-gowns/pr?sid=dgv,rxj,blb\">Graduation Gowns</a> <a class=\"link\" href=\"/boards-dusters/pr?sid=dgv,rxj,nv6\">Boards & Dusters</a> <a class=\"link\" href=\"/umbrellas/pr?sid=dgv,rxj,ckn\">Umbrellas</a> <a class=\"link\" href=\"/examination-pads/pr?sid=dgv,rxj,orz\">Examination Pads</a> <a class=\"link\" href=\"/geometry-pencil-boxes/pr?sid=dgv,rxj,mnh\">Geometry & Pencil Boxes</a> <a class=\"link\" href=\"/lunch-boxes/pr?sid=dgv,rxj,yz3\">Lunch Boxes</a> <a class=\"link\" href=\"/markers-highlighters/pr?sid=dgv,rxj,0fe\">Markers & Highlighters</a> <a class=\"link\" href=\"/canvases/pr?sid=dgv,rxj,0sm\">Canvases</a> <a class=\"link\" href=\"/stickers/pr?sid=dgv,rxj,khy\">Stickers</a> <a class=\"link\" href=\"/college-accessories/pr?sid=dgv,rxj,qe6\">College Accessories</a> <a class=\"link\" href=\"/art-craft/pr?sid=dgv,rxj,yvj\">Art & Craft</a> <a class=\"link\" href=\"/lunch-bags/pr?sid=dgv,rxj,t9o\">Lunch Bags</a> <a class=\"link\" href=\"/college-bags/pr?sid=dgv,rxj,9ux\">College Bags</a> <a class=\"link\" href=\"/graduation-caps/pr?sid=dgv,rxj,zuv\">Graduation Caps</a> <a class=\"link\" href=\"/pens-notebooks/pr?sid=dgv,rxj,azx\">Pens & Notebooks</a> <a class=\"link\" href=\"/graduation-stoles/pr?sid=dgv,rxj,r0u\">Graduation Stoles</a> <a class=\"link\" href=\"/coin-banks/pr?sid=dgv,rxj,w9l\">Coin Banks</a> <a class=\"link\" href=\"/tailoring-embroidery-supplies/pr?sid=dgv,lx4\">Tailoring & Embroidery Supplies</a> <a class=\"link\" href=\"/lab-equipment/pr?sid=dgv,mpb\">Lab Equipment</a> <a class=\"link\" href=\"/laboratory-watch-glasses/pr?sid=dgv,mpb,anv\">Laboratory Watch Glasses</a> <a class=\"link\" href=\"/laboratory-tripod-stand/pr?sid=dgv,mpb,j3t\">Laboratory Tripod Stand</a> <a class=\"link\" href=\"/laboratory-bunsen-burners/pr?sid=dgv,mpb,6t4\">Laboratory Bunsen Burners</a> <a class=\"link\" href=\"/chemistry/pr?sid=dgv,mpb,sug\">Chemistry</a> <a class=\"link\" href=\"/homogenizer-probes/pr?sid=dgv,mpb,d6q\">Homogenizer Probes</a> <a class=\"link\" href=\"/laboratory-bunsen-burners/pr?sid=dgv,mpb,yme\">Laboratory Bunsen Burners</a> <a class=\"link\" href=\"/physics/pr?sid=dgv,mpb,oos\">Physics</a> <a class=\"link\" href=\"/laboratory-wire-gauzes/pr?sid=dgv,mpb,22a\">Laboratory Wire Gauzes</a> <a class=\"link\" href=\"/hydrometers/pr?sid=dgv,mpb,nbw\">Hydrometers</a> <a class=\"link\" href=\"/laboratory-spot-plate/pr?sid=dgv,mpb,to0\">Laboratory Spot Plate</a> <a class=\"link\" href=\"/colorimeters/pr?sid=dgv,mpb,3ca\">Colorimeters</a> <a class=\"link\" href=\"/paper-jogger-machines/pr?sid=dgv,mpb,tie\">Paper Jogger Machines</a> <a class=\"link\" href=\"/lab-ovens/pr?sid=dgv,mpb,k91\">Lab Ovens</a> <a class=\"link\" href=\"/laboratory-tripod-stand/pr?sid=dgv,mpb,uer\">Laboratory Tripod Stand</a> <a class=\"link\" href=\"/slide-stainers/pr?sid=dgv,mpb,oba\">Slide Stainers</a> </div><h2><a href=\"/2gud/pr?sid=2gd\">2Gud</a></h2><div><a class=\"link\" href=\"/home-improvement/pr?sid=2gd,d4l\">Home Improvement</a> <a class=\"link\" href=\"/tool-accessories-and-supply/pr?sid=2gd,d4l,eio\">Tool Accessories and Supply</a> <a class=\"link\" href=\"/home-safety/pr?sid=2gd,d4l,oaa\">Home Safety</a> <a class=\"link\" href=\"/baby-proofing-and-safety/pr?sid=2gd,d4l,3k3\">Baby Proofing and Safety</a> <a class=\"link\" href=\"/tools-measuring-equipments/pr?sid=2gd,d4l,u7o\">Tools & Measuring Equipments</a> <a class=\"link\" href=\"/home-utilities-organizers/pr?sid=2gd,d4l,33n\">Home Utilities & Organizers</a> <a class=\"link\" href=\"/lawn-gardening/pr?sid=2gd,d4l,7zu\">Lawn & Gardening</a> <a class=\"link\" href=\"/sunglasses-and-accessories/pr?sid=2gd,mwz\">Sunglasses and Accessories</a> <a class=\"link\" href=\"/sunglasses/pr?sid=2gd,mwz,9vq\">Sunglasses</a> <a class=\"link\" href=\"/bags-wallets/pr?sid=2gd,zpx\">Bags & Wallets</a> <a class=\"link\" href=\"/small-travel-bag/pr?sid=2gd,zpx,9it\">Small Travel Bag</a> <a class=\"link\" href=\"/wallets-money-clips/pr?sid=2gd,zpx,fl7\">Wallets & Money Clips</a> <a class=\"link\" href=\"/hobos/pr?sid=2gd,zpx,tqu\">Hobos</a> <a class=\"link\" href=\"/clutch/pr?sid=2gd,zpx,z8z\">Clutch</a> <a class=\"link\" href=\"/travel-school-bags/pr?sid=2gd,zpx,orf\">Travel & School Bags</a> <a class=\"link\" href=\"/soiled-garment-bag/pr?sid=2gd,zpx,k6n\">Soiled Garment Bag</a> <a class=\"link\" href=\"/pouches/pr?sid=2gd,zpx,oy0\">Pouches</a> <a class=\"link\" href=\"/lunch-bag/pr?sid=2gd,zpx,jmf\">Lunch Bag</a> <a class=\"link\" href=\"/rucksack/pr?sid=2gd,zpx,jyz\">Rucksack</a> <a class=\"link\" href=\"/duffel-bag/pr?sid=2gd,zpx,20h\">Duffel Bag</a> <a class=\"link\" href=\"/suitcase/pr?sid=2gd,zpx,vyx\">Suitcase</a> <a class=\"link\" href=\"/handbags/pr?sid=2gd,zpx,1uo\">HandBags</a> <a class=\"link\" href=\"/garment-cover/pr?sid=2gd,zpx,mb4\">Garment Cover</a> <a class=\"link\" href=\"/cigarette-pack-holder/pr?sid=2gd,zpx,3ic\">Cigarette Pack Holder</a> <a class=\"link\" href=\"/waist-bag/pr?sid=2gd,zpx,9ir\">Waist Bag</a> <a class=\"link\" href=\"/luggage-combo/pr?sid=2gd,zpx,0oq\">Luggage Combo</a> <a class=\"link\" href=\"/card-holder/pr?sid=2gd,zpx,0g8\">Card Holder</a> <a class=\"link\" href=\"/side-bags/pr?sid=2gd,zpx,wcc\">Side Bags</a> <a class=\"link\" href=\"/briefcase/pr?sid=2gd,zpx,vks\">Briefcase</a> <a class=\"link\" href=\"/travel-accessories/pr?sid=2gd,zpx,dbt\">Travel Accessories</a> <a class=\"link\" href=\"/home-decor/pr?sid=2gd,uuz\">Home Decor</a> <a class=\"link\" href=\"/showpieces-decor-accents/pr?sid=2gd,uuz,gm5\">Showpieces & Decor Accents</a> <a class=\"link\" href=\"/festive-decor-gifts/pr?sid=2gd,uuz,sez\">Festive Decor & Gifts</a> <a class=\"link\" href=\"/spiritual-items/pr?sid=2gd,uuz,zly\">Spiritual Items</a> <a class=\"link\" href=\"/paintings/pr?sid=2gd,uuz,4uu\">Paintings</a> <a class=\"link\" href=\"/windchimes-dream-catchers/pr?sid=2gd,uuz,qop\">Windchimes & Dream Catchers</a> <a class=\"link\" href=\"/wall-decor-items/pr?sid=2gd,uuz,fwf\">Wall Decor Items</a> <a class=\"link\" href=\"/home-fragrances/pr?sid=2gd,uuz,88h\">Home Fragrances</a> <a class=\"link\" href=\"/diyas-candles-holders/pr?sid=2gd,uuz,8zx\">Diyas, Candles & Holders</a> <a class=\"link\" href=\"/posters/pr?sid=2gd,uuz,e1l\">Posters</a> <a class=\"link\" href=\"/photo-frames-albums/pr?sid=2gd,uuz,6ij\">Photo Frames & Albums</a> <a class=\"link\" href=\"/fireworks-crackers/pr?sid=2gd,uuz,u8a\">Fireworks & Crackers</a> <a class=\"link\" href=\"/clocks/pr?sid=2gd,uuz,wt8\">Clocks</a> <a class=\"link\" href=\"/stickers-wallpapers/pr?sid=2gd,uuz,cns\">Stickers & Wallpapers</a> <a class=\"link\" href=\"/hookah-and-accessories/pr?sid=2gd,uuz,usi\">Hookah and Accessories</a> <a class=\"link\" href=\"/flowers-vases/pr?sid=2gd,uuz,djy\">Flowers & Vases</a> <a class=\"link\" href=\"/party-supplies/pr?sid=2gd,wqk\">Party Supplies</a> <a class=\"link\" href=\"/pet-supplies/pr?sid=2gd,zts\">Pet Supplies</a> <a class=\"link\" href=\"/small-animal/pr?sid=2gd,zts,u5c\">Small Animal</a> <a class=\"link\" href=\"/horse/pr?sid=2gd,zts,2uu\">Horse</a> <a class=\"link\" href=\"/grooming-and-hygiene/pr?sid=2gd,zts,u2l\">Grooming and Hygiene</a> <a class=\"link\" href=\"/health-and-safety/pr?sid=2gd,zts,dco\">Health and Safety</a> <a class=\"link\" href=\"/dog/pr?sid=2gd,zts,muf\">Dog</a> <a class=\"link\" href=\"/cat/pr?sid=2gd,zts,oek\">Cat</a> <a class=\"link\" href=\"/birds/pr?sid=2gd,zts,vof\">Birds</a> <a class=\"link\" href=\"/fish-and-aquatic/pr?sid=2gd,zts,i0t\">Fish and Aquatic</a> <a class=\"link\" href=\"/large-animal/pr?sid=2gd,zts,ute\">Large Animal</a> <a class=\"link\" href=\"/beauty-and-grooming/pr?sid=2gd,xxz\">Beauty and Grooming</a> <a class=\"link\" href=\"/hand-foot-care/pr?sid=2gd,xxz,nor\">Hand & Foot Care</a> <a class=\"link\" href=\"/oral-care/pr?sid=2gd,xxz,6tx\">Oral Care</a> <a class=\"link\" href=\"/bath-shower/pr?sid=2gd,xxz,n75\">Bath & Shower</a> <a class=\"link\" href=\"/body-face-skin-care/pr?sid=2gd,xxz,d74\">Body & Face Skin Care</a> <a class=\"link\" href=\"/womens-personal-hygiene/pr?sid=2gd,xxz,0bs\">Women's Personal Hygiene</a> <a class=\"link\" href=\"/makeup/pr?sid=2gd,xxz,b5h\">Makeup</a> <a class=\"link\" href=\"/hair-care/pr?sid=2gd,xxz,fuf\">Hair Care</a> <a class=\"link\" href=\"/sexual-wellness/pr?sid=2gd,xxz,vzg\">Sexual Wellness</a> <a class=\"link\" href=\"/fragrances/pr?sid=2gd,xxz,lje\">Fragrances</a> <a class=\"link\" href=\"/shaving-and-beard-care/pr?sid=2gd,xxz,ewc\">Shaving and Beard Care</a> <a class=\"link\" href=\"/party-supplies/pr?sid=2gd,0ep\">Party Supplies</a> <a class=\"link\" href=\"/balloons-decoration/pr?sid=2gd,0ep,nne\">Balloons & Decoration</a> <a class=\"link\" href=\"/musical-instruments/pr?sid=2gd,ycp\">Musical Instruments</a> <a class=\"link\" href=\"/vehicles/pr?sid=2gd,i11\">Vehicles</a> <a class=\"link\" href=\"/scooter/pr?sid=2gd,i11,lxy\">Scooter</a> <a class=\"link\" href=\"/electric-scooter-board/pr?sid=2gd,i11,53j\">Electric Scooter Board</a> <a class=\"link\" href=\"/home-cleaning-bathroom-accessories/pr?sid=2gd,toa\">Home Cleaning & Bathroom Accessories</a> <a class=\"link\" href=\"/household-supplies/pr?sid=2gd,toa,zjz\">Household Supplies</a> <a class=\"link\" href=\"/cleaning-supplies/pr?sid=2gd,toa,qfn\">Cleaning Supplies</a> <a class=\"link\" href=\"/bathroom-accessories/pr?sid=2gd,toa,z7y\">Bathroom Accessories</a> <a class=\"link\" href=\"/industrial-and-scientific-supplies/pr?sid=2gd,w5h\">Industrial and Scientific Supplies</a> <a class=\"link\" href=\"/safety-products/pr?sid=2gd,w5h,0f2\">Safety Products</a> <a class=\"link\" href=\"/packaging-and-shipping-products/pr?sid=2gd,w5h,19q\">Packaging and Shipping Products</a> <a class=\"link\" href=\"/health-care-devices/pr?sid=2gd,ref\">Health Care Devices</a> <a class=\"link\" href=\"/heating-pad/pr?sid=2gd,ref,k2q\">Heating Pad</a> <a class=\"link\" href=\"/slimming-machine/pr?sid=2gd,ref,62b\">Slimming Machine</a> <a class=\"link\" href=\"/cholestrol-analyzer/pr?sid=2gd,ref,5e7\">Cholestrol Analyzer</a> <a class=\"link\" href=\"/massagers/pr?sid=2gd,ref,6go\">Massagers</a> <a class=\"link\" href=\"/weighing-scale/pr?sid=2gd,ref,vtl\">Weighing Scale</a> <a class=\"link\" href=\"/health-care-appliances-combo/pr?sid=2gd,ref,two\">Health Care Appliances Combo</a> <a class=\"link\" href=\"/glucometer-and-accessories/pr?sid=2gd,ref,ljh\">Glucometer and Accessories</a> <a class=\"link\" href=\"/respiratory-exerciser/pr?sid=2gd,ref,f5p\">Respiratory Exerciser</a> <a class=\"link\" href=\"/bmi-weighing-scale/pr?sid=2gd,ref,3l8\">BMI Weighing Scale</a> <a class=\"link\" href=\"/bp-monitor-and-accessories/pr?sid=2gd,ref,0bp\">BP Monitor and Accessories</a> <a class=\"link\" href=\"/anti-snore-wristband/pr?sid=2gd,ref,2ah\">Anti Snore Wristband</a> <a class=\"link\" href=\"/pulse-oximeter/pr?sid=2gd,ref,rfc\">Pulse Oximeter</a> <a class=\"link\" href=\"/anti-snoring-device/pr?sid=2gd,ref,eac\">Anti Snoring Device</a> <a class=\"link\" href=\"/slimming-belt/pr?sid=2gd,ref,6uu\">Slimming Belt</a> <a class=\"link\" href=\"/digital-thermometer/pr?sid=2gd,ref,nyz\">Digital Thermometer</a> <a class=\"link\" href=\"/vaporizer/pr?sid=2gd,ref,814\">Vaporizer</a> <a class=\"link\" href=\"/body-fat-analyzer/pr?sid=2gd,ref,hr8\">Body Fat Analyzer</a> <a class=\"link\" href=\"/electric-toothbrush/pr?sid=2gd,ref,mpm\">Electric Toothbrush</a> <a class=\"link\" href=\"/nebulizer/pr?sid=2gd,ref,hig\">Nebulizer</a> <a class=\"link\" href=\"/health-care/pr?sid=2gd,zrc\">Health Care</a> <a class=\"link\" href=\"/health-care-combo/pr?sid=2gd,zrc,ihx\">Health Care Combo</a> <a class=\"link\" href=\"/womens-safety/pr?sid=2gd,zrc,09k\">Women's Safety</a> <a class=\"link\" href=\"/home-medical-supplies/pr?sid=2gd,zrc,58k\">Home Medical Supplies</a> <a class=\"link\" href=\"/home-medicines/pr?sid=2gd,zrc,lgq\">Home Medicines</a> <a class=\"link\" href=\"/mobile-accessories/pr?sid=2gd,p49\">Mobile & Accessories</a> <a class=\"link\" href=\"/mobile-tablet-accessories/pr?sid=2gd,p49,xhg\">Mobile & Tablet Accessories</a> <a class=\"link\" href=\"/mobiles/pr?sid=2gd,p49,kns\">Mobiles</a> <a class=\"link\" href=\"/tablets/pr?sid=2gd,p49,q7q\">Tablets</a> <a class=\"link\" href=\"/gaming-accessories/pr?sid=2gd,gto\">Gaming & Accessories</a> <a class=\"link\" href=\"/gaming-controllers/pr?sid=2gd,gto,kew\">Gaming Controllers</a> <a class=\"link\" href=\"/gaming-console/pr?sid=2gd,gto,iva\">Gaming Console</a> <a class=\"link\" href=\"/gaming-accessories/pr?sid=2gd,gto,hos\">Gaming Accessories</a> <a class=\"link\" href=\"/sports/pr?sid=2gd,8me\">Sports</a> <a class=\"link\" href=\"/darts/pr?sid=2gd,8me,zxf\">Darts</a> <a class=\"link\" href=\"/hockey/pr?sid=2gd,8me,sss\">Hockey</a> <a class=\"link\" href=\"/air-hockey-accessories/pr?sid=2gd,8me,rzg\">Air Hockey Accessories</a> <a class=\"link\" href=\"/slacklining/pr?sid=2gd,8me,xt0\">Slacklining</a> <a class=\"link\" href=\"/track-and-field/pr?sid=2gd,8me,fac\">Track and Field</a> <a class=\"link\" href=\"/rugby/pr?sid=2gd,8me,y8h\">Rugby</a> <a class=\"link\" href=\"/chess-board-and-accessories/pr?sid=2gd,8me,zi2\">Chess Board and Accessories</a> <a class=\"link\" href=\"/golf/pr?sid=2gd,8me,ey3\">Golf</a> <a class=\"link\" href=\"/carrom-board-accessories/pr?sid=2gd,8me,fkb\">Carrom Board & Accessories</a> <a class=\"link\" href=\"/discuss-throw/pr?sid=2gd,8me,m8j\">Discuss Throw</a> <a class=\"link\" href=\"/badminton/pr?sid=2gd,8me,tgk\">Badminton</a> <a class=\"link\" href=\"/football/pr?sid=2gd,8me,44b\">Football</a> <a class=\"link\" href=\"/boxing-accessories/pr?sid=2gd,8me,vzz\">Boxing Accessories</a> <a class=\"link\" href=\"/kite-flying/pr?sid=2gd,8me,uws\">Kite Flying</a> <a class=\"link\" href=\"/poker/pr?sid=2gd,8me,yrf\">Poker</a> <a class=\"link\" href=\"/skiing/pr?sid=2gd,8me,ick\">Skiing</a> <a class=\"link\" href=\"/water-polo/pr?sid=2gd,8me,p0r\">Water Polo</a> <a class=\"link\" href=\"/frisbees/pr?sid=2gd,8me,yq5\">Frisbees</a> <a class=\"link\" href=\"/water-sports/pr?sid=2gd,8me,2lg\">Water Sports</a> <a class=\"link\" href=\"/basketball/pr?sid=2gd,8me,uy7\">Basketball</a> <a class=\"link\" href=\"/baseball/pr?sid=2gd,8me,6yj\">Baseball</a> <a class=\"link\" href=\"/boomerangs/pr?sid=2gd,8me,0wg\">Boomerangs</a> <a class=\"link\" href=\"/laccrose/pr?sid=2gd,8me,ahn\">Laccrose</a> <a class=\"link\" href=\"/pickleball/pr?sid=2gd,8me,bo1\">Pickleball</a> <a class=\"link\" href=\"/foosball/pr?sid=2gd,8me,wye\">Foosball</a> <a class=\"link\" href=\"/fishing/pr?sid=2gd,8me,j8v\">Fishing</a> <a class=\"link\" href=\"/climbing/pr?sid=2gd,8me,dqu\">Climbing</a> <a class=\"link\" href=\"/bowling/pr?sid=2gd,8me,xgk\">Bowling</a> <a class=\"link\" href=\"/skating/pr?sid=2gd,8me,dx0\">Skating</a> <a class=\"link\" href=\"/water-skiing/pr?sid=2gd,8me,eaz\">Water Skiing</a> <a class=\"link\" href=\"/surfing/pr?sid=2gd,8me,kll\">Surfing</a> <a class=\"link\" href=\"/paintball/pr?sid=2gd,8me,31w\">Paintball</a> <a class=\"link\" href=\"/archery-accessories/pr?sid=2gd,8me,srg\">Archery Accessories</a> <a class=\"link\" href=\"/table-tennis/pr?sid=2gd,8me,wdy\">Table Tennis</a> <a class=\"link\" href=\"/netball/pr?sid=2gd,8me,ess\">Netball</a> <a class=\"link\" href=\"/horse-riding/pr?sid=2gd,8me,tbg\">Horse Riding</a> <a class=\"link\" href=\"/swimming/pr?sid=2gd,8me,5lz\">Swimming</a> <a class=\"link\" href=\"/taekwondo/pr?sid=2gd,8me,qln\">Taekwondo</a> <a class=\"link\" href=\"/athletics/pr?sid=2gd,8me,kys\">Athletics</a> <a class=\"link\" href=\"/handball/pr?sid=2gd,8me,3qk\">Handball</a> <a class=\"link\" href=\"/pool/pr?sid=2gd,8me,bur\">Pool</a> <a class=\"link\" href=\"/running/pr?sid=2gd,8me,xmz\">Running</a> <a class=\"link\" href=\"/scuba-diving/pr?sid=2gd,8me,bid\">Scuba Diving</a> <a class=\"link\" href=\"/cricket/pr?sid=2gd,8me,xnp\">Cricket</a> <a class=\"link\" href=\"/camping-and-hiking/pr?sid=2gd,8me,4fp\">Camping and Hiking</a> <a class=\"link\" href=\"/hobby-hunting/pr?sid=2gd,8me,1iq\">Hobby Hunting</a> <a class=\"link\" href=\"/broomball-gear/pr?sid=2gd,8me,2ni\">Broomball Gear</a> <a class=\"link\" href=\"/boating/pr?sid=2gd,8me,y6x\">Boating</a> <a class=\"link\" href=\"/kayaking/pr?sid=2gd,8me,i3h\">Kayaking</a> <a class=\"link\" href=\"/cycling-spares-and-accessories/pr?sid=2gd,8me,mzg\">Cycling Spares and Accessories</a> <a class=\"link\" href=\"/throwball/pr?sid=2gd,8me,cwx\">Throwball</a> <a class=\"link\" href=\"/shooting/pr?sid=2gd,8me,scu\">Shooting</a> <a class=\"link\" href=\"/tennis/pr?sid=2gd,8me,css\">Tennis</a> <a class=\"link\" href=\"/jumping-trainers/pr?sid=2gd,8me,gpg\">Jumping Trainers</a> <a class=\"link\" href=\"/croquet/pr?sid=2gd,8me,isd\">Croquet</a> <a class=\"link\" href=\"/other-ball-sports/pr?sid=2gd,8me,szh\">Other Ball Sports</a> <a class=\"link\" href=\"/squash/pr?sid=2gd,8me,dca\">Squash</a> <a class=\"link\" href=\"/diving/pr?sid=2gd,8me,xvx\">Diving</a> <a class=\"link\" href=\"/sports-accessories/pr?sid=2gd,8me,3m4\">Sports Accessories</a> <a class=\"link\" href=\"/volleyball/pr?sid=2gd,8me,l5q\">Volleyball</a> <a class=\"link\" href=\"/automotive/pr?sid=2gd,fzr\">Automotive</a> <a class=\"link\" href=\"/riding-gear/pr?sid=2gd,fzr,7lj\">Riding Gear</a> <a class=\"link\" href=\"/bike-spare-parts-and-accessories/pr?sid=2gd,fzr,50x\">Bike Spare Parts and Accessories</a> <a class=\"link\" href=\"/car-spare-parts-and-accessories/pr?sid=2gd,fzr,c1c\">Car Spare Parts and Accessories</a> <a class=\"link\" href=\"/auto-tools-and-care/pr?sid=2gd,fzr,p45\">Auto Tools and Care</a> <a class=\"link\" href=\"/paintings-posters/pr?sid=2gd,ucl\">Paintings & Posters</a> <a class=\"link\" href=\"/jewellery/pr?sid=2gd,nlu\">Jewellery</a> <a class=\"link\" href=\"/jewellery-sets/pr?sid=2gd,nlu,piv\">Jewellery Sets</a> <a class=\"link\" href=\"/bracelets/pr?sid=2gd,nlu,32k\">Bracelets</a> <a class=\"link\" href=\"/pendant-locket/pr?sid=2gd,nlu,z4d\">Pendant Locket</a> <a class=\"link\" href=\"/nose-ring-studs/pr?sid=2gd,nlu,10b\">Nose Ring Studs</a> <a class=\"link\" href=\"/necklaces/pr?sid=2gd,nlu,bdn\">Necklaces</a> <a class=\"link\" href=\"/earrings/pr?sid=2gd,nlu,hik\">Earrings</a> <a class=\"link\" href=\"/mangalsutras/pr?sid=2gd,nlu,50t\">Mangalsutras</a> <a class=\"link\" href=\"/coins-and-bars/pr?sid=2gd,nlu,0gn\">Coins and Bars</a> <a class=\"link\" href=\"/charms/pr?sid=2gd,nlu,vs8\">Charms</a> <a class=\"link\" href=\"/jewellery-accessories/pr?sid=2gd,nlu,lfq\">Jewellery Accessories</a> <a class=\"link\" href=\"/body-chain/pr?sid=2gd,nlu,v2c\">Body Chain</a> <a class=\"link\" href=\"/chains/pr?sid=2gd,nlu,8i4\">Chains</a> <a class=\"link\" href=\"/anklets/pr?sid=2gd,nlu,cwb\">Anklets</a> <a class=\"link\" href=\"/rings/pr?sid=2gd,nlu,0n0\">Rings</a> <a class=\"link\" href=\"/kaleera/pr?sid=2gd,nlu,fe0\">Kaleera</a> <a class=\"link\" href=\"/bangles/pr?sid=2gd,nlu,id6\">Bangles</a> <a class=\"link\" href=\"/mukut/pr?sid=2gd,nlu,950\">Mukut</a> <a class=\"link\" href=\"/kamarband/pr?sid=2gd,nlu,6s9\">Kamarband</a> </div><h2><a href=\"/baby-care/pr?sid=kyh\">Baby Care</a></h2><div><a class=\"link\" href=\"/baby-care/bath-care/pr?sid=kyh,qst\">Baby Bath & Skin</a> <a class=\"link\" href=\"/bath-sponges/pr?sid=kyh,qst,r23\">Bath Sponges</a> <a class=\"link\" href=\"/bath-essential-oils/pr?sid=kyh,qst,aq4\">Bath Essential Oils</a> <a class=\"link\" href=\"/baby-soaps/pr?sid=kyh,qst,kkv\">Baby Soaps</a> <a class=\"link\" href=\"/bath-robes/pr?sid=kyh,qst,f42\">Bath Robes</a> <a class=\"link\" href=\"/baby-shower-caps/pr?sid=kyh,qst,ncb\">Baby Shower Caps</a> <a class=\"link\" href=\"/baby-body-wash/pr?sid=kyh,qst,qkc\">Baby Body Wash</a> <a class=\"link\" href=\"/baby-shampoo/pr?sid=kyh,qst,q1g\">Baby Shampoo</a> <a class=\"link\" href=\"/bath-seats/pr?sid=kyh,qst,mog\">Bath Seats</a> <a class=\"link\" href=\"/baby-powder/pr?sid=kyh,qst,ufs\">Baby Powder</a> <a class=\"link\" href=\"/baby-powder-puffs/pr?sid=kyh,qst,x68\">Baby Powder Puffs</a> <a class=\"link\" href=\"/baby-bath-tubs/pr?sid=kyh,qst,iak\">Baby Bath Tubs</a> <a class=\"link\" href=\"/baby-bath-towels/pr?sid=kyh,qst,fay\">Baby Bath Towels</a> <a class=\"link\" href=\"/soap-cases/pr?sid=kyh,qst,y2r\">Soap Cases</a> <a class=\"link\" href=\"/diaper-potty-training/pr?sid=kyh,fdp\">Diaper & Potty Training</a> <a class=\"link\" href=\"/baby-diapers/pr?sid=kyh,fdp,yvf\">Baby Diapers</a> <a class=\"link\" href=\"/baby-wipes/pr?sid=kyh,fdp,kvq\">Baby Wipes</a> <a class=\"link\" href=\"/baby-care/diapering-potty-training/nappies/pr?sid=kyh,fdp,urx\">Nappy</a> <a class=\"link\" href=\"/baby-nappy-pads/pr?sid=kyh,fdp,g47\">Baby Nappy Pads</a> <a class=\"link\" href=\"/diaper-disposable-bags/pr?sid=kyh,fdp,0hw\">Diaper Disposable Bags</a> <a class=\"link\" href=\"/diaper-changing-mats/pr?sid=kyh,fdp,45c\">Diaper Changing Mats</a> <a class=\"link\" href=\"/potty-seats/pr?sid=kyh,fdp,c5n\">Potty Seats</a> <a class=\"link\" href=\"/wipe-warmers/pr?sid=kyh,fdp,eq2\">Wipe Warmers</a> <a class=\"link\" href=\"/diaper-changing-stations/pr?sid=kyh,fdp,hdb\">Diaper Changing Stations</a> <a class=\"link\" href=\"/baby-lotions-creams/pr?sid=kyh,fdp,lhn\">Baby Lotions & Creams</a> <a class=\"link\" href=\"/baby-rash-cream/pr?sid=kyh,fdp,frv\">Baby Rash Cream</a> <a class=\"link\" href=\"/diaper-bags/pr?sid=kyh,fdp,q59\">Diaper Bags</a> <a class=\"link\" href=\"/diaper-bins/pr?sid=kyh,fdp,ls2\">Diaper Bins</a> <a class=\"link\" href=\"/potty-boxes/pr?sid=kyh,fdp,e1w\">Potty Boxes</a> <a class=\"link\" href=\"/wet-reminders/pr?sid=kyh,fdp,vsm\">Wet Reminders</a> <a class=\"link\" href=\"/changing-tables/pr?sid=kyh,fdp,jp2\">Changing Tables</a> <a class=\"link\" href=\"/baby-bath-hair-skin-care/pr?sid=kyh,pl5\">Baby Bath, Hair & Skin Care</a> <a class=\"link\" href=\"/deodorants-perfumes/pr?sid=kyh,pl5,zfq\">Deodorants & Perfumes</a> <a class=\"link\" href=\"/baby-bath-essentials-oils/pr?sid=kyh,pl5,elg\">Baby Bath Essentials Oils</a> <a class=\"link\" href=\"/baby-soap/pr?sid=kyh,pl5,kjr\">Baby Soap</a> <a class=\"link\" href=\"/baby-shampoo/pr?sid=kyh,pl5,ckx\">Baby Shampoo</a> <a class=\"link\" href=\"/baby-body-wash/pr?sid=kyh,pl5,pee\">Baby Body Wash</a> <a class=\"link\" href=\"/baby-conditioners/pr?sid=kyh,pl5,eql\">Baby Conditioners</a> <a class=\"link\" href=\"/baby-powders/pr?sid=kyh,pl5,a0b\">Baby Powders</a> <a class=\"link\" href=\"/baby-hair-oils/pr?sid=kyh,pl5,xhj\">Baby Hair Oils</a> <a class=\"link\" href=\"/baby-massage-oils/pr?sid=kyh,pl5,v7f\">Baby Massage Oils</a> <a class=\"link\" href=\"/baby-lotions-creams/pr?sid=kyh,pl5,8q6\">Baby Lotions & Creams</a> <a class=\"link\" href=\"/baby-powder-puffs/pr?sid=kyh,pl5,0a0\">Baby Powder Puffs</a> <a class=\"link\" href=\"/baby-sunscreen/pr?sid=kyh,pl5,sfs\">Baby Sunscreen</a> <a class=\"link\" href=\"/baby-food/pr?sid=kyh,arw\">Baby Food</a> <a class=\"link\" href=\"/infant-formula/pr?sid=kyh,arw,jq6\">Infant Formula</a> <a class=\"link\" href=\"/baby-cereal/pr?sid=kyh,arw,mgv\">Baby Cereal</a> <a class=\"link\" href=\"/baby-snacks/pr?sid=kyh,arw,tzi\">Baby Snacks</a> <a class=\"link\" href=\"/baby-fruit-vegetable-blends/pr?sid=kyh,arw,iof\">Baby Fruit & Vegetable Blends</a> <a class=\"link\" href=\"/baby-feeding-bottle-accessories/pr?sid=kyh,9gj\">Baby Feeding Bottle & Accessories</a> <a class=\"link\" href=\"/baby-feeding-bottles/pr?sid=kyh,9gj,ovq\">Baby Feeding Bottles</a> <a class=\"link\" href=\"/baby-bottle-covers/pr?sid=kyh,9gj,exs\">Baby Bottle Covers</a> <a class=\"link\" href=\"/baby-bottle-cleaning-brushes/pr?sid=kyh,9gj,ty9\">Baby Bottle Cleaning Brushes</a> <a class=\"link\" href=\"/baby-bottle-tongs/pr?sid=kyh,9gj,vg3\">Baby Bottle Tongs</a> <a class=\"link\" href=\"/baby-bottle-nipples/pr?sid=kyh,9gj,tum\">Baby Bottle Nipples</a> <a class=\"link\" href=\"/baby-toys/pr?sid=kyh,srh\">Baby Toys</a> <a class=\"link\" href=\"/rideons/pr?sid=kyh,srh,ks6\">Rideons</a> <a class=\"link\" href=\"/push-pull-along/pr?sid=kyh,srh,yin\">Push & Pull Along</a> <a class=\"link\" href=\"/bath-toys/pr?sid=kyh,srh,ztt\">Bath Toys</a> <a class=\"link\" href=\"/early-development-toys/pr?sid=kyh,srh,37e\">Early Development Toys</a> <a class=\"link\" href=\"/baby-rattles/pr?sid=kyh,srh,e70\">Baby Rattles</a> <a class=\"link\" href=\"/musical-toys/pr?sid=kyh,srh,zjb\">Musical Toys</a> <a class=\"link\" href=\"/crib-toys-play-gyms/pr?sid=kyh,srh,plf\">Crib Toys & Play Gyms</a> <a class=\"link\" href=\"/stacking-toys/pr?sid=kyh,srh,sub\">Stacking Toys</a> <a class=\"link\" href=\"/baby-feeding-utensils-accessories/pr?sid=kyh,dki\">Baby Feeding Utensils & Accessories</a> <a class=\"link\" href=\"/teethers/pr?sid=kyh,dki,huw\">Teethers</a> <a class=\"link\" href=\"/baby-bibs-hankies/pr?sid=kyh,dki,vvp\">Baby Bibs & Hankies</a> <a class=\"link\" href=\"/baby-food-maker/pr?sid=kyh,dki,iyf\">Baby Food Maker</a> <a class=\"link\" href=\"/baby-utensil-combo/pr?sid=kyh,dki,rkv\">Baby Utensil Combo</a> <a class=\"link\" href=\"/soothers/pr?sid=kyh,dki,okz\">Soothers</a> <a class=\"link\" href=\"/baby-sipper-cups/pr?sid=kyh,dki,gtn\">Baby Sipper Cups</a> <a class=\"link\" href=\"/baby-food-feeder/pr?sid=kyh,dki,p8w\">Baby Food Feeder</a> <a class=\"link\" href=\"/baby-cups/pr?sid=kyh,dki,wlg\">Baby Cups</a> <a class=\"link\" href=\"/baby-plates/pr?sid=kyh,dki,x4j\">Baby Plates</a> <a class=\"link\" href=\"/baby-spoons/pr?sid=kyh,dki,9ya\">Baby Spoons</a> <a class=\"link\" href=\"/baby-forks/pr?sid=kyh,dki,z9a\">Baby Forks</a> <a class=\"link\" href=\"/baby-bowls/pr?sid=kyh,dki,g3q\">Baby Bowls</a> <a class=\"link\" href=\"/baby-grooming/pr?sid=kyh,tyn\">Baby Grooming</a> <a class=\"link\" href=\"/baby-hair-brush-comb/pr?sid=kyh,tyn,net\">Baby Hair Brush & Comb</a> <a class=\"link\" href=\"/beauty-and-personal-care/beauty-accessories/hair-care-accessories/hair-combs/pr?sid=kyh,tyn,5y9\">Hair Brush & Comb</a> <a class=\"link\" href=\"/baby-powder-puffs/pr?sid=kyh,tyn,x68\">Baby Powder Puffs</a> <a class=\"link\" href=\"/baby-nail-clippers/pr?sid=kyh,tyn,i07\">Baby Nail Clippers</a> <a class=\"link\" href=\"/deodorants/pr?sid=kyh,tyn,347\">Deodorants</a> <a class=\"link\" href=\"/baby-scissors/pr?sid=kyh,tyn,ln4\">Baby Scissors</a> <a class=\"link\" href=\"/cotton-buds/pr?sid=kyh,tyn,9mb\">Cotton Buds</a> <a class=\"link\" href=\"/baby-grooming-combos/pr?sid=kyh,tyn,6iu\">Baby Grooming Combos</a> <a class=\"link\" href=\"/baby-powder/pr?sid=kyh,tyn,euu\">Baby Powder</a> <a class=\"link\" href=\"/baby-lotions-creams/pr?sid=kyh,tyn,lhn\">Baby Lotions & Creams</a> <a class=\"link\" href=\"/baby-cologne/pr?sid=kyh,tyn,n5i\">Baby Cologne</a> <a class=\"link\" href=\"/baby-massage-oils/pr?sid=kyh,tyn,3da\">Baby Massage Oils</a> <a class=\"link\" href=\"/baby-hair-oils/pr?sid=kyh,tyn,4hz\">Baby Hair Oils</a> <a class=\"link\" href=\"/baby-oral-care/pr?sid=kyh,ga0\">Baby Oral Care</a> <a class=\"link\" href=\"/baby-toothbrushes/pr?sid=kyh,ga0,okg\">Baby Toothbrushes</a> <a class=\"link\" href=\"/baby-toothbrush-stands/pr?sid=kyh,ga0,bzk\">Baby Toothbrush Stands</a> <a class=\"link\" href=\"/baby-toothpastes/pr?sid=kyh,ga0,aim\">Baby Toothpastes</a> <a class=\"link\" href=\"/baby-tongue-cleaner/pr?sid=kyh,ga0,cid\">Baby Tongue Cleaner</a> <a class=\"link\" href=\"/feeding-nursing/pr?sid=kyh,wpw\">Feeding & Nursing</a> <a class=\"link\" href=\"/feeding-cloaks/pr?sid=kyh,wpw,8ne\">Feeding Cloaks</a> <a class=\"link\" href=\"/sterilizers-warmers/pr?sid=kyh,wpw,n81\">Sterilizers & Warmers</a> <a class=\"link\" href=\"/breast-cushion-pillows/pr?sid=kyh,wpw,ude\">Breast Cushion Pillows</a> <a class=\"link\" href=\"/feeding-pillows/pr?sid=kyh,wpw,iob\">Feeding Pillows</a> <a class=\"link\" href=\"/milk-storage-bags/pr?sid=kyh,wpw,0ny\">Milk Storage Bags</a> <a class=\"link\" href=\"/breast-nipple-care/pr?sid=kyh,wpw,lt4\">Breast & Nipple Care</a> <a class=\"link\" href=\"/bottles-accessories/pr?sid=kyh,wpw,i5z\">Bottles & Accessories</a> <a class=\"link\" href=\"/drying-racks/pr?sid=kyh,wpw,rxf\">Drying Racks</a> <a class=\"link\" href=\"/utensils/pr?sid=kyh,wpw,fz1\">Utensils</a> <a class=\"link\" href=\"/bibs-hankies/pr?sid=kyh,wpw,gsi\">Bibs & Hankies</a> <a class=\"link\" href=\"/breast-pumps/pr?sid=kyh,wpw,qux\">Breast Pumps</a> <a class=\"link\" href=\"/baby-food-maker/pr?sid=kyh,wpw,lpz\">Baby Food Maker</a> <a class=\"link\" href=\"/baby-bedding/pr?sid=kyh,7j3\">Baby Bedding</a> <a class=\"link\" href=\"/baby-mats/pr?sid=kyh,7j3,g7e\">Baby Mats</a> <a class=\"link\" href=\"/crib-bassinets/pr?sid=kyh,7j3,xua\">Crib & Bassinets</a> <a class=\"link\" href=\"/baby-bed-protector/pr?sid=kyh,7j3,lcl\">Baby Bed Protector</a> <a class=\"link\" href=\"/diaper-changing-mats/pr?sid=kyh,7j3,5qn\">Diaper Changing Mats</a> <a class=\"link\" href=\"/baby-cradles/pr?sid=kyh,7j3,mer\">Baby Cradles</a> <a class=\"link\" href=\"/baby-blankets/pr?sid=kyh,7j3,w47\">Baby Blankets</a> <a class=\"link\" href=\"/baby-mosquito-nets/pr?sid=kyh,7j3,vyj\">Baby Mosquito Nets</a> <a class=\"link\" href=\"/baby-pillows/pr?sid=kyh,7j3,5j4\">Baby Pillows</a> <a class=\"link\" href=\"/bunting-bags/pr?sid=kyh,7j3,fw4\">Bunting Bags</a> <a class=\"link\" href=\"/diaper-changing-mats/pr?sid=kyh,7j3,45c\">Diaper Changing Mats</a> <a class=\"link\" href=\"/baby-beds/pr?sid=kyh,7j3,1gj\">Baby Beds</a> <a class=\"link\" href=\"/baby-sleeping-bags/pr?sid=kyh,7j3,rmc\">Baby Sleeping Bags</a> <a class=\"link\" href=\"/baby-bedsheets/pr?sid=kyh,7j3,50d\">Baby Bedsheets</a> <a class=\"link\" href=\"/baby-mattresses/pr?sid=kyh,7j3,kwa\">Baby Mattresses</a> <a class=\"link\" href=\"/baby-bedding-sets/pr?sid=kyh,7j3,yr4\">Baby Bedding Sets</a> <a class=\"link\" href=\"/baby-care/baby-gear/pr?sid=kyh,5mt\">Baby Gear</a> <a class=\"link\" href=\"/baby-high-chairs/pr?sid=kyh,5mt,uja\">Baby High Chairs</a> <a class=\"link\" href=\"/gear-accessories/pr?sid=kyh,5mt,q7t\">Gear Accessories</a> <a class=\"link\" href=\"/baby-crib-toys/pr?sid=kyh,5mt,uym\">Baby Crib Toys</a> <a class=\"link\" href=\"/baby-swings/pr?sid=kyh,5mt,9b3\">Baby Swings</a> <a class=\"link\" href=\"/baby-carry-cot/pr?sid=kyh,5mt,pdg\">Baby Carry Cot</a> <a class=\"link\" href=\"/baby-car-seats/pr?sid=kyh,5mt,30h\">Baby Car Seats</a> <a class=\"link\" href=\"/stroller-pram-pads/pr?sid=kyh,5mt,4oz\">Stroller Pram Pads</a> <a class=\"link\" href=\"/baby-booster-seats/pr?sid=kyh,5mt,if5\">Baby Booster Seats</a> <a class=\"link\" href=\"/baby-cots-bassinets/pr?sid=kyh,5mt,18u\">Baby Cots & Bassinets</a> <a class=\"link\" href=\"/baby-walkers/pr?sid=kyh,5mt,763\">Baby Walkers</a> <a class=\"link\" href=\"/baby-care/baby-gear/bouncers/pr?sid=kyh,5mt,jv5\">Baby Bouncers & Rockers</a> <a class=\"link\" href=\"/baby-strollers-prams/pr?sid=kyh,5mt,llt\">Baby Strollers & Prams</a> <a class=\"link\" href=\"/cribs-cradles/pr?sid=kyh,5mt,y38\">Cribs & Cradles</a> <a class=\"link\" href=\"/shopping-cart-covers/pr?sid=kyh,5mt,26q\">Shopping Cart Covers</a> <a class=\"link\" href=\"/baby-chair-belts/pr?sid=kyh,5mt,sso\">Baby Chair Belts</a> <a class=\"link\" href=\"/stroller-rain-covers/pr?sid=kyh,5mt,haq\">Stroller Rain Covers</a> <a class=\"link\" href=\"/baby-play-gyms/pr?sid=kyh,5mt,fwe\">Baby Play Gyms</a> <a class=\"link\" href=\"/baby-care/baby-gear/carriers-cuddlers/pr?sid=kyh,5mt,x7b\">Baby Carriers & Cuddlers</a> <a class=\"link\" href=\"/baby-care/furniture-decoration/pr?sid=kyh,o3h\">Furniture & Furnishings</a> <a class=\"link\" href=\"/baby-cots-bassinets/pr?sid=kyh,o3h,18u\">Baby Cots & Bassinets</a> <a class=\"link\" href=\"/inflatable-products/pr?sid=kyh,o3h,tyv\">Inflatable Products</a> <a class=\"link\" href=\"/baby-booster-seats/pr?sid=kyh,o3h,if5\">Baby Booster Seats</a> <a class=\"link\" href=\"/chairs/pr?sid=kyh,o3h,qwk\">Chairs</a> <a class=\"link\" href=\"/table-clocks/pr?sid=kyh,o3h,8jz\">Table Clocks</a> <a class=\"link\" href=\"/wall-clocks/pr?sid=kyh,o3h,anj\">Wall Clocks</a> <a class=\"link\" href=\"/cribs-cradles/pr?sid=kyh,o3h,iap\">Cribs & Cradles</a> <a class=\"link\" href=\"/folding-almirah-organisers/pr?sid=kyh,o3h,n4t\">Folding Almirah & Organisers</a> <a class=\"link\" href=\"/baby-albums/pr?sid=kyh,o3h,shg\">Baby Albums</a> <a class=\"link\" href=\"/baby-beds/pr?sid=kyh,o3h,1gj\">Baby Beds</a> <a class=\"link\" href=\"/tables/pr?sid=kyh,o3h,tbh\">Tables</a> <a class=\"link\" href=\"/wall-decorations/pr?sid=kyh,o3h,9yh\">Wall Decorations</a> <a class=\"link\" href=\"/curtains/pr?sid=kyh,o3h,c5r\">Curtains</a> <a class=\"link\" href=\"/table-chair-combos/pr?sid=kyh,o3h,h7s\">Table & Chair Combos</a> <a class=\"link\" href=\"/bedding-sets/pr?sid=kyh,o3h,x4i\">Bedding Sets</a> <a class=\"link\" href=\"/nursery-decorations/pr?sid=kyh,o3h,obh\">Nursery Decorations</a> <a class=\"link\" href=\"/baby-medical-health-care/pr?sid=kyh,g83\">Baby Medical & Health Care</a> <a class=\"link\" href=\"/nasal-aspirators/pr?sid=kyh,g83,xf5\">Nasal Aspirators</a> <a class=\"link\" href=\"/baby-pain-relief/pr?sid=kyh,g83,odp\">Baby Pain Relief</a> <a class=\"link\" href=\"/cotton-buds/pr?sid=kyh,g83,o8i\">Cotton Buds</a> <a class=\"link\" href=\"/baby-thermometers/pr?sid=kyh,g83,itr\">Baby Thermometers</a> <a class=\"link\" href=\"/fetal-dopplers/pr?sid=kyh,g83,e63\">Fetal Dopplers</a> <a class=\"link\" href=\"/baby-medicine-droppers/pr?sid=kyh,g83,grg\">Baby Medicine Droppers</a> <a class=\"link\" href=\"/sanitizers/pr?sid=kyh,g83,lzm\">Sanitizers</a> <a class=\"link\" href=\"/baby-dosage-spoons/pr?sid=kyh,g83,dem\">Baby Dosage Spoons</a> <a class=\"link\" href=\"/baby-ear-syringes/pr?sid=kyh,g83,mqg\">Baby Ear Syringes</a> <a class=\"link\" href=\"/baby-supplements/pr?sid=kyh,g83,ghx\">Baby Supplements</a> <a class=\"link\" href=\"/bottle-sterilizers/pr?sid=kyh,g83,gts\">Bottle Sterilizers</a> <a class=\"link\" href=\"/cotton-balls/pr?sid=kyh,g83,kws\">Cotton Balls</a> <a class=\"link\" href=\"/baby-mosquito-insect-repellant/pr?sid=kyh,g83,wcm\">Baby Mosquito & Insect Repellant</a> <a class=\"link\" href=\"/gripe-water/pr?sid=kyh,g83,3ok\">Gripe Water</a> <a class=\"link\" href=\"/bottle-warmers/pr?sid=kyh,g83,94d\">Bottle Warmers</a> <a class=\"link\" href=\"/handwash/pr?sid=kyh,g83,xef\">Handwash</a> <a class=\"link\" href=\"/infant-wear/pr?sid=kyh,mjf\">Infant Wear</a> <a class=\"link\" href=\"/baby-girls-clothes/pr?sid=kyh,mjf,abv\">Baby Girls' Clothes</a> <a class=\"link\" href=\"/baby-boys-clothing/pr?sid=kyh,mjf,jta\">Baby Boys Clothing</a> <a class=\"link\" href=\"/fragrances/pr?sid=kyh,r3o\">Fragrances</a> <a class=\"link\" href=\"/deodorants/pr?sid=kyh,r3o,347\">Deodorants</a> <a class=\"link\" href=\"/gift-sets/pr?sid=kyh,r3o,v0h\">Gift Sets</a> <a class=\"link\" href=\"/perfumes/pr?sid=kyh,r3o,aa1\">Perfumes</a> <a class=\"link\" href=\"/air-fresheners/pr?sid=kyh,r3o,4q3\">Air Fresheners</a> <a class=\"link\" href=\"/baby-proofing-safety/pr?sid=kyh,vxo\">Baby Proofing & Safety</a> <a class=\"link\" href=\"/baby-proofing/pr?sid=kyh,vxo,ppd\">Baby Proofing</a> <a class=\"link\" href=\"/baby-safety-gates/pr?sid=kyh,vxo,ykf\">Baby Safety Gates</a> <a class=\"link\" href=\"/baby-head-protector/pr?sid=kyh,vxo,kyv\">Baby Head protector</a> <a class=\"link\" href=\"/baby-monitors/pr?sid=kyh,vxo,ivd\">Baby Monitors</a> <a class=\"link\" href=\"/baby-knee-pads/pr?sid=kyh,vxo,gwb\">Baby Knee Pads</a> <a class=\"link\" href=\"/baby-knee-pads/pr?sid=kyh,vxo,ksd\">Baby Knee Pads</a> <a class=\"link\" href=\"/baby-safety-locks/pr?sid=kyh,vxo,ahu\">Baby Safety Locks</a> <a class=\"link\" href=\"/health-safety/pr?sid=kyh,ejd\">Health & Safety</a> <a class=\"link\" href=\"/baby-thermometer/pr?sid=kyh,ejd,li9\">Baby Thermometer</a> <a class=\"link\" href=\"/baby-knee-pads/pr?sid=kyh,ejd,tyr\">Baby Knee Pads</a> <a class=\"link\" href=\"/ear-syringes/pr?sid=kyh,ejd,e6i\">Ear Syringes</a> <a class=\"link\" href=\"/baby-safety-gates/pr?sid=kyh,ejd,xd3\">Baby Safety Gates</a> <a class=\"link\" href=\"/safety-locks/pr?sid=kyh,ejd,ej1\">Safety Locks</a> </div><h2><a href=\"/gaming/pr?sid=4rr\">Gaming</a></h2><div><a class=\"link\" href=\"/gaming-consoles/pr?sid=4rr,x1m\">Gaming Consoles</a> <a class=\"link\" href=\"/ps5/pr?sid=4rr,x1m,ogz\">PS5</a> <a class=\"link\" href=\"/ps4/pr?sid=4rr,x1m,wym\">PS4</a> <a class=\"link\" href=\"/ps3/pr?sid=4rr,x1m,4td\">PS3</a> <a class=\"link\" href=\"/xbox-one/pr?sid=4rr,x1m,nn6\">Xbox One</a> <a class=\"link\" href=\"/xbox-360/pr?sid=4rr,x1m,pfv\">Xbox 360</a> <a class=\"link\" href=\"/ps-vista/pr?sid=4rr,x1m,j7z\">PS Vista</a> <a class=\"link\" href=\"/handheld-consoles/pr?sid=4rr,x1m,qyc\">Handheld Consoles</a> <a class=\"link\" href=\"/ps2/pr?sid=4rr,x1m,bwc\">PS2</a> <a class=\"link\" href=\"/psp/pr?sid=4rr,x1m,l1v\">PSP</a> <a class=\"link\" href=\"/wii/pr?sid=4rr,x1m,qfk\">Wii</a> <a class=\"link\" href=\"/wii-u/pr?sid=4rr,x1m,6f3\">Wii U</a> <a class=\"link\" href=\"/gaming-laptops/pr?sid=4rr,tz1\">Gaming Laptops</a> <a class=\"link\" href=\"/games/pr?sid=4rr,fa6\">Games</a> <a class=\"link\" href=\"/code-in-the-box-games/pr?sid=4rr,fa6,rw4\">Code in the box Games</a> <a class=\"link\" href=\"/physical-game/pr?sid=4rr,fa6,32v\">Physical Game</a> <a class=\"link\" href=\"/code-in-the-box-games/pr?sid=4rr,fa6,4r9\">Code in the box Games</a> <a class=\"link\" href=\"/ds-games/pr?sid=4rr,fa6,9xz\">DS Games</a> <a class=\"link\" href=\"/ps4-games/pr?sid=4rr,fa6,27p\">PS4 Games</a> <a class=\"link\" href=\"/wii-games/pr?sid=4rr,fa6,dtu\">Wii Games</a> <a class=\"link\" href=\"/wii-u-games/pr?sid=4rr,fa6,gzi\">Wii U Games</a> <a class=\"link\" href=\"/3ds-games/pr?sid=4rr,fa6,kdy\">3DS Games</a> <a class=\"link\" href=\"/xbox-one-games/pr?sid=4rr,fa6,eu0\">Xbox One Games</a> <a class=\"link\" href=\"/pc-games/pr?sid=4rr,fa6,mdf\">PC Games</a> <a class=\"link\" href=\"/xbox-360-games/pr?sid=4rr,fa6,zdm\">Xbox 360 Games</a> <a class=\"link\" href=\"/ps-vita-games/pr?sid=4rr,fa6,r9e\">PS Vita Games</a> <a class=\"link\" href=\"/ps3-games/pr?sid=4rr,fa6,ao2\">PS3 Games</a> <a class=\"link\" href=\"/ps2-games/pr?sid=4rr,fa6,9i7\">PS2 Games</a> <a class=\"link\" href=\"/gaming-accesories/pr?sid=4rr,km5\">Gaming Accessories</a> <a class=\"link\" href=\"/mouse-bungee/pr?sid=4rr,km5,p5d\">Mouse Bungee</a> <a class=\"link\" href=\"/mobile-accessories/headsets/pr?sid=4rr,km5,yhg\">Headphones (With Mic)</a> <a class=\"link\" href=\"/audio-gaming-panels/pr?sid=4rr,km5,ox2\">Audio Gaming Panels</a> <a class=\"link\" href=\"/gaming-chairs/pr?sid=4rr,km5,7uj\">Gaming Chairs</a> <a class=\"link\" href=\"/cables-adapters/pr?sid=4rr,km5,pto\">Cables & Adapters</a> <a class=\"link\" href=\"/controllers/pr?sid=4rr,km5,r39\">Controllers</a> <a class=\"link\" href=\"/processor/pr?sid=4rr,km5,bmp\">Processor</a> <a class=\"link\" href=\"/cases-covers/pr?sid=4rr,km5,ipq\">Cases & Covers</a> <a class=\"link\" href=\"/storage-devices/pr?sid=4rr,km5,70z\">Storage Devices</a> <a class=\"link\" href=\"/gaming-vests/pr?sid=4rr,km5,uoe\">Gaming Vests</a> <a class=\"link\" href=\"/accessory-kits/pr?sid=4rr,km5,y2t\">Accessory kits</a> <a class=\"link\" href=\"/mouse/pr?sid=4rr,km5,18a\">Mouse</a> <a class=\"link\" href=\"/charging-stations/pr?sid=4rr,km5,js1\">Charging Stations</a> <a class=\"link\" href=\"/mousepads/pr?sid=4rr,km5,jd7\">Mousepads</a> <a class=\"link\" href=\"/game-control-mounts/pr?sid=4rr,km5,szj\">Game Control Mounts</a> <a class=\"link\" href=\"/gaming-speakers/pr?sid=4rr,km5,frw\">Gaming Speakers</a> <a class=\"link\" href=\"/tvout-cable/pr?sid=4rr,km5,9o0\">TV-Out Cable</a> <a class=\"link\" href=\"/batteries-chargers/pr?sid=4rr,km5,76d\">Batteries & Chargers</a> <a class=\"link\" href=\"/gaming-accessories-combo/pr?sid=4rr,km5,q2r\">Gaming Accessories Combo</a> <a class=\"link\" href=\"/anti-suppression-patches/pr?sid=4rr,km5,x0c\">Anti Suppression Patches</a> <a class=\"link\" href=\"/keyboards/pr?sid=4rr,km5,3oe\">Keyboards</a> <a class=\"link\" href=\"/membership-cards/pr?sid=4rr,0se\">Membership Cards</a> <a class=\"link\" href=\"/gaming-components/pr?sid=4rr,tin\">Gaming Components</a> <a class=\"link\" href=\"/fans-heatsinks/pr?sid=4rr,tin,1xp\">Fans & Heatsinks</a> <a class=\"link\" href=\"/graphic-cards/pr?sid=4rr,tin,6zn\">Graphic Cards</a> <a class=\"link\" href=\"/power-supply-units/pr?sid=4rr,tin,qxk\">Power Supply Units</a> <a class=\"link\" href=\"/cabinets/pr?sid=4rr,tin,1yz\">Cabinets</a> </div><h2><a href=\"/music-movies-posters/pr?sid=4kt\">Music, Movies &amp; Posters</a></h2><div><a class=\"link\" href=\"/movies/pr?sid=4kt,3lz\">Movies & TV Show</a> <a class=\"link\" href=\"/movies/pr?sid=4kt,3lz,4jy\">Movies</a> <a class=\"link\" href=\"/tv-show/pr?sid=4kt,3lz,9us\">TV Show</a> <a class=\"link\" href=\"/posters/pr?sid=4kt,f7n\">Posters</a> </div><h2><a href=\"/home-entertainment/pr?sid=ckf\">Home Entertainment</a></h2><div><a class=\"link\" href=\"/video-players-accessories/pr?sid=ckf,see\">Video Players & Accessories</a> <a class=\"link\" href=\"/video-accessories/pr?sid=ckf,see,ul5\">Video Accessories</a> <a class=\"link\" href=\"/dth/pr?sid=ckf,see,9wn\">DTH</a> <a class=\"link\" href=\"/video-players/pr?sid=ckf,see,xdx\">Video Players</a> <a class=\"link\" href=\"/home-theaters/pr?sid=ckf,see,mi3\">Home Theaters</a> <a class=\"link\" href=\"/headsets/pr?sid=ckf,see,9jw\">Headsets</a> <a class=\"link\" href=\"/otg-adapters/pr?sid=ckf,see,2qy\">OTG Adapters</a> <a class=\"link\" href=\"/antenna-rotators/pr?sid=ckf,see,101\">Antenna Rotators</a> <a class=\"link\" href=\"/mp3-playersipods-accessories/pr?sid=ckf,yxq\">MP3 players/Ipods Accessories</a> <a class=\"link\" href=\"/speakers/pr?sid=ckf,yxq,5ev\">Speakers</a> <a class=\"link\" href=\"/fm-tuners/pr?sid=ckf,yxq,7my\">FM Tuners</a> <a class=\"link\" href=\"/ipod-screen-guards/pr?sid=ckf,yxq,9kv\">Ipod Screen guards</a> <a class=\"link\" href=\"/headphones/pr?sid=ckf,yxq,fp0\">Headphones</a> <a class=\"link\" href=\"/ipod-guardscoverscases/pr?sid=ckf,yxq,3ed\">Ipod Guards/Covers/Cases</a> <a class=\"link\" href=\"/ipod-chargers/pr?sid=ckf,yxq,mu5\">Ipod Chargers</a> <a class=\"link\" href=\"/bluetooth-music-receivers/pr?sid=ckf,yxq,hzm\">Bluetooth Music Receivers</a> <a class=\"link\" href=\"/audio-players/pr?sid=ckf,ore\">Audio Players</a> <a class=\"link\" href=\"/audio-player-accessories/pr?sid=ckf,ore,713\">Audio Player Accessories</a> <a class=\"link\" href=\"/home-audio/pr?sid=ckf,ore,rlj\">Home Audio</a> <a class=\"link\" href=\"/ipods/pr?sid=ckf,ore,rrr\">iPods</a> <a class=\"link\" href=\"/mp3-players/pr?sid=ckf,ore,h2k\">MP3 Players</a> <a class=\"link\" href=\"/mp4-video-mp3-players/pr?sid=ckf,ore,lhy\">MP4 / Video MP3 Players</a> <a class=\"link\" href=\"/home-audio/pr?sid=ckf,rlj\">Home Audio</a> <a class=\"link\" href=\"/speakers/pr?sid=ckf,rlj,8sb\">Speakers</a> <a class=\"link\" href=\"/turntables/pr?sid=ckf,rlj,n3g\">Turntables</a> <a class=\"link\" href=\"/hifi-systems/pr?sid=ckf,rlj,gsy\">Hi-Fi Systems</a> <a class=\"link\" href=\"/boom-box/pr?sid=ckf,rlj,xtj\">Boom Box</a> <a class=\"link\" href=\"/fm-radio/pr?sid=ckf,rlj,idz\">FM Radio</a> <a class=\"link\" href=\"/karaoke-players/pr?sid=ckf,rlj,rm8\">Karaoke Players</a> <a class=\"link\" href=\"/satellite-radio/pr?sid=ckf,rlj,23r\">Satellite Radio</a> <a class=\"link\" href=\"/sound-mixer/pr?sid=ckf,rlj,d7r\">Sound Mixer</a> <a class=\"link\" href=\"/amplifiers-av-receivers/pr?sid=ckf,rlj,dkd\">Amplifiers & AV Receivers</a> <a class=\"link\" href=\"/dj-controllers/pr?sid=ckf,rlj,x3t\">DJ Controllers</a> <a class=\"link\" href=\"/voice-recorders/pr?sid=ckf,rlj,hnp\">Voice Recorders</a> <a class=\"link\" href=\"/soundbars/pr?sid=ckf,rlj,rwr\">Soundbars</a> <a class=\"link\" href=\"/dth/pr?sid=ckf,9wn\">DTH</a> <a class=\"link\" href=\"/televisions/pr?sid=ckf,czl\">Televisions</a>\n    </main>\n    <footer>\n        <div id=\"footer-inner-container\">\n            <div><img id=\"logo-footer\" src=\"./images/flipkart_logo.png\" alt=\"flipkart_seller_hub_logo\"></div>\n            <div><p>&copy; 2023 Flipkart. All Rights Reserved</p></div>\n            <div id=\"tnc-container\">\n                <div>\n                    <a href=\"sell_online.html\">Privacy Policy</a>\n                </div>\n                <div id=\"bullet-point\"></div>\n                <div>\n                    <a href=\"sell_online.html\">Terms Of Use</a>\n                </div>\n            </div>\n        </div>\n    </footer>\n</body>\n</html>"
  },
  {
    "path": "pages/Sitemap/style.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n    position: fixed;\n    top: 0rem;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n\n#footer-inner-container\n{\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    color: rgb(113, 113, 113);\n    font-size: 13px;\n    font-family: sans-serif;\n    padding: 1em 3em;\n    background-color: white;\n    height: 4rem;\n}\n#tnc-container\n{\n    display: flex;\n    justify-content: center;\n    align-items: center;\n}\n#tnc-container > div\n{\n    margin-right: 0.5em;\n}\n#tnc-container > div a\n{\n    text-decoration: none;\n    color: rgb(113, 113, 113);\n}\n#bullet-point\n{\n    height: 4px;\n    width: 4px;\n    background-color: rgb(113, 113, 113);\n    border-radius: 50%;\n}\n\n#logo-footer\n{\n    height: 3.125rem;\n}\n\nmain\n{\n    display: flex;\n    flex-direction: column;\n    justify-content: space-between;\n    padding: 2rem 5%;\n    margin-top: 4rem;\n}\n\nmain > div > a::after\n{\n    content: \" | \";\n}\n\nmain > div > a:last-of-type::after\n{\n    content: \"\";\n}\n\na:visited, a:link\n{\n    text-decoration: none;\n    color: black;\n}\na:hover, a:active\n{\n    color: #2455f4;\n    text-decoration: underline;\n}\n\nh2\n{\n    margin: 2rem 0rem;\n}\n\n@media screen and (max-width : 890px) {\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "pages/cancellation & return/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Security Page - Flipkart Clone</title>\n\n    <link rel=\"stylesheet\" href=\"styles.css\">\n\n</head>\n\n<body>\n\n    <header>\n        <h1>Order Cancellation and Return Policy</h1>\n    </header>\n\n    <main>\n\n        <h2>Cancellation Policy</h2>\n\n        <p>The customer can choose to cancel an order any time before it's dispatched. The order cannot be canceled once it’s out\n        for delivery. However, the customer may choose to reject it at the doorstep.</p>\n\n        <p>The time window for cancellation varies based on different categories and the order cannot be canceled once the\n        specified time has passed.</p>\n\n        <p>In some cases, the customer may not be allowed to cancel the order for free, post the specified time and a cancellation\n        fee will be charged. The details about the time window mentioned on the product page or order confirmation page will be\n        considered final.</p>\n\n        <p>In case of any cancellation from the seller due to unforeseen circumstances, a full refund will be initiated for prepaid\n        orders.</p>\n\n        <p>Flipkart reserves the right to accept the cancellation of any order. Flipkart also reserves the right to waive off or\n        modify the time window or cancellation fee from time to time.</p>\n\n        <br>\n\n        <h2>Returns Policy</h2>\n\n        <p>Returns is a scheme provided by respective sellers directly under this policy in terms of which the option of exchange,\n        replacement and/ or refund is offered by the respective sellers to you. All products listed under a particular category\n        may not have the same returns policy. For all products, the returns/replacement policy provided on the product page\n        shall prevail over the general returns policy.</p>\n\n        <br>\n\n        <p>For any products for which a refund is to be given, the refund will be processed once the returned product has been\n        received by the seller.</p>\n        \n        <br>\n\n        <h4>General Rules for a successful Return:</h4>\n\n        <ul>\n            <li>In certain cases where the seller is unable to process a replacement for any reason whatsoever, a refund will be given.</li>\n\n            <li>In cases where a product accessory is found missing/damaged/defective, the seller may either process a replacement of\n            the particular accessory or issue an eGV for an amount equivalent to the price of the accessory, at the seller’s\n            discretion.</li>\n\n            <li>During open box deliveries, while accepting your order, if you received a different or a damaged product, you will be\n            given a refund (on the spot refunds for cash-on-delivery orders). Once you have accepted an open box delivery, no return\n            request will be processed, except for manufacturing defects. In such cases, these category-specific replacement/return\n            general conditions will be applicable. Click here to know more about Open Box Delivery</li>\n\n            <li>For products where installation is provided by Flipkart's service partners, do not open the product packaging by\n            yourself. Flipkart authorised personnel shall help in unboxing and installation of the product.</li>\n\n            <li>For Furniture, any product-related issues will be checked by authorised service personnel (free of cost) and attempted\n            to be resolved by replacing the faulty/ defective part of the product. Full replacement will be provided only in cases\n            where the service personnel opines that replacing the faulty/defective part will not resolve the issue.'</li>\n\n        </ul>\n\n        <br>\n        \n        <p>Flipkart holds the right to restrict the number of returns created per order unit, post the evaluation of the\n            product/order defect is undertaken by Flipkart’s authorized representative.</p>\n\n        <br>\n\n    </main>\n\n    <footer>\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\n    </footer>\n\n</body>\n\n</html>"
  },
  {
    "path": "pages/cancellation & return/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nh2{\n    text-align: center;\n}\n\nmain {\n    max-width: 800px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n}\n\nfooter {\n    text-align: center;\n    padding: 10px;\n    color: white;\n    background-color: #2874f0;\n}"
  },
  {
    "path": "pages/contact_us/contact_us.css",
    "content": "/* Google Font CDN Link */\n@import url(\"https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap\");\n* {\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n  font-family: \"Poppins\", sans-serif;\n}\n\n#navbar-container {\n  position: fixed;\n  width: 100%;\n  height: 200px;\n  top: 0px;\n\n}\nbody {\n  min-height: 100vh;\n  width: 100%;\n  background: #c8e8e9;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n}\n.container {\n  max-width: 1100px;\n  margin-top: 10%;\n  width: 100%;\n  background: #fff;\n  border-radius: 6px;\n  padding: 20px 60px 30px 40px;\n  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.container .content {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n.container .content .left-side {\n  width: 25%;\n  height: 100%;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  margin-top: 15px;\n  position: relative;\n}\n.content .left-side::before {\n  content: \"\";\n  position: absolute;\n  height: 70%;\n  width: 2px;\n  right: -15px;\n  top: 50%;\n  transform: translateY(-50%);\n  background: #afafb6;\n}\n.content .left-side .details {\n  margin: 14px;\n  text-align: center;\n}\n.content .left-side .details i {\n  font-size: 30px;\n  color: #3e2093;\n  margin-bottom: 10px;\n}\n.content .left-side .details .topic {\n  font-size: 18px;\n  font-weight: 500;\n}\n.content .left-side .details .text-one,\n.content .left-side .details .text-two {\n  font-size: 14px;\n  color: #afafb6;\n}\n\n.container .content .right-side {\n  width: 75%;\n  margin-left: 75px;\n}\n.content .right-side .topic-text {\n  font-size: 23px;\n  font-weight: 600;\n  color: #3e2093;\n}\n.right-side .input-box {\n  height: 55px;\n  width: 100%;\n  margin: 12px 0;\n}\n.right-side .input-box input,\n.right-side .input-box textarea {\n  height: 100%;\n  width: 100%;\n  border: none;\n  outline: none;\n  font-size: 16px;\n  background: #f0f1f8;\n  border-radius: 6px;\n  padding: 0 15px;\n  resize: none;\n}\n.right-side .message-box {\n  min-height: 110px;\n}\n.right-side .input-box textarea {\n  padding-top: 6px;\n}\n.right-side .button {\n  display: inline-block;\n  margin-top: 12px;\n}\n.right-side .button input[type=\"button\"] {\n  color: #fff;\n  font-size: 18px;\n  outline: none;\n  border: none;\n  padding: 8px 16px;\n  border-radius: 6px;\n  background: #3e2093;\n  cursor: pointer;\n  transition: all 0.3s ease;\n}\n.button input[type=\"button\"]:hover {\n  background: #5029bc;\n}\n\n@media (max-width: 950px) {\n  .container {\n    width: 90%;\n    padding: 30px 40px 40px 35px;\n  }\n  .container .content .right-side {\n    width: 75%;\n    margin-left: 55px;\n  }\n}\n@media (max-width: 820px) {\n  .container {\n    margin: 40px 0;\n    height: 100%;\n  }\n  .container .content {\n    flex-direction: column-reverse;\n  }\n  .container .content .left-side {\n    width: 100%;\n    flex-direction: row;\n    margin-top: 40px;\n    justify-content: center;\n    flex-wrap: wrap;\n  }\n  .container .content .left-side::before {\n    display: none;\n  }\n  .container .content .right-side {\n    width: 100%;\n    margin-left: 0;\n  }\n}\n\n/* /// */\n"
  },
  {
    "path": "pages/contact_us/contact_us.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\" dir=\"ltr\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <title>Responsive Contact Us Form | CodingLab</title>\n    <link rel=\"stylesheet\" href=\"contact_us.css\" />\n    <!-- Fontawesome CDN Link -->\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n  </head>\n  <body>\n    <div id=\"navbar-container\">\n\n\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Improved Navbar</title>\n  <!-- <link rel=\"stylesheet\" href=\"Navbar.css\"> -->\n  <link href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\" rel=\"stylesheet\">\n  <style>\n    body {\n      font-family: Arial, sans-serif;\n    }\n\n    .navbar {\n      background-color: #333;\n      height: 60px;\n    }\n\n    .navbar-nav{\n      padding-right: 100px;\n\n    }\n\n    .navbar-brand img {\n      height: 40px;\n    }\n\n    .navbar-toggler {\n      border: none;\n      position: absolute;\n    }\n\n    .navbar-nav .nav-link {\n      color: black;\n      /* padding: 10px 15px; */\n      font-size: 16px;\n      text-transform: uppercase;\n      position: relative;\n      transition: background-color 0.5s;\n    }\n    .navbar-nav .nav-link:hover {\n      display: block;\n      background-color: white;\n      width:7.47rem;\n      height: 4.8rem;\n      align-content: center;\n      text-align: center;\n      border-radius: 10px;\n    }\n\n    .navbar-nav .nav-link img {\n      height: 20px;\n      margin-right: 5px;\n    }\n\n    .navbar-nav .dropdown-menu {\n      background-color: #333;\n      border: none;\n    }\n\n    .navbar-nav .dropdown-menu .dropdown-item {\n      color: white;\n    }\n\n    .navbar-nav .dropdown-menu .dropdown-item:hover {\n      background-color: #007bff;\n      color: white;\n    }\n\n    #searchbar {\n      display: flex;\n      align-items: center;\n    }\n\n    #input_data {\n      width: 300px;\n      padding: 6px 12px;\n      border: 1px solid #ccc;\n      border-radius: 4px;\n    }\n\n    .categories-bar {\n      background-color: #f8f9fa;\n      display: flex;\n      justify-content: center;\n      padding: 10px 0;\n    }\n\n    .categories-bar ul {\n      display: flex;\n      list-style: none;\n      padding: 0;\n      margin: 0;\n    }\n\n    .categories-bar li {\n      margin: 0 15px;\n    }\n\n    .categories-bar a {\n      color: #333;\n      text-decoration: none;\n      font-size: 16px;\n      text-transform: uppercase;\n    }\n\n    .categories-bar a:hover {\n      color: #007bff;\n      text-decoration: none;\n    }\n\n    .navbar-nav .nav-item:hover .nav-link {\n      color: black;\n    }\n    \n    /* Adjustments */\n    .navbar-nav .nav-link {\n      margin-left: 10px; /* Adjust the margin as needed */\n    }\n    /* .navbar-nav{\n      background-color: #333;\n      position: relative;\n      bottom: 2px;\n      right:14px;\n    } */\n    .navbar-collapse{\n      background-color: #333;\n      position: relative;\n      bottom: 2px;\n      right: 14px;\n    }\n    /* @media screen and (max-width:1000px){\n\n    } */\n    #progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n  </style>\n\n\n<div id=\"navbar-container\">\n  \n\n<div id=\"progress-container\">\n  <div id=\"progress-bar\"></div>\n</div>\n\n<script>\n      \n  window.addEventListener('scroll', function() {\n      const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n      const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n      const scrolled = (winScroll / height) * 100;\n      document.getElementById('progress-bar').style.width = scrolled + '%';\n  });\n  </script>\n\n\n  <nav class=\"navbar navbar-expand-lg navbar-dark\">\n    <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n      <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\" alt=\"Flipkart\">\n    </a>\n    <button class=\"navbar-toggler\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarNav\" aria-controls=\"navbarNav\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n      <span class=\"navbar-toggler-icon\"></span>\n    </button>\n    <div class=\"collapse navbar-collapse\" id=\"navbarNav\">\n      <ul class=\"navbar-nav mr-auto\">\n        <li class=\"nav-item\">\n          <div class=\"navtab\" id=\"searchbar\">\n            <input id=\"input_data\" type=\"text\" placeholder=\"Search for Products, Brands and More\">\n            <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n              <title>Search Icon</title>\n              <path d=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n              <path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path>\n            </svg>\n          </div>\n        </li>\n      </ul>\n      <ul class=\"navbar-nav\">\n        <li class=\"nav-item dropdown\">\n          <a class=\"nav-link\" href=\"#\" id=\"navbarDropdown\" role=\"button\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n            <i class=\"fa-regular fa-user\" aria-hidden=\"true\"></i>   Profile\n          </a>\n          <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\">\n            <a class=\"dropdown-item\" href=\"profile.html\">\n              <img width=\"28\" height=\"28\" src=\"./assets/images/profile.jpg\" alt=\"Profile\"> My Profile</a>\n            <a class=\"dropdown-item\" href=\"signup.html\">SignUp</a>\n            <a class=\"dropdown-item\" href=\"signin.html\">SignIn</a>\n            <a class=\"dropdown-item\" href=\"FPZ.html\">\n              <img width=\"27\" height=\"18\" src=\"./assets/images/plus.png\" alt=\"imgplus\">Flipkart Plus Zone</a>\n            <a class=\"dropdown-item\" href=\"order.html\">\n              <img width=\"24\" height=\"22\" src=\"./assets/images/box.png\" alt=\"imgplus\"> Orders</a>\n            <a class=\"dropdown-item\" href=\"#\">\n              <img width=\"20\" height=\"18\" src=\"./assets/images/wishlist.png\" alt=\"imgwish\"> Wishlist</a>\n            <a class=\"dropdown-item\" href=\"#\">\n              <img width=\"22\" height=\"18\" src=\"./assets/images/rewards.png\" alt=\"imgplus\"> Rewards</a>\n            <a class=\"dropdown-item\" href=\"#\">\n              <img width=\"24\" height=\"18\" src=\"./assets/images/gift-card.png\" alt=\"imgplus\"> Gift Cards</a>\n            <a class=\"dropdown-item\" href=\"FPZ.html\">Flipkart Plus Zone</a>\n            <a class=\"dropdown-item\" href=\"order.html\">Orders</a>\n            <a class=\"dropdown-item\" href=\"wishlist.html\">Wishlist</a>\n            <a class=\"dropdown-item\" href=\"#\">Rewards</a>\n            <a class=\"dropdown-item\" href=\"./Gift Card/GiftCard.html\">Gift Cards</a>\n          </div>\n        </li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"pages/Sell_Online/sell_online.html\">\n            <i class=\"fa-solid fa-store\" aria-hidden=\"true\"></i>\n            Become a Seller\n          </a>\n        </li>\n        <li class=\"nav-item\">\n          <a class=\"nav-link\" href=\"./cart/cart.html\">\n            <i class=\"fa-solid fa-cart-shopping\" aria-hidden=\"true\"></i>\n            Cart\n          </a>\n        </li>\n        <li class=\"nav-item dropdown\">\n          <a class=\"nav-link\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n            <i class=\"fa-solid fa-ellipsis-vertical\" aria-hidden=\"true\"></i>\n          </a>\n          <div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\n            <a class=\"dropdown-item\" href=\"/communication-preferences/push?t=all\">Notification Preferences</a>\n            <a class=\"dropdown-item\" href=\"/helpcentre\">24x7 Customer Care</a>\n            <a class=\"dropdown-item\" href=\"https://advertising.flipkart.com/?otracker=ch_vn_advertise_header\">Advertise</a>\n            <a class=\"dropdown-item\" href=\"/mobile-apps?otracker=ch_vn_mobile_apps\">Download App</a>\n          </div>\n        </li>\n      </ul>\n    </div>\n  </nav>\n\n  <!-- Bootstrap JS -->\n  <script src=\"https://code.jquery.com/jquery-3.5.1.slim.min.js\"></script>\n  <script src=\"https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js\"></script>\n  <script src=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js\"></script>\n  <!-- <script>\n    const bg=document.querySelector('.show');\n    \n  </script> -->\n</div>\n\n<!-- </div> -->\n    <div class=\"container\">\n      <div class=\"content\">\n        <div class=\"left-side\">\n          <div class=\"address details\">\n            <i class=\"fas fa-map-marker-alt\"></i>\n            <div class=\"topic\">Address</div>\n            <div class=\"text-one\">India, NP12</div>\n            <div class=\"text-two\">India 06</div>\n          </div>\n          <div class=\"phone details\">\n            <i class=\"fas fa-phone-alt\"></i>\n            <div class=\"topic\">Phone</div>\n            <div class=\"text-one\">+0099 9999 9999</div>\n            <div class=\"text-two\">+0099 9999 9999</div>\n          </div>\n          <div class=\"email details\">\n            <i class=\"fas fa-envelope\"></i>\n            <div class=\"topic\">Email</div>\n            <div class=\"text-one\">xxxxxxxxxxxx@ gmail.com</div>\n            <div class=\"text-two\">yyyyyyyyyyyyy@ gmail.com</div>\n          </div>\n        </div>\n        <div class=\"right-side\">\n          <div class=\"topic-text\">Send us a message</div>\n          <p>If you have any work from me or any types of quries related to my tutorial, you can send me message from here. It's my pleasure to help you.</p>\n          <form action=\"#\">\n            <div class=\"input-box\">\n              <input type=\"text\" placeholder=\"Enter your name\" />\n            </div>\n            <div class=\"input-box\">\n              <input type=\"text\" placeholder=\"Enter your email\" />\n            </div>\n            <div class=\"input-box message-box\">\n              <textarea placeholder=\"Enter your message\"></textarea>\n            </div>\n            <div class=\"button\">\n              <input type=\"button\" id=\"submit\" value=\"Send Now\"/>\n            </div>\n          </form>\n        </div>\n      </div>\n    </div>\n    <script>\n      // Get reference to the button\n      const submit = document.getElementById('submit');\n\n      // Add click event listener to the button\n      submit.addEventListener('click', () => {\n          // Navigate to the home page\n          window.location.href = '../../index.html'; // Replace 'home.html' with the actual URL of your home page\n      });\n  </script>\n  </body>\n</html>\n"
  },
  {
    "path": "pages/content-page.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n\t<meta charset=\"UTF-8\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css\" />\n\t<title>Contents</title>\n</head>\n\n<body>\n\t<style>\n\t\t#content {\n\t\t\tbackground: #ede9e9;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\talign-items: center;\n\t\t\tpadding: 20px;\n\t\t}\n\n\t\ta {\n\t\t\ttext-decoration: none;\n\t\t\tcolor: black;\n\t\t}\n\n\t\ta:hover {\n\t\t\tcolor: #2888f5;\n\t\t}\n\n\t\t.box {\n\t\t\tmargin: 10px;\n\t\t\tmax-width: 100%;\n\t\t\tbackground: white;\n\t\t\tpadding: 20px;\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t\tjustify-content: center;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t.img-container {\n\t\t\tposition: relative;\n\t\t\tmargin: 10px;\n\t\t\twidth: 200px;\n\t\t\tborder-radius: 5px;\n\t\t\tborder: 1px solid rgb(161, 157, 157);\n\t\t\toverflow: hidden;\n\t\t\ttransition: transform 0.2s ease;\n\t\t}\n\n\t\t.img-container:hover {\n\t\t\ttransform: scale(1.1);\n\t\t}\n\n\t\t.box h3 {\n\t\t\tfont-family: sans-serif;\n\t\t\tfont-size: 20px;\n\t\t\tpadding: 10px;\n\t\t\tdisplay: block;\n\t\t\twidth: 100%;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t.box p,\n\t\t.box h4 {\n\t\t\tmargin: 5px;\n\t\t\ttext-align: center;\n\t\t\tfont-size: 17px;\n\t\t}\n\n\t\t.box img {\n\t\t\twidth: 100%;\n\t\t\theight: auto;\n\t\t}\n\n\t\t.btn1 {\n\t\t\tposition: absolute;\n\n\t\t\tleft: 45%;\n\t\t\tpadding: 10px;\n\t\t\tfont-size: 20px;\n\t\t\tfont-weight: bold;\n\t\t\tbackground: white;\n\t\t\tborder: 1px solid gray;\n\t\t\tcolor: #111;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 3px;\n\t\t}\n\n\t\t.icon {\n\t\t\twidth: 100px;\n\t\t\theight: 100px;\n\t\t\tdisplay: block;\n\t\t\tmargin: 0 auto;\n\t\t}\n\n\t\t.heading {\n\t\t\tfont-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;\n\t\t\tfont-size: 30px;\n\t\t\tfont-weight: bold;\n\t\t\tpadding: 10px;\n\t\t\ttext-align: center;\n\t\t\tcolor: black;\n\t\t}\n\n\t\t.heading2 {\n\t\t\tfont-family: monospace;\n\t\t\tfont-size: 20px;\n\t\t\tfont-weight: 200;\n\t\t\tcolor: gray;\n\t\t\ttext-align: center;\n\t\t}\n\n\t\t@media (max-width: 768px) {\n\t\t\t.img-container {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t\t#progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n\n\n\t</style>\n\t<div id=\"content\">\n\t\t<!-- section 1 -->\n\t\t \n<div id=\"progress-container\">\n\t<div id=\"progress-bar\"></div>\n  </div>\n\n  <script>\n\t\t\n\twindow.addEventListener('scroll', function() {\n\t\tconst winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n\t\tconst height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n\t\tconst scrolled = (winScroll / height) * 100;\n\t\tdocument.getElementById('progress-bar').style.width = scrolled + '%';\n\t});\n\t</script>\n  \n\t\t<section class=\"box\">\n\t\t\t<h3>Deals on Mobile Phones</h3>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/vivo-mobile-phone-1000x1000.webp\" alt=\"\" class=\"about-img\">\n\t\t\t\t\t<p>Vivo T3X 5G\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>14,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/vivo-y16-mobile-phone-250x250.webp\" alt=\"\" class=\"about-img\">\n\t\t\t\t\t<p>Vivo Y16 5G\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>17,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/vivo-y17s-forest-green-4gb-ram-128gb-storage-250x250.webp\" alt=\"\"\n\t\t\t\t\t\tclass=\"about-img\">\n\t\t\t\t\t<p>Vivo Y17 pro\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>20,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/one.png\" alt=\"\" class=\"about-img\">\n\t\t\t\t\t<p>OneplusNord N20 5G\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>29,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/y35-250x250.webp\" alt=\"\" class=\"about-img\">\n\t\t\t\t\t<p>Vivo Y35 5G\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>22,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t</section>\n\n\t\t<!-- section 2 -->\n\t\t<section class=\"box\">\n\t\t\t<h3>Best of Electronics</h3>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/z-24-200mm-z5-nikon-original-imag2zuekuxgxsgg.webp\" alt=\"camera\"\n\t\t\t\t\t\tclass=\"about-img\">\n\t\t\t\t\t<p>Mirrorless Cameras\n\t\t\t\t\t<h4>Shop Now!</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/earphon3.jpg\" alt=\"earphones\" class=\"about-img\">\n\t\t\t\t\t<p>Best wireless Ear...\n\t\t\t\t\t<h4>Grab Now</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/Picture.png\" alt=\"shaver\" class=\"about-img\">\n\t\t\t\t\t<p>Best of Shavers\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>1,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/earphone2.jpg\" alt=\"Headsets\" class=\"about-img\">\n\t\t\t\t\t<p>Headsets\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>3,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/projector.png\" alt=\"projector\" class=\"about-img\">\n\t\t\t\t\t<p>Projector\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\"></i>9,500*</h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\n\t\t</section>\n\n\t\t<!-- section 3 -->\n\n\t\t<section class=\"box\">\n\t\t\t<h3>Dresses</h3>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/cloth1.webp\" alt=\"cloth\" class=\"about-img\">\n\t\t\t\t\t<p><span>Tokiyo Talkies</span><br>Women Bodycon Bl..\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\">379</i></h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/cloth2.webp\" alt=\"cloth\" class=\"about-img\">\n\t\t\t\t\t<p><span>Tokiyo Talkies</span><br>Women A-line Multi...\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\">600</i></h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/cloth3.webp\" alt=\"cloth\" class=\"about-img\">\n\t\t\t\t\t<p><span>Tokiyo Talkies</span><br>Women Ribbed Pink...\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\">599</i></h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t<a href=\"#\">\n\t\t\t\t<div class=\"img-container\">\n\t\t\t\t\t<img src=\"../img/cloth4.webp\" alt=\"cloth\" class=\"about-img\">\n\t\t\t\t\t<p><span>Tokiyo Talkies</span><br>Women Ribbed Pink...\n\t\t\t\t\t<h4>From <i class=\"fa-solid fa-indian-rupee-sign\">299</i></h4>\n\t\t\t\t\t</p>\n\t\t\t\t</div>\n\t\t\t</a>\n\t\t\t\n\t\t\t<div class=\"box_one\">\n\t\t\t\t<img src=\"../img/Oppo_Reno_10_5g.jpg\" alt=\"icon\" class=\"icon\">\n\t\t\t\t<h3 class=\"heading\">Top selling Smartphones</h3>\n\t\t\t\t<p class=\"heading2\">Latest Technology , Best Brands!</p><br>\n\t\t\t\t<button class=\"btn1\">Explore <i class=\"fa-solid fa-chevron-right\"></i></button>\n\t\t\t</div>\n\t\t</section>\n\t</div>\n</body>\n\n</html>"
  },
  {
    "path": "pages/help center/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Help Centre</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n</head>\n<body>\n    \n    <header>\n        <h1>Flipkart Help Center | 24x7 Customer Care Supporty</h1>\n    </header>\n\n    <main>\n\n    <section>\n        The Flipkart Help Centre page lists out various types of issues that you may have encountered so that there can be quick\n        resolution and you can go back to shopping online. For example, you can get more information regarding order tracking,\n        delivery date changes, help with returns (and refunds), and much more. The Flipkart Help Centre also lists out more\n        information that you may need regarding Flipkart Plus, payment, shopping, and more. The page has various filters listed\n        out on the left-hand side so that you can get your queries solved quickly, efficiently, and without a hassle. You can\n        get the Flipkart Help Centre number or even access Flipkart Help Centre support if you need professional help regarding\n        various topics. The support executive will ensure speedy assistance so that your shopping experience is positive and\n        enjoyable. You can even inform your loved ones of the support page so that they can properly get their grievances\n        addressed as well. Once you have all your queries addressed, you can pull out your shopping list and shop for all your\n        essentials in one place. You can shop during festive sales to get your hands on some unbelievable deals online. This\n        information is updated on 08-Aug-24\n    </section>\n\n    <section>\n        <h4>Flipkart Help Centre: Get All Shopping Solutions Here</h4>\n        <p>Once you place your order on any online shopping store, the next obvious thing to do is wait for your product to arrive.\n        This wait can be quite anxiety-ridden if you do not get updates about your order or do not receive support post-delivery\n        of your order. However, with the Flipkart Help Centre, your wait becomes exciting, and your shopping experience becomes\n        joyful, thanks to all the support it provides related to your order. With websites, like Flipkart, the entire shopping\n        experience has gone through a major change. Now, you can conveniently shop any time, from anywhere, and anything that\n        you want. These websites are one-stop destinations for all your needs and requirements. From skincare products to home\n        appliances and groceries to baby care essentials, everything is just a few clicks away. These websites provide you\n        convenience, at the same time, a bitter experience can make online shopping a nightmare for many. To ensure that your\n        shopping experience is delightful, the Flipkart Help centre support offers every assistance that you need. From\n        reporting specific delivered product-related issues to letting you manage your orders, the Flipkart Helpcentre has\n        solutions to all your worries related to your orders. Furthermore, if you do not find a solution to your queries here,\n        then you can use the Flipkart Help Centre number to get your issues solved. Keep reading to know more about Flipkart\n        Help Centre and what all assistance you get here:</p>\n\n\n        <h4>24x7 Customer Care Support</h4>\n        <p>You can 24x7 Customer Care Support on the Flipkart Help Centre. Any query or issue that you may possibly have while\n        shopping on Flipkart is taken care here. This page is easy to navigate, and you can get support almost immediately. Once\n        you log onto your Flipkart account, this page shows you your recent orders and let you report any issue. By clicking on\n        the specific order, you can raise your query. It also has a chat option to ensure that your queries and issues are taken\n        care of. Similarly, there are other options on this page that are created to assist you and to make your shopping\n        experience hassle-free. You can get support any time and get a satisfactory solution to your queries and issues within\n        minutes.</p>\n\n        <h4>Types and Topics of Support in Flipkart Help Centre</h4>\n        <p>Apart from helping you with your orders and/or your delivered product-related issues, you can find various other support\n        at Flipkart Help Centre. You can select from three types of issues here - help with your issues, help with your order,\n        and help with other issues. You can track your orders here, manage your orders, get help with your returns and refunds\n        issues, and even get help related to various other issues, such as offers, payment, Flipkart Plus, etc. There are also\n        details about specific help topics, such as cancellations and returns, wallet, insurance, Flipkart Quick, SuperCoins,\n        Gift Card, etc. available here. So, log on to your Flipkart account and shop without hassles and with complete help and\n        support.</p>\n\n        <p>The Flipkart Help Centre is available on the Flipkart site to help every Flipkart customer with any grievance that they\n        may have. You can find solutions regarding the tracking of your order. It will also help edit your delivery date or\n        address and more. All your issues will be addressed at any time of the day or night (24/7 service). This way, you can\n        immediately get your grievances addressed. You can also get help regarding returns and refunds and many other issues\n        through the Flipkart Help Centre. In case you're not satisfied with the solution given, you can seek further assistance.\n        You can get in touch with a support assistant via the Flipkart Help Centre number. The next time you have any issue with\n        your order or if you want more clarity regarding payment options, Flipkart Plus, account-related queries, and more, you\n        can access Flipkart Help Centre support for further information. This way, you can shop without worry and have a\n        satisfying shopping experience. The support centre will do all that it can to address your grievance until you’re\n        completely satisfied. So, no matter the nature of your grievance, you must get in touch with the support forum. This\n        way, you won’t have to compromise in any way.</p>\n\n    </section>\n\n    <br>\n\n    </main>\n\n\n    <footer>\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\n    </footer>\n</body>\n</html>"
  },
  {
    "path": "pages/help center/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nmain {\n    max-width: 1400px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\nsection {\n    margin-bottom: 2rem;\n}\n\nh2 {\n    color: #2874f0;\n}\n\nh3 {\n    color: #2b2b2b;\n    margin-bottom: 0.5rem;\n}\n\nul {\n    list-style-type: disc;\n    margin: 0;\n    padding-left: 1.5rem;\n}\n\nfooter {\n    text-align: center;\n    padding: 1rem 0;\n    background-color: #2874f0;\n    color: white;\n    position: fixed;\n    width: 100%;\n    height: 1.5rem;\n    bottom: 0cqmax;\n}\n\na {\n    color: #2874f0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}"
  },
  {
    "path": "pages/privacypolicy/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Privacy Policy - Flipkart Clone</title>\r\n    <link rel=\"stylesheet\" href=\"styles.css\">\r\n    <style>\r\n         #progress-container {\r\n    position: fixed ;\r\n    top: 0px;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 15px;\r\n    z-index: 99990;\r\n    /* background: #f3f3f3; */\r\n}\r\n\r\n#progress-bar {\r\n    height: 53%;\r\n    width: 0;\r\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\r\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\r\n    transition: width 0.09s ease-in-out;\r\n    border-radius: 10px;\r\n}\r\n\r\n    </style>\r\n</head>\r\n<body>\r\n    \r\n\r\n<div id=\"progress-container\">\r\n    <div id=\"progress-bar\"></div>\r\n  </div>\r\n\r\n  <script>\r\n        \r\n    window.addEventListener('scroll', function() {\r\n        const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\r\n        const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n        const scrolled = (winScroll / height) * 100;\r\n        document.getElementById('progress-bar').style.width = scrolled + '%';\r\n    });\r\n    </script>\r\n    <header>\r\n        <h1>Privacy Policy</h1>\r\n    </header>\r\n    <main>\r\n        <section>\r\n            <h2>Introduction</h2>\r\n            <p>Welcome to Flipkart Clone. We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about our policy, or our practices with regards to your personal information, please contact us at support@flipkartclone.com.</p>\r\n            <p>When you visit our website <a href=\"#\">flipkartclone.com</a>, and use our services, you trust us with your personal information. We take your privacy very seriously. In this privacy notice, we describe our privacy policy. We seek to explain to you in the clearest way possible what information we collect, how we use it, and what rights you have in relation to it. We hope you take some time to read through it carefully, as it is important. If there are any terms in this privacy policy that you do not agree with, please discontinue use of our Sites and our services.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Information We Collect</h2>\r\n            <h3>Personal Information</h3>\r\n            <p>We collect personal information that you voluntarily provide to us when you register on the Sites, express an interest in obtaining information about us or our products and services, when you participate in activities on the Sites (such as posting messages in our online forums or entering competitions, contests or giveaways) or otherwise contacting us.</p>\r\n            <ul>\r\n                <li>Name and Contact Data. We collect your first and last name, email address, postal address, phone number, and other similar contact data.</li>\r\n                <li>Credentials. We collect passwords, password hints, and similar security information used for authentication and account access.</li>\r\n                <li>Payment Data. We collect data necessary to process your payment if you make purchases, such as your payment instrument number (such as a credit card number), and the security code associated with your payment instrument.</li>\r\n            </ul>\r\n            <h3>Information Automatically Collected</h3>\r\n            <p>We automatically collect certain information when you visit, use, or navigate the Sites. This information does not reveal your specific identity (like your name or contact information) but may include device and usage information, such as your IP address, browser and device characteristics, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Sites, and other technical information. This information is primarily needed to maintain the security and operation of our Sites, and for our internal analytics and reporting purposes.</p>\r\n        </section>\r\n        <section>\r\n            <h2>How We Use Your Information</h2>\r\n            <p>We use personal information collected via our Sites for a variety of business purposes described below. We process your personal information for these purposes in reliance on our legitimate business interests, in order to enter into or perform a contract with you, with your consent, and/or for compliance with our legal obligations. We indicate the specific processing grounds we rely on next to each purpose listed below:</p>\r\n            <ul>\r\n                <li><strong>To facilitate account creation and logon process.</strong> If you choose to link your account with us to a third-party account (such as your Google or Facebook account), we use the information you allowed us to collect from those third parties to facilitate account creation and logon process for the performance of the contract.</li>\r\n                <li><strong>To send administrative information to you.</strong> We may use your personal information to send you product, service, and new feature information and/or information about changes to our terms, conditions, and policies.</li>\r\n                <li><strong>To protect our Services.</strong> We may use your information as part of our efforts to keep our Sites safe and secure (for example, for fraud monitoring and prevention).</li>\r\n                <li><strong>To enforce our terms, conditions and policies for business purposes, to comply with legal and regulatory requirements or in connection with our contract.</strong></li>\r\n                <li><strong>To respond to legal requests and prevent harm.</strong> If we receive a subpoena or other legal request, we may need to inspect the data we hold to determine how to respond.</li>\r\n                <li><strong>To send you marketing and promotional communications.</strong> We and/or our third-party marketing partners may use the personal information you send to us for our marketing purposes, if this is in accordance with your marketing preferences. You can opt-out of our marketing emails at any time.</li>\r\n            </ul>\r\n        </section>\r\n        <section>\r\n            <h2>How We Share Your Information</h2>\r\n            <p>We may process or share data based on the following legal basis:</p>\r\n            <ul>\r\n                <li><strong>Consent:</strong> We may process your data if you have given us specific consent to use your personal information in a specific purpose.</li>\r\n                <li><strong>Legitimate Interests:</strong> We may process your data when it is reasonably necessary to achieve our legitimate business interests.</li>\r\n                <li><strong>Performance of a Contract:</strong> Where we have entered into a contract with you, we may process your personal information to fulfill the terms of our contract.</li>\r\n                <li><strong>Legal Obligations:</strong> We may disclose your information where we are legally required to do so in order to comply with applicable law, governmental requests, a judicial proceeding, court order, or legal process, such as in response to a court order or a subpoena (including in response to public authorities to meet national security or law enforcement requirements).</li>\r\n                <li><strong>Vital Interests:</strong> We may disclose your information where we believe it is necessary to investigate, prevent, or take action regarding potential violations of our policies, suspected fraud, situations involving potential threats to the safety of any person and illegal activities, or as evidence in litigation in which we are involved.</li>\r\n            </ul>\r\n        </section>\r\n        <section>\r\n            <h2>Security of Your Information</h2>\r\n            <p>We have implemented appropriate technical and organizational security measures designed to protect the security of any personal information we process. However, please also remember that we cannot guarantee that the internet itself is 100% secure. Although we will do our best to protect your personal information, transmission of personal information to and from our Sites is at your own risk. You should only access the services within a secure environment.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Your Privacy Rights</h2>\r\n            <p>In some regions (like the European Economic Area), you have certain rights under applicable data protection laws. These may include the right (i) to request access and obtain a copy of your personal information, (ii) to request rectification or erasure; (iii) to restrict the processing of your personal information; and (iv) if applicable, to data portability. In certain circumstances, you may also have the right to object to the processing of your personal information. To make such a request, please use the contact details provided below. We will consider and act upon any request in accordance with applicable data protection laws.</p>\r\n            <p>If we are relying on your consent to process your personal information, you have the right to withdraw your consent at any time. Please note however that this will not affect the lawfulness of the processing before its withdrawal.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Cookies and Other Tracking Technologies</h2>\r\n            <p>We may use cookies and similar tracking technologies to access or store information. Specific information about how we use such technologies and how you can refuse certain cookies is set out in our Cookie Policy.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Controls for Do-Not-Track Features</h2>\r\n            <p>Most web browsers and some mobile operating systems and mobile applications include a Do-Not-Track (\"DNT\") feature or setting you can activate to signal your privacy preference not to have data about your online browsing activities monitored and collected. No uniform technology standard for recognizing and implementing DNT signals has been finalized. As such, we do not currently respond to DNT browser signals or any other mechanism that automatically communicates your choice not to be tracked online. If a standard for online tracking is adopted that we must follow in the future, we will inform you about that practice in a revised version of this privacy policy.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Children's Privacy</h2>\r\n            <p>We do not knowingly solicit data from or market to children under 18 years of age. By using the Sites, you represent that you are at least 18 or that you are the parent or guardian of such a minor and consent to such minor dependent’s use of the Sites. If we learn that personal information from users less than 18 years of age has been collected, we will deactivate the account and take reasonable measures to promptly delete such data from our records. If you become aware of any data we have collected from children under age 18, please contact us at support@flipkartclone.com.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Changes to This Policy</h2>\r\n            <p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new policy on this page. You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Contact Us</h2>\r\n            <p>If you have any questions about this Privacy Policy, please contact us at:</p>\r\n            <p>Email: support@flipkartclone.com</p>\r\n            <p>Phone: +1 234 567 890</p>\r\n            <p>Address: 1234 Clone Street, Clone City, CL 56789</p>\r\n        </section>\r\n    </main>\r\n    <footer>\r\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\r\n    </footer>\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "pages/privacypolicy/privacypolicy.js",
    "content": "var privacypolicy=`\r\n<pre>\r\n    PRIVACY POLICY\r\n\r\n    We value the trust you place in us and recognize the importance of secure transactions and information privacy. This\r\n    Privacy Policy describes how Flipkart Internet Private Limited and its affiliates (collectively “Flipkart, we, our,\r\n    us”) collect, use, share or otherwise process your personal data through Flipkart website www.flipkart.com, its\r\n    mobile application, and m-site (hereinafter referred to as the “Platform”).\r\n\r\n    While you can browse sections of the Platform without the need of sharing any information with us, however, please\r\n    note we do not offer any product or service under this Platform outside India and your personal data will primarily\r\n    be stored and processed in India. By visiting this Platform, providing your information or availing out\r\n    product/service, you expressly agree to be bound by the terms and conditions of this Privacy Policy, the Terms of\r\n    Use and the applicable service/product terms and conditions, and agree to be governed by the laws of India including\r\n    but not limited to the laws applicable to data protection and privacy. If you do not agree please do not use or\r\n    access our Platform.\r\n\r\n    Collection of Your Information\r\n\r\n    When you use our Platform, we collect and store your information which is provided by you from time to time. Once\r\n    you give us your personal data, you are not anonymous to us. Where possible, we indicate which fields are required\r\n    and which fields are optional. You always have the option to not provide data by choosing not to use a particular\r\n    service, product or feature on the Platform.\r\n\r\n    We may track your buying behavior, preferences, and other information that you choose to provide on our Platform. We\r\n    use this information to do internal research on our users' demographics, interests, and behavior to better\r\n    understand, protect and serve our users. This information is compiled and analyzed on an aggregated basis. This\r\n    information may include the URL that you just came from (whether this URL is on our Platform or not), which URL you\r\n    next go to (whether this URL is on our Platform or not), your computer browser information, and your IP address.\r\n\r\n    We may collect personal data (such as email address, delivery address, name, phone number, credit card/debit card\r\n    and other payment instrument details or medical or health related information) from you when you set up an account\r\n    or transact with us or participate in any event or contest. While you can browse some sections of our Platform\r\n    without being a registered member, certain activities (such as placing an order or consuming our online content or\r\n    services) do require registration. We use your contact information to send you offers based on your previous orders\r\n    and your interests.\r\n\r\n    If you choose to post messages on our message boards, chat rooms or other message areas or leave feedback on the\r\n    Platform or the social media handles maintained by us or if you use voice commands or virtual try and buy or similar\r\n    features to shop on the Platform, we will collect that information you provide to us. We retain this information as\r\n    necessary to resolve disputes, provide customer support, troubleshoot problems or for internal research and analysis\r\n    as permitted by law.\r\n\r\n    If you send us personal correspondence, such as emails or letters, or if other users or third parties send us\r\n    correspondence about your activities or postings on the Platform, we may collect such information into a file\r\n    specific to you.\r\n\r\n    If you enroll into our loyalty and membership program, such SuperCoin, VIP or similar programs offered by Flipkart,\r\n    we will collect and store your personal data such as name, contact number, email address, communication address,\r\n    date of birth, gender, zip code, lifestyle information, demographic and work details which is provided by you to\r\n    Flipkart or a third-party business partner that operates online/offline establishments or platforms where you can\r\n    earn loyalty points for purchase of goods and services, and redeem loyalty points. We will also collect your\r\n    information related to your transactions on Flipkart platform and such third-party business partner platforms. When\r\n    such a third-party business partner collects your personal data directly from you, you will be governed by their\r\n    privacy policies. Additionally, we collect your UPI ID if you choose to pay via our Flipkart UPI platform. Flipkart\r\n    shall not be responsible for the third-party business partner’s privacy practices or the content of their privacy\r\n    policies, and we request you to read their privacy policies prior to disclosing any information.\r\n\r\n    Flipkart has onboarded certain third-party business partners on the Platform who specialize in the categories like\r\n    travel ticket reservations, booking online movie tickets, paying online bills and more (Ultra-Partners). If you use\r\n    the services of Ultra-Partners, you will be redirected to Ultra-Partners websites/applications and your entry to\r\n    Ultra-Partners websites/applications will be based on your Flipkart login credentials after seeking your permissions\r\n    to share the data further. Flipkart shall not be responsible for the Ultra-Partner’s privacy practices or the\r\n    content of their privacy policies, and we request you to read their privacy policies prior to disclosing any\r\n    information.\r\n\r\n    Use of Demographic / Profile Data / Your Information\r\n\r\n    We use your personal data to take and fulfill orders, deliver products and services, process payments, and\r\n    communicate with you about orders, products and services, and promotional offers. To the extent we use your personal\r\n    data to market to you, we will provide you the ability to opt-out of such uses. We use your personal data to assist\r\n    sellers and business partners in handling and fulfilling orders; enhancing customer experience; resolve disputes;\r\n    troubleshoot problems; help promote a safe service; collect money; measure consumer interest in our products and\r\n    services; inform you about online and offline offers, products, services, and updates; customize and enhance your\r\n    experience; report to regulatory authorities wherever required, detect and protect us against error, fraud and other\r\n    criminal activity; enforce our terms and conditions; and as otherwise described to you at the time of collection of\r\n    information.\r\n\r\n    With your consent, we may have access to your SMS, instant messages, contacts in your directory, location, camera,\r\n    photo gallery and device information. We may also request you to provide your PAN, credit information report (from\r\n    credit agencies), GST Number, Government issued ID cards/number and Know-Your-Customer (KYC) details to: (i) check\r\n    your eligibility for certain products and services like insurance, credit and payment products; (ii) issue GST\r\n    invoice for the products and services purchased for your business requirements; (iii) enhance your experience on the\r\n    Platform and provide you access to the products and services being offered by us, sellers, affiliates or lending\r\n    partners. You understand that your access to these products/services may be affected in the event consent is not\r\n    provided to us.\r\n\r\n    In our efforts to continually improve our product and service offerings, we and our affiliates collect and analyze\r\n    demographic and profile data about our users' activity on our Platform. We identify and use your IP address to help\r\n    diagnose problems with our server, and to administer our Platform. Your IP address is also used to help identify you\r\n    and to gather broad demographic information.\r\n\r\n    We will occasionally ask you to participate in optional surveys conducted either by us or through a third-party\r\n    market research agency. These surveys may ask you for personal data, contact information, date of birth, demographic\r\n    information (like zip code, age, or income level), attributes such as your interests, household or lifestyle\r\n    information, your purchasing behavior or history, preferences, and other such information that you may choose to\r\n    provide. The surveys may involve collection of voice data or video recordings, the participation of which would\r\n    purely be voluntary in nature. We use this data to tailor your experience at our Platform, providing you with\r\n    content that we think you might be interested in and to display content according to your preferences.\r\n\r\n    Cookies\r\n\r\n    We use data collection devices such as \"cookies\" on certain pages of the Platform to help analyze our web page flow,\r\n    measure promotional effectiveness, and promote trust and safety. \"Cookies\" are small files placed on your hard drive\r\n    that assist us in providing our services. Cookies do not contain any of your personal data. We offer certain\r\n    features that are only available through the use of a \"cookie\". We also use cookies to allow you to enter your\r\n    password less frequently during a session. Cookies can also help us provide information that is targeted to your\r\n    interests. Most cookies are \"session cookies,\" meaning that they are automatically deleted from your hard drive at\r\n    the end of a session. You are always free to decline/delete our cookies if your browser permits, although in that\r\n    case you may not be able to use certain features on the Platform and you may be required to re-enter your password\r\n    more frequently during a session. Additionally, you may encounter \"cookies\" or other similar devices on certain\r\n    pages of the Platform that are placed by third parties. We do not control the use of cookies by third parties. We\r\n    use cookies from third-party partners such as Google Analytics for marketing and analytical purposes. Google\r\n    Analytics helps us understand how our customers use the site. You can read more about how Google uses your personal\r\n    data here: https://www.google.com/intl/en/policies/privacy/. You can opt-out of Google Analytics here:\r\n    https://tools.google.com/dlpage/gaoptout. You can also control the use of cookies at the individual browser level,\r\n    but if you choose to disable cookies, it may limit your use of certain features or functions on the services.\r\n\r\n    Sharing of personal data\r\n\r\n    We may share personal data internally within Flipkart group companies including Flipkart Advanz Private Limited,\r\n    Scapic Innovations Private Limited, and other Flipkart affiliates, related companies and third parties, including\r\n    Credit Bureaus and business partners (such as UPI platform), for purposes of providing products and services offered\r\n    by them, such as, personal loans offered by Scapic Innovations Private Limited through its lending partners,\r\n    insurance, the deferred payment options, Flipkart PayLater offered by Flipkart Advanz Private Limited through its\r\n    lending partners. These entities and affiliates may share such information with their affiliates, business partners\r\n    and other third parties for the purpose of conducting the required checks, namely for the purpose of credit\r\n    underwriting, providing you their products and services and may market to you as a result of such sharing unless you\r\n    explicitly opt-out.\r\n\r\n    For products that are required to be prescribed by qualified professionals under law, we permit processing of such\r\n    orders on the Platform only upon confirmation that a valid prescription has been uploaded by you. In cases where the\r\n    prescriptions uploaded by you are invalid, illegible, or expired or if prescription is not uploaded by you, we may,\r\n    through third-party vendors connect You with medical practitioners, teleconsultants or third-party professionals\r\n    where required to rectify the prescription or in case of invalid/illegible/expired prescription or issue a\r\n    prescription in case prescription is not uploaded by you, based on the information that You provide to them. You\r\n    agree and acknowledge that you will be redirected to the teleconsultation services only in limited cases where\r\n    prescription validation or prescription issuance is required.\r\n\r\n    We may disclose your personal data to third parties, such as sellers, business partners. This disclosure may be\r\n    required for us to provide you access to our products and services; for fulfillment of your orders; for enhancing\r\n    your experience; for providing feedback on products; to collect payments from you; to comply with our legal\r\n    obligations; to conduct market research or surveys; to enforce our Terms of Use; to facilitate our marketing and\r\n    advertising activities; to analyze data; for customer service assistance; to prevent, detect, mitigate, and\r\n    investigate fraudulent or illegal activities related to our product and services. We may disclose personal data if\r\n    required to do so by law or in the good faith belief that such disclosure is reasonably necessary to respond to\r\n    subpoenas, court orders, or other legal process. We may disclose personal data to law enforcement agencies, third\r\n    party rights owners, or others in the good faith belief that such disclosure is reasonably necessary to enforce our\r\n    Terms of Use or Privacy Policy; respond to claims that an advertisement, posting or other content violates the\r\n    rights of a third party; or protect the rights, property or personal safety of our users or the general public.\r\n\r\n    We and our affiliates will share / sell some or all of your personal data with another business entity should we (or\r\n    our assets) plan to merge with, or be acquired by that business entity, or reorganization, amalgamation,\r\n    restructuring of business. Should such a transaction occur that another business entity (or the new combined entity)\r\n    will be required to follow this Privacy Policy with respect to your personal data.\r\n\r\n    Links to Other Sites\r\n\r\n    Our Platform may provide links to other websites or applications that may collect personal data about you and you\r\n    will be governed by their privacy policies. Flipkart shall not be responsible for the privacy practices or the\r\n    content of their privacy policies, and we request you to read their privacy policies prior to disclosing any\r\n    information.\r\n\r\n    Security Precautions\r\n\r\n    We maintain reasonable physical, electronic and procedural safeguards to protect your information. Whenever you\r\n    access your account information, we offer the use of a secure server. Once your information is in our possession, we\r\n    adhere to our security guidelines to protect it against unauthorized access. However, by using the Platform, the\r\n    users accept the inherent security implications of data transmission over the internet and the World Wide Web which\r\n    cannot always be guaranteed as completely secure, and therefore, there would always remain certain inherent risks\r\n    regarding use of the Platform. Users are responsible for ensuring the protection of login and password records for\r\n    their account.\r\n\r\n    Choice/Opt-Out\r\n\r\n    We provide all users with the opportunity to opt-out of receiving non-essential (promotional, marketing-related)\r\n    communications after setting up an account with us. If you do not wish to receive promotional communications from\r\n    us, then please login into the Notification Preference page of Platform\r\n    [https://www.flipkart.com/communication-preferences/email] to unsubscribe/opt-out.\r\n\r\n    Advertisements on Platform\r\n\r\n    We use third-party advertising companies to serve ads when you visit our Platform. These companies may use\r\n    information (not including your name, address, email address, or telephone number) about your visits to this and\r\n    other websites in order to provide personalized advertisements about goods and services of interest to you. You have\r\n    an option to opt out from tracking of personalized advertising using the “Opt out of Ads Personalization” settings\r\n    using your device’s settings application. Flipkart will have no access to your GAID once you select this feature.\r\n\r\n    Children Information\r\n\r\n    Use of our Platform is available only to persons who can form a legally binding contract under the Indian Contract\r\n    Act, 1872. We do not knowingly solicit or collect personal data from children under the age of 18 years. If you have\r\n    shared any personal data of children under the age of 18 years, you represent that you have the authority to do so\r\n    and permit us to use the information in accordance with this Privacy Policy.\r\n\r\n    Data Retention\r\n\r\n    We retain your personal data in accordance with applicable laws, for a period no longer than is required for the\r\n    purpose for which it was collected or as required under any applicable law. However, we may retain data related to\r\n    you if we believe it may be necessary to prevent fraud or future abuse, to enable Flipkart to exercise its legal\r\n    rights and/or defend against legal claims or if required by law or We may continue to retain your data in anonymised\r\n    form for analytical and research purposes.\r\n\r\n    Your Rights\r\n\r\n    We take every reasonable step to ensure that your personal data that we process is accurate and, where necessary,\r\n    kept up to date, and any of your personal data that we process that you inform us is inaccurate (having regard to\r\n    the purposes for which they are processed) is erased or rectified. You may access, correct, and update your personal\r\n    data directly through the functionalities provided on the Platform. You may delete certain non-mandatory information\r\n    by logging into our website and visiting Profile and Settings sections. You can also write to us at the contact\r\n    information provided below to assist you with these requests.\r\n\r\n    You have an option to withdraw your consent that you have already provided by writing to us at the contact\r\n    information provided below. Please mention “for withdrawal of consent” in the subject line of your communication. We\r\n    will verify such requests before acting upon your request. Please note, however, that withdrawal of consent will not\r\n    be retroactive and will be in accordance with the terms of this Privacy Policy, related Terms of Use and applicable\r\n    laws. In the event you withdraw consent given to us under this Privacy Policy, such withdrawal may hamper your\r\n    access to the Platform or restrict provision of our services to you for which we consider that information to be\r\n    necessary.\r\n\r\n    Your Consent\r\n\r\n    By visiting our Platform or by providing your personal data, you consent to the collection, use, storage, disclosure\r\n    and otherwise processing of your personal data on the Platform in accordance with this Privacy Policy. If you\r\n    disclose to us any personal data relating to other people, you represent that you have the authority to do so and to\r\n    permit us to use the data in accordance with this Privacy Policy.\r\n\r\n    You, while providing your personal data over the Platform or any partner platforms or establishments, consent to us\r\n    (including our other corporate entities, affiliates, lending partners, technology partners, marketing channels,\r\n    business partners and other third parties like credit bureaus ) to contact you through SMS, instant messaging apps,\r\n    call and/or e-mail for the purposes specified in this Privacy Policy.\r\n\r\n    Changes to this Privacy Policy\r\n\r\n    Please check our Privacy Policy periodically for changes . We may update this Privacy Policy to reflect changes to\r\n    our information practices. We will alert you to significant changes by posting the date our policy got last updated,\r\n    placing a notice on our Platform, or by sending you an email when we are required to do so by applicable law.\r\n\r\n    Grievance Officer\r\n\r\n    In accordance with Information Technology Act 2000 and rules made there under, the name and contact details of the\r\n    Grievance Officer are provided below:\r\n\r\n    Mr. Shremanth M\r\n\r\n    Designation: Senior Manager\r\n\r\n    Flipkart Internet Pvt Ltd.\r\n\r\n    Embassy tech village\r\n\r\n    8th floor Block 'B' Devarabeesanahalli Village,\r\n\r\n    Varthur Hobli, Bengaluru East Taluk,\r\n\r\n    Bengaluru District,\r\n\r\n    Karnataka, India, 560103.\r\n\r\n    Email: privacy.grievance@flipkart.com\r\n\r\n    Customer Support\r\n\r\n    If you have a query, concern, or complaint in relation to collection or usage of your personal data under this\r\n    Privacy Policy, please contact us at privacy.grievance@flipkart.com\r\n\r\n    You can reach our customer support team to address any of your queries or complaints related to product and services\r\n    by clicking the link, selecting your order and choosing 'Need Help' option: https://www.flipkart.com/helpcentre\r\n\r\n    Last Updated: March 2024\r\n</pre>\r\n`\r\n\r\ndocument.getElementById(\"privacypolicy\").innerHTML=privacypolicy"
  },
  {
    "path": "pages/privacypolicy/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nmain {\n    max-width: 800px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0,0,0,0.1);\n}\n\nsection {\n    margin-bottom: 2rem;\n}\n\nh2 {\n    color: #2874f0;\n}\n\nh3 {\n    color: #2b2b2b;\n    margin-bottom: 0.5rem;\n}\n\nul {\n    list-style-type: disc;\n    margin: 0;\n    padding-left: 1.5rem;\n}\n\nfooter {\n    text-align: center;\n    padding: 1rem 0;\n    background-color: #2874f0;\n    color: white;\n    position: fixed;\n    width: 100%;\n    height: 1.5rem;\n    bottom: 0cqmax;\n}\n\na {\n    color: #2874f0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}\n"
  },
  {
    "path": "pages/return and Cancellation/return.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    background-color: #f4f4f4;\n    margin: 23px;\n    padding: 23px;\n}\n\n.container {\n    max-width: 400px;\n    margin: 20px auto;\n    padding: 20px;\n    background-color: #fff;\n    border-radius: 8px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n}\n\nh2,\nh3 {\n    text-align: center;\n}\n\ntable,\ntr,\ntd,\nth {\n    border: 1px solid black;\n    padding: 23px;\n}\n\n\n.faq,\n.privacy-policy,\n.contact-us {\n    margin: 20px 0;\n}\n\n\np {\n    font-size: 14px;\n    color: #666;\n    line-height: 1.6;\n}\n\na {\n    color: #0066c0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}\n\n@media (min-width: 1400px) {\n\n    .container,\n    .container-lg,\n    .container-md,\n    .container-sm,\n    .container-xl,\n    .container-xxl {\n        max-width: 984px;\n    }\n}"
  },
  {
    "path": "pages/return and Cancellation/return.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Safe and Secure Shopping</title>\n    <link rel=\"stylesheet\" href=\"return.css\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/bootstrap.min.css\">\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n\t<link rel=\"stylesheet\" href=\"../../css/homeHeader.css\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/index.css\">\n\t<link rel=\"stylesheet\" href=\"../../css/footer.css\">\n\t\t<!-- <link href=\"../../css/contactus.css\" rel=\"stylesheet\"> -->\n</head>\n<body>\n    <header id=\"homeHeader\">\n\t\t<nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\n\t\t\t<a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\n\t\t\t\t\twidth=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n\t\t\t</a>\n\t\t\t<div id=\"navbarNav_\">\n\t\t\t\t<ul class=\"navbar-nav\">\n\t\t\t\t\t<li class=\"nav-item navItem1\">\n\t\t\t\t\t\t<div id=\"searchbar\" class=\"navtab\" style=\"background-color: #F0F5FF; width:43vw; margin-left:-1vw\">\n\t\t\t\t\t\t\t<span id=\"searchButton\" style=\"display: flex;align-items: center; justify-content:space-between;margin-left:15vw;\">\n\t\t\t\t\t\t\t\t<svg width=\"300\" height=\"24\" class=\"\" viewBox=\"0 0 24 24\" fill=\"none\"\n\t\t\t\t\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\">\n\t\t\t\t\t\t\t\t\t<title>Search Icon</title>\n\t\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\t\td=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\n\t\t\t\t\t\t\t\t\t\tstroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t\t<path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n\t\t\t\t\t\t\t\t\t\tstroke-linejoin=\"round\"></path>\n\t\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<span class=\"flex-grow\">\n\t\t\t\t\t\t\t\t<input id=\"input_data\" class=\"searchbar\"   type=\"text\" placeholder=\"Search for Products, Brands and More\" />\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t\t<div id=\"autocompleteResults\" class=\"autocom-box\" style=\"display: none;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\ttop: 67px;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tbackground:#f0f5ff;\n\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\tborder: rgba(255, 51, 255, 0.2);\">\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t</ul>\n\t\t\t\t<ul  class=\"navbar-nav ml-auto\"\n\t\t\t\t\tstyle=\"flex-wrap: nowrap;flex-direction: row;width: 30vw; justify-content: space-between;margin-left: 20px;\">\n\t\t\t\t\t<li class=\"nav-item navItem2 dropdown\" id=\"navbarDropdow\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd acnavdd\" href=\"#\" id=\"navbarDropdown\" role=\"button\" style=\"width: 10vw; margin-top:2vh;\"\n\t\t\t\t\t\t\tdata-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img src=\"img/svg/profile-.svg\" alt=\"Profile\" />\n\t\t\t\t\t\t\t<span class=\"navname navname_ac\" style=\"width:50vw;\"> Login <i class=\"bi bi-chevron-down\"></i><i\n\t\t\t\t\t\t\t\t\tclass=\"bi bi-chevron-up\"></i></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0px;\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/home_account.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tMy Profile </a>\n\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"login/login.html\">\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\t\tLog into account </a>\n\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/login-signup.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/profile-.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tSign In</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"plus/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/fkplus-+.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tFlipkart Plus Zone</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/orders.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/orders.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tOrders</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"wishlist/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/wishList.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tWishlist</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/notifications.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/notifications.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tNotifications</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/rewards.html\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/rewards.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tRewards</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"the-gift-card-store/\">\n\t\t\t\t\t\t\t\t<img width=\"20\" src=\"img/svg/giftCard.svg\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\tGift Cards</a>\n\t\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"account/contact.html\">\n\t\t\t\t\t\t\t\t\t<img width=\"20\" src=\"https://pngimg.com/uploads/phone/phone_PNG48988.png\" alt=\"flipKart\">\n\t\t\t\t\t\t\t\t\tContact Us </a>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem3\">\n\t\t\t\t\t\t<a class=\"nav-link cartLogoandname\" style=\"width: 10vw; margin-top:2vh;\" href=\"viewcart/\">\n\t\t\t\t\t\t\t<img\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\" />\n\t\t\t\t\t\t\t<span class=\"navname2\">Cart</span><span id=\"cartItems\"></span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem4\">\n\t\t\t\t\t\t<a class=\"nav-link\" href=\"sell-online/\" style=\"width: 12vw;font-size:small; margin-top:2vh;\">\n\t\t\t\t\t\t\t<img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\n\t\t\t\t\t\t\t\talt=\"Become a Seller\" />\n\t\t\t\t\t\t\t<span class=\"navname3\">Become a Seller</span>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li class=\"nav-item navItem5 dropdown \" id=\"moreLinksDropdow\" style=\"width: 10vw; margin-top:2vh;\">\n\t\t\t\t\t\t<a class=\"nav-link nav-dd\" href=\"#\" id=\"moreLinksDropdown\" role=\"button\" data-toggle=\"dropdown\"\n\t\t\t\t\t\t\taria-haspopup=\"true\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t<img class=\"nav-dd\"\n\t\t\t\t\t\t\t\tsrc=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\"\n\t\t\t\t\t\t\t\talt=\"More Links\" />\n\t\t\t\t\t\t</a>\n\t\t\t\t\t\t<div class=\"dropdown-menu dropdown-menu-right\" aria-labelledby=\"moreLinksDropdown\">\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"notifications/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/notificationPreferences.svg\"\n\t\t\t\t\t\t\t\t\talt=\"appointment-reminders--v2\" />Notification\n\t\t\t\t\t\t\t\tPreferences</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"helpcentre/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/helpcenter.svg\" alt=\"imgcc\">24x7 Customer Care</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\"\n\t\t\t\t\t\t\t\thref=\"https://advertising.flipkart.com/\"><img\n\t\t\t\t\t\t\t\t\twidth=\"30\" height=\"20\" src=\"img/svg/advertise.svg\" alt=\"Advertise\">Advertise</a>\n\t\t\t\t\t\t\t<a class=\"dropdown-item\" href=\"mobile-apps/\"><img width=\"30\" height=\"20\"\n\t\t\t\t\t\t\t\t\tsrc=\"img/svg/downloadApp.svg\" alt=\"img3\">Download App</a>\n\t\t\t\t\t</li>\n\t\t\t\t\t\n\t\t\t\t</ul>\n\t\t\t</div>\n\t\t</nav>\n\t</header>\n<div class=\"container\">\n    <h2>Order Cancellation and Return Policy</h2>\n    <br/>\n    <h3>Cancellation Policy</h3>\n    <br/>\n    <p>\n        The customer can choose to cancel an order any time before it's dispatched. The order cannot be canceled once it’s out for delivery. However, the customer may choose to reject it at the doorstep.\n    </p>\n    <p>\n        The time window for cancellation varies based on different categories and the order cannot be canceled once the specified time has passed.\n    </p>\n    <p>\n        In some cases, the customer may not be allowed to cancel the order for free, post the specified time and a cancellation fee will be charged. The details about the time window mentioned on the product page or order confirmation page will be considered final.\n    </p>\n    <p>\n        In case of any cancellation from the seller due to unforeseen circumstances, a full refund will be initiated for prepaid orders.\n    </p>\n    <p>\n        Flipkart reserves the right to accept the cancellation of any order. Flipkart also reserves the right to waive off or modify the time window or cancellation fee from time to time.\n    </p>\n    <h3>Returns Policy</h3>\n    <br/>\n    <p>\n        Returns is a scheme provided by respective sellers directly under this policy in terms of which the option of exchange, replacement, and/or refund is offered by the respective sellers to you. All products listed under a particular category may not have the same returns policy. For all products, the returns/replacement policy provided on the product page shall prevail over the general returns policy. Do refer the respective item's applicable return/replacement policy on the product page for any exceptions to this returns policy and the table below.\n    </p>\n    <p>\n        The return policy is divided into three parts; Do read all sections carefully to understand the conditions and cases under which returns will be accepted.\n    </p>\n    <br/>\n    <h4>Part 1 – Category, Return Window and Actions possible</h4>\n    <br/>\n    <table>\n        <tr>\n            <th>Category</th>\n            <th>Returns Window, Actions Possible and Conditions (if any)</th>\n        </tr>\n        <tr>\n            <td>Furniture</td>\n            <td>\n                10 days<br>\n                Refund or Replacement<br>\n                For products requiring installation, returns shall be eligible only when such products are installed by the brand's authorized personnel.<br>\n                In order to help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.<br>\n                If a defect is determined within the Returns Window, a refund/replacement of the same product will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 10 days of delivery or Installation wherever applicable, you will be directed to a brand service centre to resolve any subsequent issues.<br>\n                In any case, only one replacement shall be provided.\n            </td>\n        </tr>\n        <tr>\n            <td>Lifestyle: Watch, T-Shirt, Footwear, etc.</td>\n            <td>10 days<br>Refund, Replacement or Exchange</td>\n        </tr>\n        <tr>\n            <td>Medicine (Allopathy & Homeopathy)</td>\n            <td>2 days<br>Refund</td>\n        </tr>\n        <tr>\n            <td>Home: Home Improvement Tools, Household Items, etc.</td>\n            <td>7 days<br>Refund or replacement</td>\n        </tr>\n        <tr>\n            <td>Books, Sports Equipments, etc.</td>\n            <td>\n                7 days Replacement only<br>\n                Free replacement will be provided within 7 days if the product is delivered in defective/damaged condition or different from the ordered item.<br>\n                Please keep the product intact, with original accessories, user manual and warranty cards in the original packaging at the time of returning the product.\n            </td>\n        </tr>\n        <tr>\n            <td>Non-Returnable - Wind Instruments</td>\n            <td>This item is non-returnable due to hygiene and personal wellness. In case these products are delivered in damaged/defective condition or different from the ordered item, we will provide a free replacement.</td>\n        </tr>\n    </table>\n    <br/>\n    <p>\n        <strong>Part 2 - Returns Pick-Up and Processing</strong><br>\n        In case of returns where you would like item(s) to be picked up from a different address, the address can only be changed if pick-up service is available at the new address. During pick-up, your product will be checked for the following conditions:\n    </p>\n    <table>\n        <tr>\n            <th>Category</th>\n            <th>Conditions</th>\n        </tr>\n        <tr>\n            <td>Correct Product</td>\n            <td>IMEI/ name/ image/ brand/ serial number/ article number/ bar code should match and MRP tag should be undetached and clearly visible.</td>\n        </tr>\n        <tr>\n            <td>Complete Product</td>\n            <td>All in-the-box accessories (like remote control, starter kits, instruction manuals, chargers, headphones, etc.), freebies and combos (if any) should be present.</td>\n        </tr>\n        <tr>\n            <td>Unused Product</td>\n            <td>The product should be unused, unwashed, unsoiled, without any stains and with non-tampered quality check seals/return tags/warranty seals (wherever applicable). Before returning a Mobile/ Laptop/ Tablet, the device should be formatted and Screen Lock (Pin, Pattern or Fingerprint) must be disabled. iCloud lock must be disabled for Apple devices.</td>\n        </tr>\n        <tr>\n            <td>Undamaged Product</td>\n            <td>The product (including SIM trays/ charging port/ headphone port, back-panel etc.) should be undamaged and without any scratches, dents, tears or holes.</td>\n        </tr>\n        <tr>\n            <td>Undamaged Packaging</td>\n            <td>The product’s original packaging/ box should be undamaged.</td>\n        </tr>\n    </table>\n    <br/>\n    <p>\n        The field executive will refuse to accept the return if any of the above conditions are not met. For any products for which a refund is to be given, the refund will be processed once the returned product has been received by the seller.\n    </p>\n    <!-- <br/> -->\n    \n    <h4>Part 3 - General Rules for a successful Return</h4>\n    <br/>\n    <p>\n        In certain cases where the seller is unable to process a replacement for any reason whatsoever, a refund will be given. In cases where a product accessory is found missing/damaged/defective, the seller may either process a replacement of the particular accessory or issue an eGV for an amount equivalent to the price of the accessory, at the seller’s discretion.\n    </p>\n    <br/>\n    <p>\n        During open box deliveries, while accepting your order, if you received a different or a damaged product, you will be given a refund (on the spot refunds for cash-on-delivery orders). Once you have accepted an open box delivery, no return request will be processed, except for manufacturing defects. In such cases, these category-specific replacement/return general conditions will be applicable. Click here to know more about Open Box Delivery.\n    </p>\n    <br/>\n    <p>\n        For products where installation is provided by Flipkart's service partners, do not open the product packaging by yourself. Flipkart authorized personnel shall help in unboxing and installation of the product.\n    </p>\n    <br/>\n    <p>\n        For Furniture, any product-related issues will be checked by authorized service personnel (free of cost) and attempted to be resolved by replacing the faulty/defective part of the product. Full replacement will be provided only in cases where the service personnel opines that replacing the faulty/defective part will not resolve the issue.\n    </p>\n    <br/>\n    <p>\n        Flipkart holds the right to restrict the number of returns created per order unit, post the evaluation of the product/order defect is undertaken by Flipkart’s authorized representative.\n    </p>\n</div>\n\n\n\n    <footer id=\"footer\" style=\"background-color: #292d33;\"></footer>\n</body>\n</html>\n"
  },
  {
    "path": "pages/securityPage/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Security Page - Flipkart Clone</title>\n\n    <link rel=\"stylesheet\" href=\"styles.css\">\n\n</head>\n<body>\n\n    <header>\n        <h1>Safe and Secure Shopping</h1>\n    </header>\n\n    <main>\n\n        <h4>Is making online payment secure on Flipkart?</h4>\n        <p>Yes, making the online payment is secure on Flipkart</p>\n\n        <h4>Does Flipkart store my credit/debit card infomation?</h4>\n        <p>No. Flipkart only stores the last 4 digits of your card number for the purpose of card identification.</p>\n\n        <h4>What credit/debit cards are accepted on Flipkart?</h4>\n        <p>We accept VISA, MasterCard, Maestro, Rupay, American Express, Diner's Club and Discover credit/debit cards.</p>\n\n        <h4>Do you accept payment made by credit/debit cards issued in other countries?</h4>\n        <p>Yes! We accept VISA, MasterCard, Maestro, American Express credit/debit cards issued by banks in India and in the\n        following countries: Australia, Austria, Belgium, Canada, Cyprus, Denmark, Finland, France, Germany, Ireland, Italy,\n        Luxembourg, the Netherlands, New Zealand, Norway, Portugal, Singapore, Spain, Sweden, the UK and the US. Please note\n        that we do not accept internationally issued credit/debit cards for eGV payments/top-ups.</p>\n\n        <h4>What other payment options are available on Flipkart?</h4>\n        <p>Apart from Credit and Debit Cards, we accept payments via Internet Banking (covering 44 banks), Cash on Delivery,\n        Equated Monthly Installments (EMI), E-Gift Vouchers, Flipkart Pay Later, UPI, Wallet, and Paytm Postpaid.</p>\n\n        <h4>Privacy Policy</h4>\n        <p>Flipkart.com respects your privacy and is committed to protecting it. For more details, please see our Privacy Policy</p>\n\n        <h4>Contact Us</h4>\n        <p>Couldn't find the information you need? Please Contact Us at <span>044-45614700 / 044-67415800</span></a></p>\n\n        <br>\n\n    </main>\n    \n    <footer>\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\n    </footer>\n\n</body>\n</html>"
  },
  {
    "path": "pages/securityPage/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nmain {\n    max-width: 800px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\n}\n\nspan{\n    text-decoration: underline;\n    color: #2874f0;\n}\n\nfooter{\n    text-align: center;\n    padding: 10px;\n    color: white;\n    background-color: #2874f0;\n}"
  },
  {
    "path": "pages/terms/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Terms of Use - Flipkart Clone</title>\r\n    <link rel=\"stylesheet\" href=\"styles.css\">\r\n    <style>\r\n         #progress-container {\r\n    position: fixed ;\r\n    top: 0px;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 15px;\r\n    z-index: 99990;\r\n    /* background: #f3f3f3; */\r\n}\r\n\r\n#progress-bar {\r\n    height: 53%;\r\n    width: 0;\r\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\r\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\r\n    transition: width 0.09s ease-in-out;\r\n    border-radius: 10px;\r\n}\r\n\r\n    </style>\r\n</head>\r\n<body>\r\n    \r\n\r\n\r\n<div id=\"progress-container\">\r\n    <div id=\"progress-bar\"></div>\r\n  </div>\r\n\r\n  <script>\r\n        \r\n    window.addEventListener('scroll', function() {\r\n        const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\r\n        const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n        const scrolled = (winScroll / height) * 100;\r\n        document.getElementById('progress-bar').style.width = scrolled + '%';\r\n    });\r\n    </script>\r\n  \r\n    <header>\r\n        <h1>Terms of Use</h1>\r\n    </header>\r\n    <main>\r\n        <section>\r\n            <h2>Introduction</h2>\r\n            <p>Welcome to Flipkart Clone. These Terms of Use govern your use of our website and services. By accessing or using our website, you agree to comply with and be bound by these terms. If you do not agree with these terms, you should not use our website or services.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Use of Our Services</h2>\r\n            <h3>Eligibility</h3>\r\n            <p>To use our services, you must be at least 18 years old and have the legal capacity to enter into a binding agreement. By using our services, you represent and warrant that you meet these requirements.</p>\r\n            <h3>Account Registration</h3>\r\n            <p>To access certain features of our website, you may be required to create an account. You agree to provide accurate, current, and complete information during the registration process and to update such information as necessary to keep it accurate, current, and complete.</p>\r\n            <h3>Account Security</h3>\r\n            <p>You are responsible for maintaining the confidentiality of your account information, including your password, and for all activities that occur under your account. You agree to notify us immediately of any unauthorized use of your account or any other breach of security.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Prohibited Activities</h2>\r\n            <p>You agree not to engage in any of the following prohibited activities:</p>\r\n            <ul>\r\n                <li>Copying, distributing, or disclosing any part of the website in any medium, including without limitation by any automated or non-automated \"scraping\"</li>\r\n                <li>Using any automated system, including without limitation \"robots,\" \"spiders,\" \"offline readers,\" etc., to access the website</li>\r\n                <li>Transmitting spam, chain letters, or other unsolicited email</li>\r\n                <li>Attempting to interfere with, compromise the system integrity or security or decipher any transmissions to or from the servers running the website</li>\r\n                <li>Taking any action that imposes, or may impose at our sole discretion an unreasonable or disproportionately large load on our infrastructure</li>\r\n                <li>Uploading invalid data, viruses, worms, or other software agents through the website</li>\r\n                <li>Collecting or harvesting any personally identifiable information, including account names, from the website</li>\r\n                <li>Using the website for any commercial solicitation purposes</li>\r\n                <li>Impersonating another person or otherwise misrepresenting your affiliation with a person or entity, conducting fraud, hiding or attempting to hide your identity</li>\r\n            </ul>\r\n        </section>\r\n        <section>\r\n            <h2>Intellectual Property</h2>\r\n            <p>All content and materials on the website, including but not limited to text, graphics, logos, icons, images, audio clips, digital downloads, data compilations, and software, are the property of Flipkart Clone or its content suppliers and are protected by international copyright laws. The compilation of all content on this site is the exclusive property of Flipkart Clone and protected by international copyright laws. All software used on this site is the property of Flipkart Clone or its software suppliers and protected by international copyright laws.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Termination</h2>\r\n            <p>We may terminate or suspend your account and bar access to the Service immediately, without prior notice or liability, under our sole discretion, for any reason whatsoever and without limitation, including but not limited to a breach of the Terms.</p>\r\n            <p>If you wish to terminate your account, you may simply discontinue using the Service. All provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity, and limitations of liability.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Disclaimer of Warranties</h2>\r\n            <p>The Service is provided on an \"AS IS\" and \"AS AVAILABLE\" basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement, or course of performance.</p>\r\n            <p>Flipkart Clone, its subsidiaries, affiliates, and its licensors do not warrant that a) the Service will function uninterrupted, secure, or available at any particular time or location; b) any errors or defects will be corrected; c) the Service is free of viruses or other harmful components; or d) the results of using the Service will meet your requirements.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Limitation of Liability</h2>\r\n            <p>In no event shall Flipkart Clone, nor its directors, employees, partners, agents, suppliers, or affiliates, be liable for any indirect, incidental, special, consequential, or punitive damages, including without limitation, loss of profits, data, use, goodwill, or other intangible losses, resulting from (i) your access to or use of or inability to access or use the Service; (ii) any conduct or content of any third party on the Service; (iii) any content obtained from the Service; and (iv) unauthorized access, use, or alteration of your transmissions or content, whether based on warranty, contract, tort (including negligence), or any other legal theory, whether or not we have been informed of the possibility of such damage, and even if a remedy set forth herein is found to have failed of its essential purpose.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Governing Law</h2>\r\n            <p>These Terms shall be governed and construed in accordance with the laws of [Your Country], without regard to its conflict of law provisions.</p>\r\n            <p>Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have had between us regarding the Service.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Changes to These Terms</h2>\r\n            <p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material, we will try to provide at least 30 days' notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p>\r\n            <p>By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, you are no longer authorized to use the Service.</p>\r\n        </section>\r\n        <section>\r\n            <h2>Contact Us</h2>\r\n            <p>If you have any questions about these Terms, please contact us at:</p>\r\n            <p>Email: support@flipkartclone.com</p>\r\n            <p>Phone: +1 234 567 890</p>\r\n            <p>Address: 1234 Clone Street, Clone City, CL 56789</p>\r\n        </section>\r\n    </main>\r\n    <footer>\r\n        <p>&copy; 2024 Flipkart Clone. All rights reserved.</p>\r\n    </footer>\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "pages/terms/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    margin: 0;\n    padding: 0;\n    background-color: #f4f4f4;\n}\n\nheader {\n    background-color: #2874f0;\n    color: white;\n    padding: 1rem 0;\n    text-align: center;\n}\n\nh1 {\n    margin: 0;\n}\n\nmain {\n    max-width: 800px;\n    margin: 2rem auto;\n    padding: 1rem;\n    background-color: white;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0,0,0,0.1);\n}\n\nsection {\n    margin-bottom: 2rem;\n}\n\nh2 {\n    color: #2874f0;\n}\n\nh3 {\n    color: #2b2b2b;\n    margin-bottom: 0.5rem;\n}\n\nul {\n    list-style-type: disc;\n    margin: 0;\n    padding-left: 1.5rem;\n}\n\nfooter {\n    text-align: center;\n    padding: 1rem 0;\n    background-color: #2874f0;\n    color: white;\n    position: fixed;\n    width: 100%;\n    bottom: 0;\n    height: 1.5rem;\n}\n\na {\n    color: #2874f0;\n    text-decoration: none;\n}\n\na:hover {\n    text-decoration: underline;\n}\n"
  },
  {
    "path": "pages/terms/terms.js",
    "content": "let terms=\r\n`\r\n<pre>\r\nFlipkart Terms of Use\r\n\r\nThis document is an electronic record in terms of Information Technology Act, 2000 and rules there under as applicable and the amended provisions pertaining to electronic records in various statutes as amended by the Information Technology Act, 2000. This electronic record is generated by a computer system and does not require any physical or digital signatures.\r\n\r\nThis document is published in accordance with the provisions of Rule 3 (1) of the Information Technology (Intermediaries guidelines) Rules, 2011 that require publishing the rules and regulations, privacy policy and Terms of Use for access or usage of domain name [www.flipkart.com] (“Website”), including the related mobile site and mobile application (hereinafter referred to as “Platform”)\r\n\r\nThe Platform is owned by Flipkart Internet Private Limited, a company incorporated under the Companies Act, 1956 with its registered office at Buildings Alyssa, Begonia & Clover, Embassy Tech Village, Outer Ring Road, Devarabeesanahalli Village, Bengaluru – 560103, Karnataka, India and its branch offices at 2nd Floor, Block F (Flora), Embassy Tech Village, Outer Ring Road, Devarabeesanahalli Village, Bengaluru-560103, Karnataka, India and; 447/C, 12th Main, 4th Block, Koramangala, Bengaluru-560034, Karnataka, India (hereinafter referred to as \"Flipkart\").\r\n\r\nYour use of the Platform and services and tools are governed by the following terms and conditions (\"Terms of Use\") as applicable to the Platform including the applicable policies which are incorporated herein by way of reference. If You transact on the Platform, You shall be subject to the policies that are applicable to the Platform for such transaction. By mere use of the Platform, You shall be contracting with Flipkart Internet Private Limited and these terms and conditions including the policies constitute Your binding obligations, with Flipkart.\r\n\r\nFor the purpose of these Terms of Use, wherever the context so requires \"You\" or \"User\" shall mean any natural or legal person who has agreed to become a buyer on the Platform by providing Registration Data while registering on the Platform as Registered User using the computer systems. Flipkart allows the User to surf the Platform or making purchases without registering on the Platform. The term \"We\", \"Us\", \"Our\" shall mean Flipkart Internet Private Limited.\r\n\r\nACCESSING, BROWSING OR OTHERWISE USING THE SITE INDICATES YOUR AGREEMENT TO ALL THE TERMS AND CONDITIONS UNDER THESE TERMS OF USE, SO PLEASE READ THE TERMS OF USE CAREFULLY BEFORE PROCEEDING. By impliedly or expressly accepting these Terms of Use, You also accept and agree to be bound by Flipkart Policies ((including but not limited to Privacy Policy available at Privacy) as amended from time to time.\r\n\r\nMembership Eligibility\r\n\r\nTransaction on the Platform is available only to persons who can form legally binding contracts under Indian Contract Act, 1872. Persons who are \"incompetent to contract\" within the meaning of the Indian Contract Act, 1872 including un-discharged insolvents etc. are not eligible to use the Platform. If you are a minor i.e. under the age of 18 years, you may use the Platform or access content on the Platform only under the supervision and prior consent/ permission of a parent or legal guardian.\r\n\r\nAs a minor if you wish to transact on the Platform, such transaction on the Platform may be made by your legal guardian or parents. Flipkart reserves the right to terminate your membership and / or refuse to provide you with access to the Platform if it is brought to Flipkart's notice or if it is discovered that You are under the age of 18 years and transacting on the Platform.\r\n\r\nYour Account and Registration Obligations\r\n\r\nIf You use the Platform, You shall be responsible for maintaining the confidentiality of your Display Name and Password and You shall be responsible for all activities that occur under your Display Name and Password. You agree that if You provide any information that is untrue, inaccurate, not current or incomplete or We have reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, or not in accordance with the this Terms of Use, We shall have the right to indefinitely suspend or terminate or block access of your membership on the Platform and refuse to provide You with access to the Platform.\r\n\r\nYour mobile phone number and/or e-mail address is treated as Your primary identifier on the Platform. It is your responsibility to ensure that Your mobile phone number and your email address is up to date on the Platform at all times. You agree to notify Us promptly if your mobile phone number or e-mail address changes by updating the same on the Platform through a onetime password verification.\r\n\r\nYou agree that Flipkart shall not be liable or responsible for the activities or consequences of use or misuse of any information that occurs under your Account in cases, including, where You have failed to update Your revised mobile phone number and/or e-mail address on the Website Platform.\r\n\r\nIf You share or allow others to have access to Your account on the Platform (“Account”), by creating separate profiles under Your Account, or otherwise, they will be able to view and access Your Account information. You shall be solely liable and responsible for all the activities undertaken under Your Account, and any consequences there from.\r\n\r\nYou must maintain confidentiality of the account information and for all the activities that occur under Your account. You must not share your login details, ie, username and password of Your account with any other person, else it would be considered breach of this Terms of Use.\r\n\r\nYou agree to: (a) ensure that You successfully log out from Your account at the end of each session; and (b) immediately notify Flipkart of any unauthorized use of Your account. If there is reason to believe that there is likely to be a breach of security or misuse of Your account, We may request You to change the password or we may suspend Your account without any liability to Flipkart, for such period of time as we deem appropriate in the circumstances. We shall not be liable for any loss or damage arising from Your failure to comply with this provision.\r\n\r\nYou will have access to other apps owned by Flipkart group companies through the same login username and password. You agree to have single login access to all the apps owned by Flipkart group companies.\r\n\r\nCommunications\r\n\r\nWhen You use the Platform or send emails or other data, information or communication to us, You agree and understand that You are communicating with Us through electronic records and You consent to receive communications via electronic records from Us periodically and as and when required. We may communicate with you by email or by such other mode of communication, electronic or otherwise.\r\n\r\nPlatform for Transaction and Communication\r\n\r\nThe Platform enables the Buyer and Seller to transact on the Platform. . Flipkart is not and cannot be a party to or control in any manner any transaction between the Platform's Users.\r\n\r\nHenceforward:\r\n\r\nAll commercial/contractual terms are offered by and agreed to between Buyers and Sellers alone. The commercial/contractual terms include without limitation price, shipping costs, payment methods, payment terms, date, period and mode of delivery, warranties related to products and services and after sales services related to products and services. Flipkart does not have any control or does not determine or advise or in any way involve itself in the offering or acceptance of such commercial/contractual terms between the Buyers and Sellers. All discounts, offers (including exchange offers) are by the Seller/Brand and not by Flipkart.\r\nPlacement of order by a Buyer with Seller on the Platform is an offer to buy the product(s) in by the Buyer to the Seller and it shall not be construed as Seller's acceptance of Buyer's offer to buy the product(s) ordered. The Seller retains the right to cancel any such order placed by the Buyer, at its sole discretion and the Buyer shall be intimated of the same by way of an email/SMS. Any transaction price paid by Buyer in case of such cancellation by Seller, shall be refunded to the Buyer. Further, the Seller may cancel an order wherein the quantities exceed the typical individual consumption. This applies both to the number of products ordered within a single order and the placing of several orders for the same product where the individual orders comprise a quantity that exceeds the typical individual consumption. What comprises a typical individual's consumption quantity limit shall be based on various factors and at the sole discretion of the Seller and may vary from individual to individual.\r\nFlipkart does not make any representation or Warranty as to specifics (such as quality, value, salability, etc) of the products or services proposed to be sold or offered to be sold or purchased on the Platform. Flipkart does not implicitly or explicitly support or endorse the sale or purchase of any products or services on the Platform. Flipkart accepts no liability for any errors or omissions, whether on behalf of itself or third parties.\r\nFlipkart is not responsible for any non-performance or breach of any contract entered into between Buyers and Sellers. Flipkart cannot and does not guarantee that the concerned Buyers and/or Sellers will perform any transaction concluded on the Platform. Flipkart shall not and is not required to mediate or resolve any dispute or disagreement between Buyers and Sellers.\r\nFlipkart does not make any representation or warranty as to the item-specifics (such as legal title, creditworthiness, identity, etc) of any of its Users. You are advised to independently verify the bona fides of any particular User that You choose to deal with on the Platform and use Your best judgment in that behalf.\r\nFlipkart does not at any point of time during any transaction between Buyer and Seller on the Platform come into or take possession of any of the products or services offered by Seller nor does it at any point gain title to or have any rights or claims over the products or services offered by Seller to Buyer.\r\nAt no time shall Flipkart hold any right, title or interest over the products nor shall Flipkart have any obligations or liabilities in respect of such contract entered into between Buyers and Sellers. Flipkart is not responsible for unsatisfactory or delayed performance of services or damages or delays as a result of products which are out of stock, unavailable or back ordered.\r\nThe Platform is only a platform that can be utilized by Users to reach a larger base to buy and sell products or services. Flipkart is only providing a platform for communication and it is agreed that the contract for sale of any of the products or services shall be a strictly bipartite contract between the Seller and the Buyer.\r\nAt no time shall Flipkart hold any right, title or interest over the products nor shall Flipkart have any obligations or liabilities in respect of such contract.\r\n\r\nFlipkart is not responsible for unsatisfactory or delayed performance of services or damages or delays as a result of products which are out of stock, unavailable or back ordered.\r\n\r\nSelect products offered by sellers may be eligible for business purchases on the Platform.\r\n\r\nUpon Your purchase of product(s) eligible for business purchases, You may be able to avail the benefits of GST input tax credit. Accordingly, at your request, an invoice containing the GSTIN as provided by You (\"Tax Invoice\") shall be issued to You by the Seller(s) selling such products.\r\n\r\nGST invoice will have, inter alia, the following details printed on it: -GSTIN associated with your registered business, as provided by you\r\nEntity name of your registered business, as provided by you\r\nNot all products are eligible for business purchases on the Platform and the same is solely at the discretion of the Sellers. You will be able to view the eligibility of Tax Invoice on the product page on the Platform.\r\nPurchases on the Platform must only be for end consumption. Users must not use products purchased on the Platform for any commercial, promotional, resale or further distribution purposes.\r\nFor seamless availment of input tax credit, kindly mention the delivery address as the address which is mentioned as the registered place of business as per the records of GST authority. Please note that availment of input tax credit is subject to provisions of GST Act and rules.\r\nThe delivery and billing addresses will be required to be the same, please note that input tax credit will be denied by GST authority if the delivery address and GSTIN in the GST invoice are of different states.\r\nIf GSTIN and/or business entity details are not provided by You, it will be presumed that it is a personal purchase and not a business purchase.\r\nFlipkart is not responsible to verify the correctness of the GSTIN and/or entity name provided by You and You shall be entirely responsible to provide the accurate details.\r\nFlipkart and Seller shall not entertain any request for any revision in the GST Invoice. Flipkart and Seller shall not be liable for Your default including for reasons associated with details provided by You.\r\nFlipkart will not be liable in case You are not able to avail input tax credit or if input tax credit is denied to You for any reason whatsoever.\r\nYou shall be solely liable for all compliances required under applicable laws.\r\nYou agree to indemnify and hold Flipkart and Seller harmless from all losses, claims, costs, expenses, suits, proceedings, or any other liability including any third-party claims (including any penalties imposed by governmental authorities) arising out of or in connection with (1) the GSTIN and/or entity name provided by you or the input tax credit claimed by you or your use or misuse of the GST Invoice and (2) your non-compliance with the applicable laws or (3) your use or misuse of any third-party’s details including GSTIN.\r\nFlipkart has the right to not allow business purchases on the Platform to You if a fraudulent activity is identified.\r\nSeller reserves the right to not issue Tax Invoice or issue a credit note against an already issued Tax Invoice to cancel the transaction, if any fraudulent activity is identified.\r\nYou shall independently agree upon the manner and terms and conditions of delivery, payment, insurance etc. with the seller(s) that You transact with.\r\nDisclaimer: Pricing on any product(s) as is reflected on the Platform may due to some technical issue, typographical error or product information published by seller may be incorrectly reflected and in such an event seller may cancel such your order(s).\r\n\r\nYou release and indemnify Flipkart and/or any of its officers and representatives from any cost, damage, liability or other consequence of any of the actions of the Users of the Platform and specifically waive any claims that you may have in this behalf under any applicable law. Notwithstanding its reasonable efforts in that behalf, Flipkart cannot take responsibility or control the information provided by other Users which is made available on the Platform. You may find other User's information to be offensive, harmful, inconsistent, inaccurate, or deceptive. Please use caution and practice safe trading when using the Platform.\r\nPlease note that there could be risks in dealing with underage persons or people acting under false pretense.\r\n\r\nCharges\r\n\r\nFlipkart may charge a nominal fee for browsing and buying on the Platform. Flipkart reserves the right to change its Fee Policy from time to time. In particular, Flipkart may at its sole discretion introduce new services/fees and modify some or all of the existing services/fees offered on the Platform. In such an event, Flipkart reserves the right to introduce fees for the new services offered or amend/introduce fees for existing/new services, as the case may be. Changes to the Fee Policy shall be posted on the Platform and such changes shall automatically become effective immediately after they are posted on the Platform. Unless otherwise stated, all fees shall be quoted in Indian Rupees. You shall be solely responsible for compliance of all applicable laws including those in India for making payments to Flipkart Internet Private Limited.\r\n\r\nUse of the Platform\r\n\r\nYou agree, undertake and confirm that Your use of Platform shall be strictly governed by the following binding principles:\r\n\r\nYou shall not host, display, upload, modify, publish, transmit, update or share any information which:\r\n(a) belongs to another person and to which You do not have any right to;\r\n\r\n(b) is grossly harmful, harassing, blasphemous, defamatory, obscene, pornographic, paedophilic, libellous, invasive of another's privacy, hateful, or racially, ethnically objectionable, disparaging, relating or encouraging money laundering or gambling, or otherwise unlawful in any manner whatever; or unlawfully threatening or unlawfully harassing including but not limited to \"indecent representation of women\" within the meaning of the Indecent Representation of Women (Prohibition) Act, 1986;\r\n\r\n(c) is misleading in any way;\r\n\r\n(d) is patently offensive to the online community, such as sexually explicit content, or content that promotes obscenity, paedophilia, racism, bigotry, hatred or physical harm of any kind against any group or individual;\r\n\r\n(e) harasses or advocates harassment of another person;\r\n\r\n(f) involves the transmission of \"junk mail\", \"chain letters\", or unsolicited mass mailing or \"spamming\";\r\n\r\n(g) promotes illegal activities or conduct that is abusive, threatening, obscene, defamatory or libellous;\r\n\r\n(h) infringes upon or violates any third party's rights [including, but not limited to, intellectual property rights, rights of privacy (including without limitation unauthorized disclosure of a person's name, email address, physical address or phone number) or rights of publicity];\r\n\r\n(i) promotes an illegal or unauthorized copy of another person's copyrighted work (see \"Copyright complaint\" below for instructions on how to lodge a complaint about uploaded copyrighted material), such as providing pirated computer programs or links to them, providing information to circumvent manufacture-installed copy-protect devices;\r\n\r\n(j) contains restricted or password-only access pages, or hidden pages or images (those not linked to or from another accessible page);\r\n\r\n(k) provides material that exploits people in a sexual, violent or otherwise inappropriate manner or solicits personal information from anyone;\r\n\r\n(l) provides instructional information about illegal activities such as making or buying illegal weapons, violating someone's privacy, or providing or creating computer viruses;\r\n\r\n(m) contains video, photographs, or images of another person (with a minor or an adult).\r\n\r\n(n) tries to gain unauthorized access or exceeds the scope of authorized access to the Platform or to profiles, blogs, communities, account information, bulletins, friend request, or other areas of the Platform or solicits passwords or personal identifying information for commercial or unlawful purposes from other users;\r\n\r\n(o) engages in commercial activities and/or sales without Our prior written consent such as contests, sweepstakes, barter, advertising and pyramid schemes, or the buying or selling of \"virtual\" products related to the Platform. Throughout this Terms of Use, Flipkart's prior written consent means a communication coming from Flipkart's Legal Department, specifically in response to Your request, and specifically addressing the activity or conduct for which You seek authorization;\r\n\r\n(p) solicits gambling or engages in any gambling activity which We, in Our sole discretion, believes is or could be construed as being illegal;\r\n\r\n(q) interferes with another USER's use and enjoyment of the Platform or any other individual's User and enjoyment of similar services;\r\n\r\n(r) refers to any Platform or URL that, in Our sole discretion, contains material that is inappropriate for the Platform or any other Platform, contains content that would be prohibited or violates the letter or spirit of these Terms of Use.\r\n\r\n(s) harm minors in any way;\r\n\r\n(t) infringes any patent, trademark, copyright or other proprietary rights or third party's trade secrets or rights of publicity or privacy or shall not be fraudulent or involve the sale of counterfeit or stolen products;\r\n\r\n(u) violates any law for the time being in force;\r\n\r\n(v) deceives or misleads the addressee/ users about the origin of such messages or communicates any information which is grossly offensive or menacing in nature;\r\n\r\n(w) impersonate another person;\r\n\r\n(x) contains software viruses or any other computer code, files or programs designed to interrupt, destroy or limit the functionality of any computer resource; or contains any trojan horses, worms, time bombs, cancelbots, easter eggs or other computer programming routines that may damage, detrimentally interfere with, diminish value of, surreptitiously intercept or expropriate any system, data or personal information;\r\n\r\n(y) threatens the unity, integrity, defence, security or sovereignty of India, friendly relations with foreign states, or public order or causes incitement to the commission of any cognizable offence or prevents investigation of any offence or is insulting any other nation.\r\n\r\n(z) shall not be false, inaccurate or misleading;\r\n\r\n(aa) shall not, directly or indirectly, offer, attempt to offer, trade or attempt to trade in any item, the dealing of which is prohibited or restricted in any manner under the provisions of any applicable law, rule, regulation or guideline for the time being in force.\r\n\r\n(ab) shall not create liability for Us or cause Us to lose (in whole or in part) the services of Our internet service provider (\"ISPs\") or other suppliers;\r\n\r\nYou shall not use any \"deep-link\", \"page-scrape\", \"robot\", \"spider\" or other automatic device, program, algorithm or methodology, or any similar or equivalent manual process, to access, acquire, copy or monitor any portion of the Platform or any Content, or in any way reproduce or circumvent the navigational structure or presentation of the Platform or any Content, to obtain or attempt to obtain any materials, documents or information through any means not purposely made available through the Platform. We reserve Our right to bar any such activity.\r\nYou shall not attempt to gain unauthorized access to any portion or feature of the Platform, or any other systems or networks connected to the Platform or to any server, computer, network, or to any of the services offered on or through the Platform, by hacking, password \"mining\" or any other illegitimate means.\r\nYou shall not probe, scan or test the vulnerability of the Platform or any network connected to the Platform nor breach the security or authentication measures on the Platform or any network connected to the Platform. You may not reverse look-up, trace or seek to trace any information on any other User of or visitor to Platform, or any other customer, including any account on the Platform not owned by You, to its source, or exploit the Platform or any service or information made available or offered by or through the Platform, in any way where the purpose is to reveal any information, including but not limited to personal identification or information, other than Your own information, as provided for by the Platform.\r\nYou shall not make any negative, denigrating or defamatory statement(s) or comment(s) about Us or the brand name or domain name used by Us including the terms Flipkart, Flipcart, flipkart.com, or otherwise engage in any conduct or action that might tarnish the image or reputation, of Flipkart or sellers on platform or otherwise tarnish or dilute any Flipkart's trade or service marks, trade name and/or goodwill associated with such trade or service marks, trade name as may be owned or used by us. You agree that You will not take any action that imposes an unreasonable or disproportionately large load on the infrastructure of the Platform or Flipkart's systems or networks, or any systems or networks connected to Flipkart.\r\nYou agree not to use any device, software or routine to interfere or attempt to interfere with the proper working of the Platform or any transaction being conducted on the Platform, or with any other person's use of the Platform.\r\nYou may not forge headers or otherwise manipulate identifiers in order to disguise the origin of any message or transmittal You send to Us on or through the Platform or any service offered on or through the Platform. You may not pretend that You are, or that You represent, someone else, or impersonate any other individual or entity.\r\nYou may not use the Platform or any content for any purpose that is unlawful or prohibited by these Terms of Use, or to solicit the performance of any illegal activity or other activity which infringes the rights of Flipkart and / or others.\r\nYou shall at all times ensure full compliance with the applicable provisions of the Information Technology Act, 2000 and rules thereunder as applicable and as amended from time to time and also all applicable Domestic laws, rules and regulations (including the provisions of any applicable Exchange Control Laws or Regulations in Force) and International Laws, Foreign Exchange Laws, Statutes, Ordinances and Regulations (including, but not limited to Sales Tax/VAT, Income Tax, Octroi, Service Tax, Central Excise, Custom Duty, Local Levies) regarding Your use of Our service and Your listing, purchase, solicitation of offers to purchase, and sale of products or services. You shall not engage in any transaction in an item or service, which is prohibited by the provisions of any applicable law including exchange control laws or regulations for the time being in force.\r\nSolely to enable Us to use the information You supply Us with, so that we are not violating any rights You might have in Your Information, You agree to grant Us a non-exclusive, worldwide, perpetual, irrevocable, royalty-free, sub-licensable (through multiple tiers) right to exercise the copyright, publicity, database rights or any other rights You have in Your Information, in any media now known or not currently known, with respect to Your Information. We will only use Your information in accordance with the Terms of Use and Privacy Policy applicable to use of the Platform.\r\nFrom time to time, You shall be responsible for providing information relating to the products or services proposed to be sold by You. In this connection, You undertake that all such information shall be accurate in all respects. You shall not exaggerate or over emphasize the attributes of such products or services so as to mislead other Users in any manner.\r\nYou shall not engage in advertising to, or solicitation of, other Users of the Platform to buy or sell any products or services, including, but not limited to, products or services related to that being displayed on the Platform or related to us. You may not transmit any chain letters or unsolicited commercial or junk email to other Users via the Platform. It shall be a violation of these Terms of Use to use any information obtained from the Platform in order to harass, abuse, or harm another person, or in order to contact, advertise to, solicit, or sell to another person other than Us without Our prior explicit consent. In order to protect Our Users from such advertising or solicitation, We reserve the right to restrict the number of messages or emails which a user may send to other Users in any 24-hour period which We deems appropriate in its sole discretion. You understand that We have the right at all times to disclose any information (including the identity of the persons providing information or materials on the Platform) as necessary to satisfy any law, regulation or valid governmental request. This may include, without limitation, disclosure of the information in connection with investigation of alleged illegal activity or solicitation of illegal activity or in response to a lawful court order or subpoena. In addition, We can (and You hereby expressly authorize Us to) disclose any information about You to law enforcement or other government officials, as we, in Our sole discretion, believe necessary or appropriate in connection with the investigation and/or resolution of possible crimes, especially those that may involve personal injury.\r\nWe reserve the right, but has no obligation, to monitor the materials posted on the Platform. Flipkart shall have the right to remove or edit any content that in its sole discretion violates, or is alleged to violate, any applicable law or either the spirit or letter of these Terms of Use. Notwithstanding this right, YOU REMAIN SOLELY RESPONSIBLE FOR THE CONTENT OF THE MATERIALS YOU POST ON THE PLATFORM AND IN YOUR PRIVATE MESSAGES. Please be advised that such Content posted does not necessarily reflect Flipkart views. In no event shall Flipkart assume or have any responsibility or liability for any Content posted or for any claims, damages or losses resulting from use of Content and/or appearance of Content on the Platform. You hereby represent and warrant that You have all necessary rights in and to all Content which You provide and all information it contains and that such Content shall not infringe any proprietary or other rights of third parties or contain any libellous, tortious, or otherwise unlawful information.\r\n\r\nYour correspondence or business dealings with, or participation in promotions of, advertisers found on or through the Platform, including payment and delivery of related products or services, and any other terms, conditions, warranties or representations associated with such dealings, are solely between You and such advertiser. We shall not be responsible or liable for any loss or damage of any sort incurred as the result of any such dealings or as the result of the presence of such advertisers on the Platform.\r\nIt is possible that other users (including unauthorized users or \"hackers\") may post or transmit offensive or obscene materials on the Platform and that You may be involuntarily exposed to such offensive and obscene materials. It also is possible for others to obtain personal information about You due to your use of the Platform, and that the recipient may use such information to harass or injure You. We does not approve of such unauthorized uses, but by using the Platform You acknowledge and agree that We are not responsible for the use of any personal information that You publicly disclose or share with others on the Platform. Please carefully select the type of information that You publicly disclose or share with others on the Platform.\r\nFlipkart shall have all the rights to take necessary action and claim damages that may occur due to your involvement/participation in any way on your own or through group/s of people, intentionally or unintentionally in DoS/DDoS (Distributed Denial of Services).\r\nIf you choose to browse or transact on the Platform using the voice command-based shoppingfeature, you acknowledge that Flipkart and/or its affiliates will collect, store and use your voice inputs on this feature to customize your experience and provide additional functionality as well as to improve Flipkart’s and/or its affiliates’ products and services. Flipkart’s and/or its affiliates’ use of your voice data will be in accordance with the Flipkart Privacy Policy. You accept that your use of this feature is restricted to the territory of the Republic of India. This feature may not be accessible on certain devices and requires an internet connection. Flipkart reserves the right to change, enhance, suspend, or discontinue this feature, or any part of it, at any time without notice to you. Your continued use of this feature constitutes your acceptance of the terms related to this feature.\r\nYou acknowledge and agree that the Hindi, Telugu, Tamil, Kannada and Marathi, Bengali, Gujarati , Odia, Malayalam, Punjabi & Assamese translation features are made available on the Platform on a reasonable effort basis for convenience only, without any representation or warranties by Flipkart, express or implied, including the translations being error free, their accuracy, completeness or reliability. Under the translation feature, You will have the option to adding delivery addresses in the language selected by You out of the featured languages. Such delivery addresses shall be transliterated in English language for processing, handling and fulfilling Your orders on the Platform. Flipkart expressly disclaims any liability of any nature whatsoever arising from or related to the said translation/transliteration features on the Platform. Some features and sections on the Platform may not be translated in the language selected by You [Hindi, Telugu, Tamil, Kannada, Marathi, Bengali, Gujarati, Odia, Malayalam, Punjabi & Assamese language, as applicable], and the English version of the same will be the definitive version. In the event of any conflict or inconsistency between the translated terms and the English version available on the Platform, the English version on the Platform shall prevail. This feature may not be accessible on certain devices. Flipkart reserves the right to change, enhance, suspend, or discontinue this feature, or any part of it, at any time without notice to You.\r\nTerms & Conditions:\r\n\r\nFlipkart Foundation is a Section 8 company registered under the Companies Act 2013.\r\nThe amount received as donation will be donated to NGOs and similar charitable organizations working in the selected thematic areas. You can visit www.flipkartfoundation.org to know more about this.\r\nThe contribution, once made, will not be refunded.\r\nNo certificate under section 80G of the Income Tax Act, 1961 will be issued.\r\nBy proceeding to donate, you understand and confirm that this donation is not from any foreign source as defined under Foreign Contribution (Regulation) Act, 2010.\r\nFlipkart Foundation disclaims any and all liability and assumes no responsibility whatsoever for consequences resulting from any actions or inactions of the NGOs or charitable organizations.\r\nBy proceeding to donate the money, you consent and expressly waive any and all claims, rights of action and/or remedies (under law or otherwise) that you may have against any of the Flipkart Group entities arising out of or in connection with the aforesaid transaction.\r\nThe donation is being collected on behalf of the Flipkart Foundation and is disbursed to Flipkart Foundation. Flipkart Internet Pvt Ltd disclaims all liabilities and assumes no responsibility for consequences resulting from actions/ inactions of the Flipkart Foundation.\r\nFlipkart Internet Pvt. Ltd may share your Personal Identifiable Information which may include your name, phone number, etc with Flipkart Foundation.\r\nContents Posted on Platform\r\n\r\nAll text, graphics, user interfaces, visual interfaces, photographs, trademarks, logos, sounds, music and artwork (collectively, \"Content\"), is a third party user generated content and Flipkart has no control over such third party user generated content as Flipkart is merely an intermediary for the purposes of this Terms of Use.\r\n\r\nExcept as expressly provided in these Terms of Use, no part of the Platform and no Content may be copied, reproduced, republished, uploaded, posted, publicly displayed, encoded, translated, transmitted or distributed in any way (including \"mirroring\") to any other computer, server, Platform or other medium for publication or distribution or for any commercial enterprise, without Flipkart's express prior written consent.\r\n\r\nYou may use information on the products and services purposely made available on the Platform for downloading, provided that You: (1) do not remove any proprietary notice language in all copies of such documents, (2) use such information only for your personal, non-commercial informational purpose and do not copy or post such information on any networked computer or broadcast it in any media, (3) make no modifications to any such information, and (4) do not make any additional representations or warranties relating to such documents.\r\n\r\nYou shall be responsible for any notes, messages, emails, reviews, ratings, billboard postings, photos, drawings, profiles, opinions, ideas, images, videos, audio files or other materials or information posted or transmitted to the Platform (collectively, \"Content\"). Such Content will become Our property and You grant Us the worldwide, perpetual and transferable rights in such Content. We shall be entitled to, consistent with Our Privacy Policy as adopted in accordance with applicable law, use the Content or any of its elements for any type of use forever, including but not limited to promotional and advertising purposes and in any media whether now known or hereafter devised, including the creation of derivative works that may include the Content You provide. You agree that any Content You post may be used by us, consistent with Our Privacy Policy and Rules of Conduct on Site as mentioned herein, and You are not entitled to any payment or other compensation for such use.\r\n\r\nSOME CONTENT OFFERED ON THE PLATFORM MAY NOT BE SUITABLE FOR SOME VIEWERS AND THEREFORE VIEWER DISCRETION IS ADVISED. ALSO, SOME CONTENT OFFERED ON THE PLATFORM MAY NOT BE APPROPRIATE FOR VIEWERSHIP BY CHILDREN. PARENTS AND/OR LEGAL GUARDIANS ARE ADVISED TO EXERCISE DISCRETION BEFORE ALLOWING THEIR CHILDREN AND/OR WARDS TO ACCESS CONTENT ON THE PLATFORM.\r\n\r\nPrivacy\r\n\r\nWe view protection of Your privacy as a very important principle. We understand clearly that You and Your Personal Information is one of Our most important assets. We store and process Your Information including any sensitive financial information collected (as defined under the Information Technology Act, 2000), if any, on computers that may be protected by physical as well as reasonable technological security measures and procedures in accordance with Information Technology Act 2000 and Rules there under. Our current Privacy Policy is available at Privacy. if You object to Your Information being transferred or used in this way please do not use the Platform.\r\n\r\nWe may share personal information with our other corporate entities and affiliates. These entities and affiliates may market to you as a result of such sharing unless you explicitly opt-out.\r\n\r\nWe may disclose personal information to third parties. This disclosure may be required for us to provide you access to our Services, to comply with our legal obligations, to enforce our User Agreement, to facilitate our marketing and advertising activities, or to prevent, detect, mitigate, and investigate fraudulent or illegal activities related to our Services. We do not disclose your personal information to third parties for their marketing and advertising purposes without your explicit consent.\r\n\r\nWe may disclose personal information if required to do so by law or in the good faith belief that such disclosure is reasonably necessary to respond to subpoenas, court orders, or other legal process. We may disclose personal information to law enforcement offices, third party rights owners, or others in the good faith belief that such disclosure is reasonably necessary to: enforce our Terms or Privacy Policy; respond to claims that an advertisement, posting or other content violates the rights of a third party; or protect the rights, property or personal safety of our users or the general public.\r\n\r\nWe and our affiliates will share / sell some or all of your personal information with another business entity should we (or our assets) plan to merge with, or be acquired by that business entity, or re-organization, amalgamation, restructuring of business. Should such a transaction occur that other business entity (or the new combined entity) will be required to follow this privacy policy with respect to your personal information.\r\n\r\nDisclaimer of Warranties and Liability\r\n\r\nThis Platform, all the materials and products (including but not limited to software) and services, included on or otherwise made available to You through this site are provided on \"as is\" and \"as available\" basis without any representation or warranties, express or implied except otherwise specified in writing. Without prejudice to the forgoing paragraph, Flipkart does not warrant that:\r\n\r\nThis Platform will be constantly available, or available at all; or\r\n\r\nThe information on this Platform is complete, true, accurate or non-misleading.\r\n\r\nFlipkart will not be liable to You in any way or in relation to the Contents of, or use of, or otherwise in connection with, the Platform. Flipkart does not warrant that this site; information, Content, materials, product (including software) or services included on or otherwise made available to You through the Platform; their servers; or electronic communication sent from Us are free of viruses or other harmful components.\r\n\r\nNothing on Platform constitutes, or is meant to constitute, advice of any kind. All the Products sold on Platform are governed by different state laws and if Seller is unable to deliver such Products due to implications of different state laws, Seller will return or will give credit for the amount (if any) received in advance by Seller from the sale of such Product that could not be delivered to You.\r\n\r\nYou will be required to enter a valid phone number while placing an order on the Platform. By registering Your phone number with us, You consent to be contacted by Us via phone calls, SMS notifications, mobile applications and/or any other electronic mode of communication in case of any order or shipment or delivery related updates.\r\n\r\nServices\r\n\r\nPayment\r\n\r\nWhile availing any of the payment method/s available on the Platform, we will not be responsible or assume any liability, whatsoever in respect of any loss or damage arising directly or indirectly to You due to:\r\n\r\nLack of authorization for any transaction/s, or\r\nExceeding the preset limit mutually agreed by You and between \"Bank/s\", or\r\nAny payment issues arising out of the transaction, or\r\nDecline of transaction for any other reason/s\r\nAll payments made against the purchases/services on Platform by you shall be compulsorily in Indian Rupees acceptable in the Republic of India. Platform will not facilitate transaction with respect to any other form of currency with respect to the purchases made on Platform.\r\n\r\nBefore shipping / delivering your order to you, Seller may request you to provide supporting documents (including but not limited to Govt. issued ID and address proof) to establish the ownership of the payment instrument used by you for your purchase. This is done in the interest of providing a safe online shopping environment to Our Users.\r\n\r\nFurther:\r\n\r\nTransactions, Transaction Price and all commercial terms such as Delivery, Dispatch of products and/or services are as per principal to principal bipartite contractual obligations between Buyer and Seller and payment facility is merely used by the Buyer and Seller to facilitate the completion of the Transaction. Use of the payment facility shall not render Flipkart liable or responsible for the non-delivery, non-receipt, non-payment, damage, breach of representations and warranties, non-provision of after sales or warranty services or fraud as regards the products and /or services listed on Flipkart's Platform.\r\nYou have specifically authorized Flipkart or its service providers to collect, process, facilitate and remit payments and / or the Transaction Price electronically or through Cash on Delivery to and from other Users in respect of transactions through Payment Facility. Your relationship with Flipkart is on a principal to principal basis and by accepting these Terms of Use you agree that Flipkart is an independent contractor for all purposes, and does not have control of or liability for the products or services that are listed on Flipkart's Platform that are paid for by using the Payment Facility. Flipkart does not guarantee the identity of any User nor does it ensure that a Buyer or a Seller will complete a transaction.\r\nYou understand, accept and agree that the payment facility provided by Flipkart is neither a banking nor financial service but is merely a facilitator providing an electronic, automated online electronic payment, receiving payment through Cash-on delivery, collection and remittance facility for the Transactions on the Flipkart Platform using the existing authorized banking infrastructure and Credit Card payment gateway networks. Further, by providing Payment Facility, Flipkart is neither acting as trustees nor acting in a fiduciary capacity with respect to the Transaction or the Transaction Price.\r\nPayment Facility for Buyers:\r\n\r\nYou, as a Buyer, understand that upon initiating a Transaction You are entering into a legally binding and enforceable contract with the Seller to purchase the products and /or services from the Seller using the Payment Facility, and You shall pay the Transaction Price through Your Issuing Bank to the Seller using Payment Facility.\r\nYou, as a Buyer, may agree with the Seller through electronic communication and electronic records and using the automated features as may be provided by Payment Facility on any extension / increase in the Dispatch and/or Delivery time and the Transaction shall stand amended to such extent. Any such extension / increase of Dispatch / Delivery time or subsequent novation / variation of the Transaction should be in compliance with Payment Facility Rules and Policies.\r\nYou, as a Buyer, shall electronically notify Payment Facility using the appropriate Flipkart Platform features immediately upon Delivery or non- Delivery within the time period as provided in Policies. Non notification by You of Delivery or non- Delivery within the time period specified in the Policies shall be construed as a deemed Delivery in respect of that Transaction. In case of Cash- On Delivery transactions, Buyer is not required to confirm the receipt of products or services.\r\nYou, as a Buyer, shall be entitled to claim a refund of the Transaction Price (as Your sole and exclusive remedy) in case You do not receive the Delivery within the time period agreed in the Transaction or within the time period as provided in the Policies, whichever is earlier. In case you do not raise a refund claim using Platform features within the stipulated time than this would make You ineligible for a refund.\r\nYou, as a Buyer, understand that the Payment Facility may not be available in full or in part for certain category of products and/or services and/or Transactions as mentioned in the Policies and hence You may not be entitled to a refund in respect of the Transactions for those products and /or services\r\nExcept for Cash On Delivery transaction, refund, if any, shall be made at the same Issuing Bank from where Transaction Price was received, or through any other method available on the Platform, as chosen by You.\r\nFor Cash On Delivery transactions, refunds, if any, will be made via electronic payment transfers.\r\nRefund shall be made in Indian Rupees only and shall be equivalent to the Transaction Price received in Indian Rupees.\r\nFor electronics payments, refund shall be made through payment facility using NEFT / RTGS or any other online banking / electronic funds transfer system approved by Reserve Bank India (RBI).\r\nRefunds may be supported for select banks. Where a bank is not supported for processing refunds, You will be required to share alternate bank account details with us for processing the refund.\r\nRefund shall be conditional and shall be with recourse available to Flipkart in case of any misuse by Buyer.\r\nWe may also request you for additional documents for verification.\r\nRefund shall be subject to Buyer complying with Policies.\r\nFlipkart reserves the right to impose limits on the number of Transactions or Transaction Price which Flipkart may receive from on an individual Valid Credit/Debit/ Cash Card / Valid Bank Account/ and such other infrastructure or any other financial instrument directly or indirectly through payment aggregator or through any such facility authorized by Reserve Bank of India to provide enabling support facility for collection and remittance of payment or by an individual Buyer during any time period, and reserves the right to refuse to process Transactions exceeding such limit.\r\nFlipkart reserves the right to refuse to process Transactions by Buyers with a prior history of questionable charges including without limitation breach of any agreements by Buyer with Flipkart or breach/violation of any law or any charges imposed by Issuing Bank or breach of any policy.\r\nFlipkart may do such checks as it deems fit before approving the receipt of/Buyers commitment to pay (for Cash On Delivery transactions) Transaction Price from the Buyer for security or other reasons at the discretion of Flipkart. As a result of such check if Flipkart is not satisfied with the creditability of the Buyer or genuineness of the Transaction or other reasons at its sole discretion, Flipkart shall have the right to reject the receipt of / Buyers commitment to pay Transaction Price. For avoidance of doubt, it is hereby clarified that the ‘Cash on Delivery’ feature for payment, may be disabled for certain account users, at the sole discretion of Flipkart.\r\nFlipkart may delay notifying the payment confirmation i.e. informing Seller to dispatch, if Flipkart deems suspicious or for Buyers conducting high transaction volumes to ensure safety of the Transaction and Transaction Price. In addition, Flipkart may hold Transaction Price and Flipkart may not inform Seller to Dispatch or remit Transaction Price to law enforcement officials (instead of refunding the same to Buyer) at the request of law enforcement officials or in the event the Buyer is engaged in any form of illegal activity.\r\nThe Buyer and Seller acknowledge that Flipkart will not be liable for any damages, interests or claims etc. resulting from not processing a Transaction/Transaction Price or any delay in processing a Transaction/Transaction Price which is beyond control of Flipkart.\r\nCompliance with Laws:\r\n\r\nAs required by applicable law, if the Customer makes a purchase of an amount equal to or above INR 2, 00, 000.00/- the Customer will be required to upload a scanned copy of his/her PAN card on the Platform, within 4 days of making the purchase, failing which, the purchase made by the Customer will be cancelled. The requirement to submit the PAN card arises only once and if it has been submitted already by the Customer, it need not be submitted again. The order of the Customer shall stand cancelled if there is a discrepancy between the name of the Customer and the name on the PAN Card.\r\nBuyer and Seller shall comply with all the applicable laws (including without limitation Foreign Exchange Management Act, 1999 and the rules made and notifications issued there under and the Exchange Control Manual as may be issued by Reserve Bank of India from time to time, Customs Act, Information and Technology Act, 2000 as amended by the Information Technology (Amendment) Act 2008, Prevention of Money Laundering Act, 2002 and the rules made there under, Foreign Contribution Regulation Act, 1976 and the rules made there under, Income Tax Act, 1961 and the rules made there under, Export Import Policy of government of India) applicable to them respectively for using Payment Facility and Flipkart Platform.\r\nBuyer's arrangement with Issuing Bank:\r\n\r\nAll valid Credit / Debit/ Cash Card/ and other payment instruments are processed using a Credit Card payment gateway or appropriate payment system infrastructure and the same will also be governed by the terms and conditions agreed between the Buyer and the respective Issuing Bank and payment instrument issuing company.\r\nAll Online Bank Transfers from Valid Bank Accounts are processed using the gateway provided by the respective Issuing Bank which support Payment Facility to provide these services to the Users. All such Online Bank Transfers on Payment Facility are also governed by the terms and conditions agreed to between Buyer and the respective Issuing Bank.\r\nCustomer Conduct\r\n\r\nTerms:\r\n\r\nA) Flipkart fosters diversity, inclusion, equity and protect the individuals who are engaged with us as delivery partners from any discrimination on grounds such as race, social origin, caste, ethnicity, nationality, gender, gender identity and expression, sexual orientation, disability, religion or belief, age or any other grounds.\r\n\r\nB) Flipkart prohibits discrimination against delivery partners under any circumstances and on any grounds including on the basis of race, religion, caste, place of origin, disability, sexual orientation, sex, marital status, gender identity, age, or any other characteristics that may be protected under applicable law.\r\n\r\nC) We reserve the right to withhold access to the Platform and otherwise limit Your access to the Platform at Our absolute discretion if You behave towards any delivery partner working with Flipkart in a manner which is discourteous, disrespectful, or abusive, or which otherwise may be deemed to be inappropriate or unlawful.\r\n\r\nD) You are expected to treat all delivery partners with courtesy and respect.\r\n\r\nFlipkart's Replacement Guarantee\r\n\r\nFlipkart's Replacement Guarantee seeks to assist Buyers who have been defrauded by qualified sellers on the Platform. The return policy period (Flipkart's Replacement Guarantee) depends on the product category and the seller. Kindly click here to know the return policy period applicable for different categories. If at the time of delivery and/or within the applicable return policy period, if any defect is found, then the buyer of the product/s can ask for replacement of the product/s from the seller subject to the following terms and conditions\r\n\r\nNotify seller of any defects in the product/s at the time of delivery of the product/s and/or within the applicable return policy period and the same product/s will be replaced in return of the defective product/s.\r\nReplacement can be for the entire product/s or part/s of the product subject to availability of the same with the seller.\r\nFollowing products shall not be eligible for return or replacement:\r\n\r\na. Damages due to misuse of product;\r\n\r\nb. Incidental damage due to malfunctioning of product;\r\n\r\nc. Any consumable item which has been used/installed;\r\n\r\nd. Products with tampered or missing serial/UPC numbers;\r\n\r\ne. Digital products/services;\r\n\r\nf. Any damage/defect which are not covered under the manufacturer's warranty\r\n\r\ng. Any product that is returned without all original packaging and accessories, including the box, manufacturer's packaging if any, and all other items originally included with the product/s delivered;\r\n\r\nh. Jewellay which is 'made to order' on customer's request\r\n\r\nOn Clothing and Footwear, qualified sellers accept 30 day exchange subject to the following conditions:\r\n\r\nClothes and footwear are not used (other than for trial), altered, washed, soiled or damaged in any way.\r\n\r\nOriginal tags and packaging should be intact. For items that come in branded packaging, the box should be undamaged.\r\n\r\nReturns are not applicable for 'Made to order' jewellary, innerwear, lingerie, socks, clothing freebies, etc.\r\n\r\nDamaged or defective or 'Not as described' products in Lifestyle category (includes clothing, footwear, etc.) are meanwhile covered by the 30 Day Replacement Guarantee. Kindly click here to know the return policy period (Replacement Guarantee) applicable for different categories.\r\n\r\nIf Flipkart has any suspicion or knowledge that any of its buyers and sellers are involved in any activity that is intended to provide claims or information that is false or not genuine, Flipkart may also, while reserving its rights to initiate civil and/or criminal proceedings against such member buyers and sellers, at its sole discretion, suspend, block, restrict, cancel the Display Name of such buyers and sellers and/or disqualify that user and any related users from availing protection through this program. Customers who have been blocked for any suspicious or fraudulent activity on Flipkart will not be allowed to return their products.\r\n\r\nFlipkart reserves its right to initiate civil and/or criminal proceedings against a user who, files a invalid and/or false claims or provides false, incomplete, or misleading information. In addition to the legal proceedings as aforesaid, Flipkart may at its sole discretion suspend, block, restrict, cancel the Display Name [and its related Display Names] of such user and/or disqualify that user and any related users from availing protection through this program. Any person who, knowingly and with intent to injure, defraud or deceive, files a Fraudulent Complaint containing false, incomplete, or misleading information may be guilty of a criminal offence and will be prosecuted to the fullest extent of the law.\r\n\r\nExchange Offers:\r\n\r\nBy participating in the exchange I confirm that I am the sole and absolute owner and/or user of the product mentioned above (device).\r\n\r\nI confirm that device which I am exchanging under the buyback program is genuine and is not counterfeit, free from any and all encumbrances, liens, attachments, disputes, legal flaws, exchange or any Agreement of Sale etc. and I have got the clear ownership of the said device.\r\n\r\nYou agree to indemnity and keep indemnifying Flipkart.com and any future buyer of the device against all or any third party claims, demand, cost, expenses including attorney fees which may be suffered, incurred, undergone and / or sustained by Flipkart.com, its affiliates or any future buyer due to usage of the device by you till date and you undertake to make good the same.\r\n\r\nI confirm that all the data in the said device will be erased before handing it over under buyback program. I also confirm that in spite of erasing the data manually/electronically, if any data still accessible due any technical reason, Flipkart.com, Seller or the manufacturer shall not be responsible for the same and I will not approach Flipkart.com for any retrieval of the data.\r\n\r\nI hereby give my consent that my personal information that I have provided in connection with this buyback program might be processed, transferred and retained by the retailer and other entities involved in managing the program for the purposes of validating the information that I provided herein and for the administration of the program.\r\n\r\nI agree to indemnity and keep indemnifying the Flipkart.com and any future buyer of the old device against all or any third party claims, demand, cost, expenses including attorney fees which may be suffered, incurred, undergone and / or sustained by Flipkart.com, its affiliates or any future buyer due to usage of the device by me till date and I undertake to make good the same.\r\n\r\nI understand once a device is sent by me to Flipkart, in no scenario can this device be returned back to me.\r\n\r\nI understand that the new device delivery and the old device pickup will happen simultaneously (hand in hand) and I shall keep the old device ready to be given for exchange.\r\n\r\nProducts distributed as gifts from state sponsored or NGO funded distribution programs are not accepted for exchange under exchange offers.\r\n\r\nDigital Content: Flipkart Video\r\n\r\nThese Terms of Service (\"Terms\") govern your access to and use of Flipkart Video which is an online over-the-top platform providing users with live and/or on-demand audio and video content of various genres which may be offered by either Flipkart or by third party content providers (all such content, collectively, the \"Content\").\r\nThe Content is being hosted on Flipkart mobile App only (\"Platform\"), that is owned and operated by Flipkart Internet Private Limited (\"Flipkart\", \"We\" or \"Our\").\r\nThis document sets out the terms and conditions in connection with your use of the Platform and, subsequently, your access to and/or consumption of the Content and/or other related services provided on the Platform (all such content and services, collectively, \"Services\" and such terms and conditions, the \"Terms\" ).\r\nUse of Flipkart Services is available only to persons who can form a legally binding contract under the Indian Contract Act, 1872.You must be 18 years of age, to avail the Services. Minors may only use the service under the supervision of an adult. Some content offered on the Platform may not be appropriate for viewership by minors. Accordingly, parents and/or the guardians of such children or minors are advised to exercise discretion before allowing their children or minors to access such content on the Platform.\r\nAll the Content being offered to the users on the Platform shall be, for the convenience of the users, free of cost, or at such other terms as may be offered by Flipkart or the Content Providers with respect to any Content from time to time, and such other terms shall be communicated to the user at the time of viewing such Content and/or at the time of registering with the Platform. Subject to you accepting these Terms and any other terms as may be communicated to you from time to time, you are given a limited, non-exclusive, non-transferable, non-sub-licensable, revocable permission to view the Platform and avail the Services during the subsistence of your account with Flipkart and no right, title or interest in any Content will be deemed transferred to you.\r\nThe Platform is an interactive online platform for the users to view the Content of various genres, which may either be offered by Flipkart or third party content providers. As regards third party audio-video content generated by third parties (such content, the \" Third Party Content\" and such content providers, the \" Content Owners\"), the Platform offers you such Third Party Content by providing hosting services to Content Owners displaying their content and/or by allowing their content to be viewed by you on the Platform by integrating services and application of other audio-video hosting, caching and/or streaming service or infrastructure providers (\" Platform Partners\") who may have content procurement arrangements with the Content Owners The Platform may also provide content which is commissioned by Flipkart and/or is procured by Flipkart either under a license or copyright agreement (such content, \" Flipkart Originals\").\r\nContent will therefore consist of Flipkart Originals or Third Party Content. Content Owners and/or Platform Partners will provide Third Party Content. Specifically, for more information in relation to Third Party Content (including the terms of use relating specifically to Third Partner Content), you may refer to their respective terms and conditions. As such, Flipkart has no ownership or control whatsoever on Third Party Content, whether it is uploaded or streamed by Content Owners or by the Platform Partners. Flipkart plays no role in creating/developing Third Party Content.\r\nAs regards all the news content which are also Third Party Content through the Platform Partners, Flipkart's role is strictly limited to providing a uniform resource locator (URL) or a web-address to access and/or share such content on the Internet with the users and all news content is provided, uploaded, streamed and/or hosted by Content Owners, the Platform Partners and/or their respective agents or service providers. For avoidance of doubt, it is clarified that Flipkart will not be hosting, uploading or streaming any news content on its servers or IT systems. Flipkart will not be exercising any control – physical, editorial or digital - over the news Content being viewed by or provided to the user on the Platform. Flipkart will only be providing the user with an option and/or a medium to access news content through the Platform which, in turn, will provide the Content Providers and/or the Platform Partners an opportunity to disseminate their content on the Platform. The news Content on the Platform is directly uploaded or streamed onto the Platform by Platform Partners who avail of Flipkart's communication platform, without any intervention from Flipkart in the content procurement/uploading/streaming/transmission process. Flipkart's role is that of an 'intermediary' as defined under the Information Technology Act, 2000 and the rules thereunder, with regard to the news Content. Being an intermediary, Flipkart has no responsibility and/or liability in respect of any news Content on the Platform, including for intellectual property rights infringement, defamation, obscenity or any other violation under applicable law.\r\nIrrespective of whether the Content is a Third Party Content or a Flipkart Original, you, at all times, are responsible for your use of the Platform and for viewing any Content and Flipkart shall have no liability with respect to any loss or damage caused by viewing or relying on the Content. By hosting Flipkart Originals on the Platform and by permitting the hosting, uploading or streaming of Third Party Content on the Platform, Flipkart will neither guaranteeing nor giving any warranty nor making any representation with respect to the Contents. The Content provided on the Platform is for entertainment or information purposes only and Flipkart will neither be endorsing the views, products or the services being depicted or offered as part of the Content, nor will Flipkart be responsible for quality or features of the Content displayed on the Platform. Unless expressly stated otherwise, all characters, themes and events depicted in Flipkart Originals are entirely fictitious and any similarity to actual events or persons, living or dead, is purely coincidental, unintentional or accidental.\r\nThird Party Content will be made available to you through different modes, including via video-on-demand or on a live streaming basis, depending on the nature of the content and at the discretion of the Content Owners and/or Platform Partners. Flipkart Originals will be provided to you through different modes as well as the discretion of Flipkart. You may choose to view any Content at your discretion at a time chosen by you and by accepting these Terms and any other terms relating to such Content.\r\nPlease note that the availability of, and your ability to access, the Content or some part of the Services, (a) is subject to applicable law and the contractual arrangements between Flipkart and the Content Owners and/or Platform Partners; and (b) may be dependent upon your geographical location, your Internet/data connectivity or your system capabilities or compatibility with the Platform. Not all Content or Services will be available to all users. On account of the nature of the Internet/data connectivity and system compatibility, the Platform and the Services may also be accessed in various geographical locations. You, therefore, hereby agree and acknowledge that you are accessing the Platform and availing of the Services, at your own risk, choice and initiative, and you agree and undertake to ensure that your use of the Platform and the Services complies with all applicable laws including the local laws in your jurisdiction. Further, you agree and acknowledge that the Services and Content may vary from place to place, time to time and device to device and the quality and the quantity of your access to the Content or the use of the Platform or availing of the Services would be subject to various parameters such as specifications, device, Internet availability and speed, bandwidth, etc.\r\nAny information on the Platform, whether the Content or any other information (other than Flipkart Original), have not been verified by Flipkart, and therefore, Flipkart shall not be responsible for any such Third Party Content or information. Flipkart will not bear any obligation or liability if You rely on the Contents or information and any loss or liability has been incurred by you arising from such Third Party Content or information.\r\nIf you choose to view or rely on any Third Party Content or information on the Platform, you will be impliedly accepting the terms of viewing or relying on such Third Party Content or information, as offered by the Content Providers and/or the Platform Partners, and Flipkart will neither be a party to such an arrangement nor will it in any manner be concerned with such an arrangement nor will Flipkart be liable or responsible for any act or omission of the Content Owner and/or the Platform Partners.\r\nYou hereby acknowledge that the Third Party Content is created and owned by the Content Owners who own all the rights including the copyrights with respect to such content. The Content is available on the Platform for personal and non-commercial use only and you shall not use it for any commercial, promotional, resale, further distribution or any other unauthorized purposes. You agree not to use the service for public performances.\r\nYou further acknowledge that all the intellectual property rights contained in (a) the Flipkart Originals are solely owned by Flipkart and (b) in the Third Party Content are solely owned by the Content Owners or licensed to the Platform Partners. During the term of your Flipkart membership we grant you a limited, non-exclusive, non-transferable, revocable right to access the Platform and view the Content. Except for the foregoing, no right, title or interest shall be transferred to you in any Content or the Platform.\r\nWe can terminate your account or place your account on hold in order to protect our or the interests of the Content Owners or of the Platform Partners, from an actual, probable or suspected theft, loss, damage or other fraudulent activity. Flipkart reserves the right to immediately terminate, suspend, limit, or restrict your access or use of the Platform and/or the Services, at any time, without any notice or liability, if Flipkart so determines, in its sole discretion, for any reason whatsoever, including that you have: (a) breached these Terms or the Privacy Policy; or (b) violated any applicable law, rule, or regulation; or (c) you have engaged in any inappropriate or unlawful conduct; or (d) provided any false or inaccurate information; or (e) for any other reason that Flipkart deems fit in its sole discretion.\r\nAny use or reliance on any Content or materials obtained by you through the Platform is at your own risk. We do not endorse, support, represent or guarantee the completeness, truthfulness, accuracy, or reliability of any Content or communications posted on the Platform or endorse any opinions expressed via the Contents. You understand that by using the Platform, you may be exposed to Content that might be offensive, harmful, inaccurate or otherwise inappropriate, or in some cases, postings that have been mislabeled or are otherwise deceptive. All Third Party Content is the sole responsibility of the Content Owners who originated such content or it is the responsibility of the Platform Partners who host, upload and/or stream such Third Party Content. Flipkart may not monitor or control the Content posted, uploaded and/or streamed on the Platform by the Content Owners, the Platform Partners and/or their respective agents or affiliates, and, we do not take responsibility or liability for any such content.\r\nWe reserve the right to remove any Content or the user data that violates these Terms or the applicable law, including for example, copyright or trademark violations, impersonation, unlawful conduct, or harassment. With respect to Third Party Content, Flipkart's role is limited to providing a communication platform to Content Owners and/or Platform Partners, to enable the transmission of the Third Party Content directly from such third parties to you.\r\nPersonal Information; We may use information such as device ID, location or an account email address used with an existing Flipkart account to determine eligibility and any offers therof. We may share personal information with our other corporate entities and Platform Partners only for the purposes of giving enhanced customer services.\r\nService Interruptions: You hereby consent to sharing your information with third parties unless you specifically opt out. In addition, your access to the Services and the Platform may also be occasionally suspended or restricted to allow for repairs, maintenance, or the introduction of new facilities or services at any time without prior notice. We will attempt to limit the frequency and duration of any such suspension or restrictions.\r\nIf you see an offensive, abusive, or any unlawful content on the Platform, you can report it to customer care of Flipkart.\r\nDisclaimer of representations and warranties: Your access to and use of the Services or any Content are at your own risk. You understand and agree that the Services are provided to you on an \"AS IS\" or \"AS AVAILABLE\" basis. Flipkart makes no warranty or representation and disclaim all responsibility and liability for: (i) the completeness, accuracy, availability, timeliness, security, security and non-compatibility or reliability of any Content; (ii) any harm to your computer system, loss of data, or other harm that results from your access to or use of any Content; (iii) the deletion of, or the failure to store or to transmit, any Content and other communications maintained by the Services; and (iv) whether the Services will meet your requirements or be available on an uninterrupted, secure, or error-free basis. No advice or information, whether oral or written, obtained through the Content, will create any warranty or representation not expressly made herein or therein.\r\nLimitation of liability: By using the Services, you agree that the liability of Flipkart, its parents, affiliates, related companies, officers, directors, employees, agents, representatives, partners and licensors, shall be limited to the maximum extent permissible by applicable law. In no case shall Flipkart, its directors, officers, employees, affiliates, agents, contractors, principals, or licensors be liable for any direct, indirect, incidental, punitive, special, or consequential damages arising from your use of the Services or any Content or for any other claim related in any way to your access to the Platform and/or use of the Services, including, but not limited to, any errors or omissions in any Content or information on the Platform, or any loss or damage of any kind incurred as a result of the use of the Services and/or reliance on any Content or information on the Platform.\r\nIndemnification: You shall defend, indemnify and hold harmless Flipkart its owners, affiliates, subsidiaries, group companies, partners (as applicable), and their respective officers, directors, agents, and employees (\" Indemnified Parties\"), from and against any claim, demand, damages, obligations, penalty, losses or actions (including reasonable attorneys' fees) made by any third party against the Indemnified Parties or imposed against the Indemnified Parties, due to or arising out of your or your affiliate's or relative's: (a) breach of these Terms, the Privacy Policy and/or any other policies; or (b) violation of any applicable law, rules, regulations; or (c) violation of the rights (including infringement of intellectual property rights) of a third party or Flipkart; or (d) unauthorized, improper, illegal or wrongful use of your Flipkart account (including by you or by any person, including a third party, whether or not authorized or permitted by you). This indemnification obligation will survive the expiry or termination of these Terms and/or your use of the Service.\r\nForce Majeure: You agree that Flipkart shall be under no liability whatsoever to you in the event of non-availability of the Platform and/or any of the Services or any portion thereof, occasioned by an Act of God, war, disease, revolution, riot, civil commotion, strike, lockout, flood, fire, satellite failure, failure of any public utility, man-made disaster, satellite failure or any other cause whatsoever beyond the control of Flipkart (including any event which is caused by the failure or non-performance on the part of the Content Owners or the Platform Partners).\r\nGoverning laws: These Terms shall be governed, interpreted, and construed in accordance with the laws of India, without regard to the conflict of law provisions and for resolution of any dispute arising out of your use of the Services or in relation to these Terms. Notwithstanding the foregoing, you agree that (i) Flipkart has the right to bring any proceedings before any court/forum of competent jurisdiction and you irrevocably submit to the jurisdiction of such courts or forum; and (ii) any proceeding brought by you shall be exclusively before the courts in Bengaluru, India.\r\nSeverability: If any provision of these Terms is held invalid, void, or unenforceable, then that provision shall be considered severable from the remaining provisions, and the remaining provisions shall be given full force and effect.\r\nAmendments: We may revise these Terms from time to time, without prior notice to you, to update, revise, supplement, and otherwise modify these Terms and to impose new or additional rules, policies, terms, or conditions on your use of the Service. Any updates, revisions, supplements, modifications, and additional rules, policies, terms, and conditions will be posted on the Platform and will be effective immediately after such posting and we recommend that you periodically check these Terms on the Platform for such revised terms. Your continued use of the Services and/or the Platform will be deemed to constitute your acceptance of any and all such revised terms.\r\nEntire agreement: These Terms, the Privacy Policy and any other terms or policies as may be prescribed by Flipkart from time to time, constitute the entire agreement between you and Flipkart, which will govern your use of or access to the Services and/or the Platform, superseding any prior agreements between you and Flipkart regarding such use or access.\r\nSurvival: You acknowledge that your representations, undertakings, and warranties and the clauses relating to indemnities, limitation of liability, grant of license, governing law shall survive the efflux of time and the termination of these Terms (including but not limited to Clauses 22 to 30 of these Terms).\r\nIndemnity\r\n\r\nYou shall indemnify and hold harmless Flipkart, its owner, licensee, affiliates, subsidiaries, group companies (as applicable) and their respective officers, directors, agents, and employees, from any claim or demand, or actions including reasonable attorneys' fees, made by any third party or penalty imposed due to or arising out of Your breach of this Terms of Use, privacy Policy and other Policies, or Your violation of any law, rules or regulations or the rights (including infringement of intellectual property rights) of a third party.\r\n\r\nApplicable Law\r\n\r\nTerms of Use shall be governed by and interpreted and construed in accordance with the laws of India. The place of jurisdiction shall be exclusively in Bangalore.\r\n\r\nJurisdictional Issues/Sale in India Only\r\n\r\nUnless otherwise specified, the material on the Platform is presented solely for the purpose of sale in India. Flipkart make no representation that materials in the Platform are appropriate or available for use in other locations/Countries other than India. Those who choose to access this site from other locations/Countries other than India do so on their own initiative and Flipkart is not responsible for supply of products/refund for the products ordered from other locations/Countries other than India, compliance with local laws, if and to the extent local laws are applicable.\r\n\r\nTrademark, Copyright and Restriction\r\n\r\nThis site is controlled and operated by Flipkart and products are sold by respective Sellers. All material on this site, including images, illustrations, audio clips, and video clips, are protected by copyrights, trademarks, and other intellectual property rights. Material on Platform is solely for Your personal, non-commercial use. You must not copy, reproduce, republish, upload, post, transmit or distribute such material in any way, including by email or other electronic means and whether directly or indirectly and You must not assist any other person to do so. Without the prior written consent of the owner, modification of the materials, use of the materials on any other Platform or networked computer environment or use of the materials for any purpose other than personal, non-commercial use is a violation of the copyrights, trademarks and other proprietary rights, and is prohibited. Any use for which You receive any remuneration, whether in money or otherwise, is a commercial use for the purposes of this clause.\r\n\r\nFlipkart e-learning application\r\n\r\nYou can purchase e-books through Flipkart. You can obtain unlimited access to the e-books.\r\n\r\nRights Granted: E-book right is a non-exclusive, non-transferable right to use for your personal, non-commercial use, subject to and in accordance with the Terms of Use. You must not share access to the e-books with any other person.\r\n\r\nFlipkart does not assume any loss or damage caused by Your electronic gadget with which You are viewing the e-book or if the electronic gadget does not support the e-book application.\r\n\r\nYou must not decompile, reverse engineer or disassemble the contents of the application or modify, copy, distribute, transmit, display, perform, reproduce, publish, create derivative works from the application.\r\n\r\nIntellectual Property Rights: It is hereby specifically recorded that the copyright and other Intellectual Property in the e-book is available with the Seller and it is Seller’s exclusive property. Seller represents and warrants that Sellers are authorized by such third parties to sell the e-book on the Platform for license of use to the end customers. Intellectual Property Rights for the purpose of this Terms of Use shall always mean and include copyrights whether registered or not, patents including rights of filing patents, trademarks, trade names, trade dresses, house marks, collective marks, associate marks and the right to register them, designs both industrial and layout, geographical indicators, moral rights, broadcasting rights, displaying rights, distribution rights, selling rights, abridged rights, translating rights, reproducing rights, performing rights, communicating rights, adapting rights, circulating rights, protected rights, joint rights, reciprocating rights, infringement rights. All those Intellectual Property rights arising as a result of domain names, internet or any other right available under applicable law shall vest in the domain of Flipkart as the owner of such domain name. The Parties hereto agree and confirm that no part of any Intellectual Property rights mentioned hereinabove is transferred in the name of User and any intellectual property rights arising as a result of these presents shall also be in the absolute ownership, possession and Flipkart’s control or control of its licensors, as the case may be.\r\n\r\nTrademark complaint\r\n\r\nFlipkart respects the intellectual property of others. In case You feel that Your Trademark has been infringed, You can write to Flipkart at infringement@flipkart.com or ss@flipkart.com.\r\n\r\nProduct Description\r\n\r\nFlipkart we do not warrant that Product description or other content of this Platform is accurate, complete, reliable, current, or error-free and assumes no liability in this regard.\r\n\r\nLimitation of Liability\r\n\r\nIN NO EVENT SHALL FLIPKART BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND IN CONNECTION WITH THESE TERMS OF USE, EVEN IF USER HAS BEEN INFORMED IN ADVANCE OF THE POSSIBILITY OF SUCH DAMAGES.\r\n\r\nContact Us\r\n\r\nPlease contact us for any questions or comments (including all inquiries unrelated to copyright infringement) regarding this platform through the link: https://www.flipkart.com/helpcentre.\r\n\r\nGrievance officer\r\n\r\nIn accordance with Information Technology Act 2000 and rules made there under and the Consumer Protection (E-Commerce) Rules, 2020, the name and contact details of the Grievance Officer are provided below:\r\n\r\nMr. Shremanth M\r\n\r\nDesignation: Senior Manager\r\n\r\nFlipkart Internet Pvt Ltd Block B (Begonia),\r\n\r\n8th Floor Embassy Tech Village,\r\n\r\nOuter Ring Road, Devarabeesanahalli Village,\r\n\r\nVarthur Hobli, Bengaluru East Taluk,\r\n\r\nBengaluru District-560103, Karnataka :, India.\r\n\r\nContact us:\r\n\r\nEmail: grievance.officer@flipkart.com\r\n\r\nPhone: 044-45614700\r\n\r\nTime: Mon - Sat (9:00 - 18:00)\r\n\r\nCustomer Support: You can reach our customer support team to address any of your queries or complaints by clicking the link, selecting your order and choosing 'Need Help' option: https://www.flipkart.com/helpcentre\r\n\r\nPOLICIES\r\n\r\nProfanity Policy\r\n\r\nFlipkart prohibits the use of language that is racist, hateful, sexual or obscene in nature in a public area.\r\n\r\nThis policy extends to text within listings, on Seller pages and all other areas of the site that another User may view. If the profane words are part of a title for the item being sold, we allow Sellers to 'blur' out the bulk of the offending word with asterisks (i.e., s*** or f***).\r\n\r\nPlease report any violations of this policy to the correct area for review:\r\n\r\nReport offensive Display Names\r\nReport offensive language in a listing or otherwise\r\nIf a feedback comment; or any communication made between Users on the Platform; or email communication between Users in relation to transactions conducted on Platform contain profanity, please review Our feedback removal policy and submit a request for action/removal.\r\n\r\nDisciplinary action may result in the indefinite suspension of a User's account, temporary suspension, or a formal warning.\r\n\r\nFlipkart will consider the circumstances of an alleged policy violation and the user's trading records before taking action.\r\n\r\nViolations of this policy may result in a range of actions, including:\r\n\r\nLimits placed on account privileges;\r\nLoss of special status;\r\nAccount suspension.\r\nFlipkart shall have the right to delete a product review posted by the customer at its sole discretion, if it is of the opinion that the review contains offensive language as stated above. Further, if Flipkart is of the opinion that the review unfairly either: (i) causes disadvantage to a product; or (ii) increases the popularity of the product, Flipkart shall have the right to delete the customer review. Flipkart shall also, at its sole discretion have the right to blacklist the customer from posting any further customer reviews.\r\n\r\nReplacement Guarantee\r\n\r\nThe Replacement Guarantee seeks to assist Buyers who have been defrauded by qualified sellers on the Platform. If at the time of delivery and/or within specified days from the date of delivery of the product/s, if any defect is found, then the buyer of the product/s can ask for replacement of the product/s from the seller.\r\n\r\nIf Flipkart has suspicion or knowledge, that any of its buyers and sellers are involved in any activity that is intended to provide claims or information that is false, misleading or not genuine, then Flipkart may while reserving its rights to initiate civil and/or criminal proceedings against User may also at its sole discretion suspend, block, restrict, cancel the Display Name of such buyer and seller and /or disqualify that User and any related Users from availing protection through this program.\r\n\r\nFlipkart reserves its right to initiate civil and/or criminal proceedings against a User who, files a invalid and/or false claims or provides false, incomplete, or misleading information. In addition to the legal proceedings as aforesaid, Flipkart may at its sole discretion suspend, block, restrict, cancel the Display Name [and its related Display Names] of such User and/or disqualify that User and any related Users from availing protection through this program. Any person who, knowingly and with intent to injure, defraud or deceive, files a Fraudulent Complaint containing false, incomplete, or misleading information may be guilty of a criminal offence and will be prosecuted to the fullest extent of the law.\r\n\r\nFor more details related to Replacement Policy, refer to s/help/cancellation-returns\r\n\r\nReturns Policy\r\n\r\nDefinition: 'Return' is defined as the action of giving back the item purchased by the Buyer to the Seller on the Flipkart Platform. Following situations may arise:\r\n\r\nItem was defective\r\nItem was damaged during the Shipping\r\nProducts was / were missing\r\nWrong item was sent by the Seller.\r\nReturn could also result in refund of money in most of the cases.\r\n\r\nPoints to be noted:\r\n\r\nSeller can always accept the return irrespective of the policy.\r\nIf Seller disagrees a return request, Buyer can file a dispute under the Buyer Protection Program*.\r\nWe encourage the Buyer to review the listing before making the purchase decision. In case Buyer orders a wrong item, Buyer shall not be entitled to any return/refund.\r\n\r\nBuyer needs to raise the return request within the return period applicable to the respective product. Once Buyer has raised a return request by contacting Us on Our Toll Free Number, Seller while closing the return ticket can select one of the following:\r\n\r\nReplace after shipment collection - Seller has agreed to wait for the logistics team to collect the shipment from the buyer before replacing it)\r\nRefund after shipment collection - Seller has agreed to wait for the logistics team to collect the shipment from the buyer before refunding)\r\nRefund without shipment collection - Seller has agreed to refund the buyer without expecting the original shipment back)\r\nReplace without shipment collection - Seller has agreed to replace the order without expecting the original shipment back)\r\nOn certain select days as specified by Flipkart (such as 'The Big Billion Day') separate policies may be applicable.\r\nIn the event the Seller accepts the return request raised by the Buyer, Buyer will have to return the product and then the refund shall be credited to the Buyers account.\r\n\r\nIn case the Seller doesn't close the ticket in 3 days from the date of intimation to the Seller about the refund request, the refund request shall be settled in favor of the Buyer.\r\n\r\nFurther for returns being made by Buyer to the Seller of the product, the following parameters needs to be ensured by the Buyer:\r\n\r\nCategoryCondition\r\n\r\nElectronics\r\n\r\nShould be included\r\n\r\nClothing and Footwear\r\n\r\nShould be \"New & Unworn\" (other than for trial)\r\n\r\nBeauty, Health & Personal Care\r\n\r\nShould be \"New & Unopened\"\r\n\r\nSports & Equipment\r\n\r\nShould be \"New\" and returned with original packaging\r\n\r\nOffice Products\r\n\r\nShould be \"New\" and returned with original packaging\r\n\r\nJewellery\r\n\r\nShould be \"New\" and returned with original packaging\r\n\r\nIf the product being returned is not in accordance with the above parameters, then Buyer shall not be entitled to any refund of money from the Seller.\r\n\r\nShipping cost for returning the product shall be borne and incurred by the Seller.\r\n\r\nReplacement\r\n\r\nDefinition: Replacement is the action or process of replacing something in place of another. A Buyer can request for replacement whenever he is not happy with the item, reason being Damaged in shipping, Defective item, Item(s) missing, wrong item shipped and the like.\r\n\r\nPoints to be noted:\r\n\r\nSeller can always accept the return irrespective of the policy.\r\nIf Seller disagrees for a return request, Buyer can file a dispute under Buyer Protection Program*.\r\nBuyer needs to raise the replacement request within the return period applicable to the respective product. Once Buyer has raised a replacement request by contacting Us on the Toll Free Number provided on the Platform. Once the replacement request has been raised, the following steps shall be followed:\r\n\r\nBuyer is asked for \"Reason for Return\". Among others, the following are the leading reasons:\r\nShipping was damaged\r\nItem was defective\r\nItem Dead on Arrival\r\nItem(s) were missing\r\nWrong item sent\r\nAn intimation shall be provided to Seller seeking either \"approval\" or \"rejection\" of the replacement request.\r\nIn case the Seller accepts the replacement request, Buyer shall be required to return the product to the Seller and only after return of the product, Seller shall be obliged to provide the replacement product to the Buyer.\r\nIncase Seller rejects the replacement request, Buyer can choose to raise a dispute by contacting us through this link: https://www.flipkart.com/helpcentre.\r\nIn case the Seller doesn't have the product at all, Seller can provide the refund to the Buyer and Buyer shall be obligated to accept the refund in lieu of replacement. All the product parameters shall be required to be complied with in cases of replacement.\r\n\r\nIf the Seller doesn't respond to the Buyer's replacement request, within three (3) days from the date of replacement request placed by the Buyer, refund shall be processed in favour of Buyer and Seller shall be liable to refund amount paid to the Seller.\r\n\r\nAll shipping and other replacement charges shall be borne and incurred by the Seller.\r\n\r\nDisputes (Resolutions) Policy\r\n\r\nOverview\r\n\r\nGenerally, transactions are conducted smoothly on Flipkart. However, there may be some cases where both the Buyers and Sellers may face issues. At Flipkart, we have a Dispute Resolution process in order to resolve disputes between Buyers and Sellers.\r\n\r\nWhat is a 'dispute'?\r\n\r\nA 'Dispute' can be defined as a disagreement between a Buyer and a Seller in connection with a transaction on the Platform.\r\n\r\nHow does a 'dispute' occur in the Marketplace?\r\n\r\nDisputes are filed as a result of a disagreement between the Buyer and the Seller. Disputes arise out of an issue that is raised by either party not being completely satisfied with the resolution of their complaint/issue.\r\n\r\nIt is important that before a Buyer/Seller raises a dispute, they should attempt to solve the issue. Please note that whenever a Buyer raises a dispute, the Seller's payment for that order is put on hold immediately until the issue is resolved.\r\n\r\nHow is a 'dispute' created?\r\n\r\nWhenever there is a disagreement, the Buyer can contact us through this link https://www.flipkart.com/helpcentre, while the Seller can write to ss@flipkart.com, in order to raise a dispute. Disputes can be raised at a particular transaction level.\r\n\r\nWhat are the various types of 'disputes'?\r\n\r\nFollowing are the indicative examples of potential disputes:\r\n\r\nWrong item received;\r\nItem not as described;\r\nDamaged or seal broken on Product;\r\nPart/accessory missing;\r\nItem not compatible;\r\nSeller description/specification wrong;;\r\nDefective (functional issues)\r\nProduct not working and manufacturer claims invalid Invoice.\r\nIn case the Seller rejects the return request of the Buyer, and Buyer raises a dispute, then Flipkart will try to mediate and resolve the dispute between both the parties. If the dispute is resolved in favour of the Buyer, a refund is provided once the product is returned to the Seller. If the dispute is settled in favour of the Seller, Buyer is entitled to any refund.\r\n\r\nBuyer Protection Program\r\n\r\nIn case of a dispute where the Seller is unable to provide a refund or a replacement, Flipkart will actively work towards reaching a resolution.\r\n\r\nThe Buyer Protection Program covers Buyers who are unable to successfully resolve their dispute with the Seller or are not satisfied the resolution provided by the Seller.\r\n\r\nThe buyer can contact us through this link https://www.flipkart.com/helpcentre if the issue with the Seller is not resolved. Flipkart's Customer Support team will look into the case to check for possible fraud and if the Buyer has been blacklisted/blocked from making purchases on the Platform. Only after verifying these facts, a dispute can be registered.\r\n\r\nCS team will not facilitate a conference call, CS team acts as the bridge between customer and seller.\r\n\r\nWhen a dispute has been raised, Flipkart may provide both the parties access to each others Display Names, contact details including email addresses and other details pertaining to the dispute. Buyers and Sellers are subject to final consent from Flipkart for settling the dispute.\r\n\r\nBuyer Eligibility and Restrictions\r\n\r\nOnly the Buyers who have purchased the product on Flipkart are eligible for the Buyer Protection Program.\r\n\r\nBuyers can file a dispute within 45 days from the date of delivery of the product\r\n\r\nAny damage or loss to the product after delivery will not be covered under this program and will completely be the Buyer's responsibility. Buyers should refuse to accept delivery if the item is damaged.\r\n\r\nTo be able to take advantage of the Buyer Protection Program, Buyers should first contact the Seller and attempt to resolve the issue. If the Buyer doesn't hear from the Seller or is unable to resolve the issue with the Seller even after contact, a dispute can be raised with Flipkart by contacting us through the link: https://www.flipkart.com/helpcentre\r\n\r\nFraudulent charges and claims are not covered under Buyer Protection Program\r\n\r\nIf the Buyer has already initiated chargeback through the credit card issuing bank, it will not be covered under Buyer Protection Program, though in such cases a Seller can file a claim through the Seller Protection Program.\r\n\r\nBlacklisted and Blocked Buyers are not covered by the Buyer Protection Program.\r\n\r\nBuyers who have reached their maximum lifetime limit for claims are also not eligible. Buyers can make a maximum of 5 claims per year on Flipkart. If the claim was withdrawn, it is not counted. The coverage amount will be limited to Rs. 50,000/-\r\n\r\nThrough the Buyer Protection program, Flipkart does not provide any guarantee/warranty to Buyers for products sold on Flipkart against technical/manufacturing defects.\r\n\r\nRaising disputes against Sellers does not automatically entitle the Buyer to a refund or replacement for the product purchased. Flipkart shall verify the disputes so raised and may process only such claims that are valid and genuine.\r\n\r\nFlipkart shall at no point be responsible for any direct or indirect losses, expenses, costs of any nature whatsoever that may be incurred by any Buyer/Seller.\r\n\r\nClaims of the nature of 'Buyer remorse' (i.e. instances where products are bought by the Buyer by mistake or where the Buyer chooses to change his/her mind with regard to the product purchased by him) will not be entertained through this program.\r\n\r\nFlipkart reserves its right to initiate civil and/or criminal proceedings against a User who, files an invalid and/or false claims or provides false, incomplete, or misleading information. In addition to the legal proceedings as aforesaid, Flipkart may at its sole discretion suspend, block, restrict, cancel the Display Name [and its related Display Names] of such User and/or disqualify that user and any related users from availing protection through this program.\r\n\r\nDecisions made by Flipkart under the Buyer Protection Program shall be final and binding on its Users.\r\n\r\nFlipkart reserves the right to modify / discontinue Buyer Protection Program without any prior notice period to its Users.\r\n\r\nThrough this program, Flipkart shall not entertain claims of Buyers who have incurred loss due to delayed shipment or delivery of the item by the Seller.\r\n\r\nFlipkart Customer Support Team may seek additional information / clarification from Buyer to facilitate resolution of the dispute. In the event Buyer does not respond with information / clarification sought within 10 days of such request, the dispute shall be auto-closed in favour of the Seller.\r\n\r\nDisputes via Chargeback\r\n\r\nWhenever a chargeback (CB) comes from a payment gateway/bank, following situations may arise:\r\n\r\nItem not received CB - Buyer hasn't received the item. Refund will be created in accordance with the dispute policies\r\nUnauthorized CB - Buyer hasn't made this particular transaction. Refund will be created in accordance with the dispute policies.\r\nSeller expressly agrees that issuing the correct and complete invoice is the sole and primary responsibility of the Seller. Furthermore, Seller shall ensure that invoices state \"Powered by Flipkart\" and failing to do so Seller will be liable for chargebacks (as applicable).\r\n\r\nItem not as described - meaning item is not what Buyer expected. Dispute will be decided in accordance with the dispute policies.\r\nEmail Abuse & Threat Policy\r\n\r\nPrivate communication, including email correspondence, is not regulated by Flipkart. Flipkart encourages its Users to be professional, courteous and respectful when communicating by email.\r\n\r\nHowever, Flipkart will investigate and can take action on certain types of unwanted emails that violate Flipkart policies.\r\n\r\nSuch instances:\r\n\r\nThreats of Bodily Harm - Flipkart does not permit Users to send explicit threats of bodily harm.\r\n\r\nMisuse of Flipkart System - Flipkart allows Users to facilitate transactions through the Flipkart system, but will investigate any misuse of this service.\r\n\r\nSpoof (Fake) email - Flipkart will never ask you to provide sensitive information through email. In case you receive any spoof (fake) email, you are requested to report the same to Us through 'Contact Us' tab.\r\n\r\nSpam (Unsolicited Commercial email) - Flipkart's spam policy applies only to unsolicited commercial messages sent by Flipkart Users. Flipkart Users are not allowed to send spam messages to other Users.\r\n\r\nOffers to Buy or Sell Outside of Flipkart - Flipkart prohibits email offers to buy or sell listed products outside of the Flipkart Platform. Offers of this nature are a potential fraud risk for both Buyers and Sellers.\r\n\r\nFlipkart policy prohibits user-to-user threats of physical harm via any method including, phone, email and on Our public message boards.\r\n\r\nViolations of this policy may result in a range of actions, including:\r\n\r\nLimits on account privileges\r\nAccount suspension\r\nCancellation of listings\r\nLoss of special status\r\nOther Businesses\r\n\r\nFlipkart does not take responsibility or liability for the actions, products, content and services on the Platform, which are linked to Affiliates and / or third party Platforms using Platform's APIs or otherwise. In addition, the Platform may provide links to the third party Platforms of Our affiliated companies and certain other businesses for which, Flipkart assumes no responsibility for examining or evaluating the products and services offered by them. Flipkart do not warrant the offerings of, any of these businesses or individuals or the content of such third party Platform(s). Flipkart does not endorse, in any way, any third party Platform(s) or content thereof.\r\n\r\nFlipkart Infringement Verification (FIV) - Reporting Listing Violations\r\n\r\nFlipkart has put in place Flipkart Infringement Verification process so that intellectual property owners could easily report listings that infringe their rights. It is in Flipkart's interest to ensure that infringing products are removed from the site, as they erode Buyer and good Seller trust.\r\n\r\nIf you are a Verified Rights Owner and want to report a listing issue, see Flipkart's FIV. Note: Only the intellectual property rights owner can report potentially infringing products or listings through FIV. If you are not the intellectual property rights owner, you can still help by getting in touch with the rights owner and encouraging them to contact us.\r\nIf your listing was removed through FIV, and you believe that your listing was removed in error, please contact us.\r\nFlipkart does not and cannot verify that Sellers have the right or ability to sell or distribute their listed products. However, Flipkart is committed to removing infringing or unlicensed products once an authorized representative of the rights owner properly reports them to Flipkart.\r\n\r\nFIV works to ensure that item listings do not infringe upon the copyright, trademark or other intellectual property rights of third parties. FIV participants have the ability to identify and request removal of allegedly infringing products and materials.\r\n\r\nAny person or company who holds intellectual property rights (such as a copyright, trademark or patent) which may be infringed upon by products listed on Flipkart is encouraged to become a FIV member.\r\n\r\nProgram membership entitles you (Verified Rights Owner) to the following benefits:\r\n\r\nRapid response by Flipkart in ending listings reported by you (as the Verified Rights Owner) as allegedly infringing\r\nDedicated priority email queues for reporting alleged infringements\r\nThe ability to obtain identifying information about Flipkart's users'\r\nHow to Become a FIV Member\r\n\r\nTo join the FIV, we require only that you fully complete and email Us a Notice of Infringement form specifying the allegedly infringing listings and the infringed work, complete with an original authorized signature. The information requested by the Notice of Infringement is designed to ensure that parties reporting products are authorized by the rights owners, and to enable Flipkart to easily identify the material or listing to be ended.\r\n\r\nIn the interest of keeping the process easy and simple, after we receive your first Notice of Infringement in hard copy, future notices can be sent to Us by email at ss@flipkart.com.\r\n\r\nNote: In your notice of infringement, you shall be required to identify the individual listing which is infringing your intellectual property. General notices shall not be accepted.\r\n\r\nWe are happy to receive such information, but must advise that we may be limited in Our ability to respond to your request absent formal notice from an authorized rights owner.\r\n\r\nNotice of Infringement\r\n\r\nFlipkart Internet Private Limited\r\n\r\n_______________________\r\n\r\n_______________________\r\n\r\nI, [name] ____________________________ of [address] _________________________ do solemnly and sincerely declare as follows:\r\n\r\nI am the owner of certain intellectual property rights, said owner being named __________________ (\"IP Owner\").\r\nI have a good faith belief that the item listings or materials identified in the annexure attached hereto are not authorised by the above IP Owner, its agent, or the law and therefore infringe the IP Owner's rights. Please expeditiously remove or disable access to the material or products claimed to be infringing.\r\nI may be contacted at:\r\nName ___________________________________________________________\r\n\r\nTitle & Company ________________________________________________________\r\n\r\nAddress _________________________________________________________\r\n\r\nEmail (correspondence) ___________________________________________________\r\n\r\nTelephone/Fax _____________________________________________________________\r\n\r\nDate _________________________________________________________________\r\n\r\nand I make this declaration conscientiously believing it to be true and correct.\r\n\r\nDeclared by ______________________________\r\n\r\non [date] ___________________________________ in [place]________\r\n\r\nTruthfully,\r\n\r\nSignature\r\n\r\nAddendum to Notice of Infringement:\r\n\r\nList of Allegedly Infringing Listings, Products, or Materials\r\n\r\nA Note on Reason Codes: When identifying item numbers please use the reasons below. When removing products from the site, Flipkart will inform Sellers of the specific reason for the removal of their products.\r\n\r\nSelect the most appropriate reason. Please associate each item you report with only one reason code.\r\n\r\nTrademark-infringement\r\n\r\nTrademark owner doesn't make this type of product or has discontinued the production of the product\r\nItem(s) is an unlawful replica of a product made by the trademark owner or is counterfeit\r\nTrademark-listing description infringement\r\n\r\nListing(s) has unlawful comparison to trademark owner's brand or product\r\nListing(s) contains unlawful use of trademark owner's logo\r\nCopyright-item infringement\r\n\r\nSoftware is being offered without any license or in violation of a license\r\nItem(s) is a bootleg recording;\r\nItem(s) is an unlawful copy (software, games, movies, etc.);\r\nItem(s) is unlawful duplication of printed material\r\nItem(s) is an unlawful copy of other copyrighted work (paintings, sculptures, etc.)\r\nCopyright-listing content infringement\r\n\r\nListing(s) comprises unauthorized copy of copyrighted text\r\nListing(s) comprises unauthorized copy of copyrighted image\r\nListing(s) comprises unauthorized copy of copyrighted image and text\r\nReason Code: _____________________________________________________________\r\n\r\nWork(s)\r\n\r\ninfringed: _________________________________________________________\r\n\r\nItem Number(s): ___________________________________________________________\r\n\r\nNote:\r\n\r\nPlease provide the ownership of Trademark (Trademark Registration Certificate should be in the name of applicant)\r\nPlease provide the evidence as to the ownership of copyright.\r\nAll such Notices of Infringement shall be sent to infringement@flipkart.com; or ss@flipkart.com.\r\n\r\nContacting the Seller\r\n\r\nAt Flipkart we are committed towards ensuring that disputes between sellers and buyers are settled amicably by way of the above dispute resolution mechanisms and procedures. However, in the event that a buyer wishes to contact the seller, he/ she may proceed to do so by accessing the seller related information made available by the sellers on their product listing pages. Alternatively, the buyers may also reach out to customer support at 044-45614700 or access help center at https://www.flipkart.com/helpcentre.\r\n</pre>\r\n`\r\n\r\ndocument.getElementById(\"terms\").innerHTML=terms"
  },
  {
    "path": "plus/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title>Flipkart Plus | Membership Benefits</title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <link rel=\"stylesheet\" href=\"plus.css\" />\r\n    <style>\r\n         #progress-container {\r\n    position: fixed ;\r\n    top: 0px;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 15px;\r\n    z-index: 99990;\r\n    /* background: #f3f3f3; */\r\n}\r\n\r\n#progress-bar {\r\n    height: 53%;\r\n    width: 0;\r\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\r\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\r\n    transition: width 0.09s ease-in-out;\r\n    border-radius: 10px;\r\n}\r\n\r\n\r\n    </style>\r\n</head>\r\n<body>\r\n    \r\n<div id=\"progress-container\">\r\n    <div id=\"progress-bar\"></div>\r\n  </div>\r\n\r\n  <script>\r\n        \r\n    window.addEventListener('scroll', function() {\r\n        const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\r\n        const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n        const scrolled = (winScroll / height) * 100;\r\n        document.getElementById('progress-bar').style.width = scrolled + '%';\r\n    });\r\n    </script>\r\n  \r\n\r\n    <header id=\"header-plus\" class=\"text-center text-secondary fs-4\">\r\n        Flipkart Plus Membership\r\n    </header>\r\n\r\n    <section>\r\n        <style>\r\n            .carousel-inner {\r\n                height: 400px;\r\n            }\r\n            \r\n            .carousel-item {\r\n                height: 400px;\r\n            }\r\n            \r\n            .carousel-item img {\r\n                height: 100%;\r\n                object-fit: cover;\r\n            }\r\n\r\n            section .container {\r\n                padding: 20px;\r\n            }\r\n\r\n            .product-list {\r\n                display: flex;\r\n                flex-wrap: wrap;\r\n                gap: 20px;\r\n                justify-content: center;\r\n                transition: transform 0.5s ease-in-out;\r\n            }\r\n\r\n            .product-list:hover {\r\n                transform: translateX(-10px);\r\n            }\r\n\r\n            .product {\r\n                background-color: white;\r\n                padding: 20px;\r\n                border-radius: 4px;\r\n                width: calc(25% - 20px);\r\n                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);\r\n                transition: box-shadow 0.3s ease-in-out;\r\n            }\r\n\r\n            .product:hover {\r\n                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);\r\n            }\r\n\r\n            .product img {\r\n                width: 100%;\r\n                border-bottom: 1px solid #eee;\r\n                padding-bottom: 15px;\r\n                transition: transform 0.3s ease-in-out;\r\n            }\r\n\r\n            .product img:hover {\r\n                transform: scale(1.1);\r\n            }\r\n\r\n            .product .name {\r\n                font-size: 18px;\r\n                font-weight: bold;\r\n                margin: 10px 0;\r\n                transition: color 0.3s ease-in-out;\r\n            }\r\n\r\n            .product .name:hover {\r\n                color: #97b3e0;\r\n            }\r\n\r\n            .product .price {\r\n                color: #2874f0;\r\n                font-size: 16px;\r\n                font-weight: bold;\r\n                transition: color 0.3s ease-in-out;\r\n            }\r\n\r\n            .product .price:hover {\r\n                color: #007bff;\r\n            }\r\n        </style>\r\n        <h3 class=\"text-center\">Welcome to Flipkart Plus Zone</h3>\r\n        \r\n        <!-- Bootstrap Carousel for Banner Images -->\r\n        <div id=\"bannerCarousel\" class=\"carousel slide\" data-bs-ride=\"carousel\">\r\n            <div class=\"carousel-indicators\">\r\n                <button type=\"button\" data-bs-target=\"#bannerCarousel\" data-bs-slide-to=\"0\" class=\"active\" aria-current=\"true\" aria-label=\"Slide 1\"></button>\r\n                <button type=\"button\" data-bs-target=\"#bannerCarousel\" data-bs-slide-to=\"1\" aria-label=\"Slide 2\"></button>\r\n                <button type=\"button\" data-bs-target=\"#bannerCarousel\" data-bs-slide-to=\"2\" aria-label=\"Slide 3\"></button>\r\n            </div>\r\n            <div class=\"carousel-inner\">\r\n                <div class=\"carousel-item active\">\r\n                    <img src=\"https://images.thequint.com/thequint/2018-08/05043882-7588-48ca-aaf8-13786bdcfb23/3e8a80bd_a21b_4f6e_aec3_b49fb417e1f5.jpg\" class=\"d-block w-100\" alt=\"First slide\">\r\n                </div>\r\n                <div class=\"carousel-item\">\r\n                    <img src=\"https://i.gadgets360cdn.com/large/Flipkart-plus-screenshot_1539013276085.jpg\" class=\"d-block w-100\" alt=\"Second slide\">\r\n                </div>\r\n                <div class=\"carousel-item\">\r\n                    <img src=\"https://storiesflistgv2.blob.core.windows.net/stories/2023/08/banner.jpg\" class=\"d-block w-100\" alt=\"Third slide\">\r\n                </div>\r\n            </div>\r\n            <button class=\"carousel-control-prev\" type=\"button\" data-bs-target=\"#bannerCarousel\" data-bs-slide=\"prev\">\r\n                <span class=\"carousel-control-prev-icon\" aria-hidden=\"true\"></span>\r\n                <span class=\"visually-hidden\">Previous</span>\r\n            </button>\r\n            <button class=\"carousel-control-next\" type=\"button\" data-bs-target=\"#bannerCarousel\" data-bs-slide=\"next\">\r\n                <span class=\"carousel-control-next-icon\" aria-hidden=\"true\"></span>\r\n                <span class=\"visually-hidden\">Next</span>\r\n            </button>\r\n        </div>\r\n        \r\n        <div class=\"container\">\r\n            <div class=\"product-list\" id=\"productList\"></div>\r\n        </div>\r\n    </section>\r\n\r\n    <div id=\"btmTxtP\" class=\"container-fluid\" style=\"background: #f3eff3;\"></div>\r\n    <footer id=\"footer-plus\" style=\"background-color: #293649 !important\"></footer>\r\n    <script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n    <script src=\"plus.js\"></script>\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "plus/plus.css",
    "content": ""
  },
  {
    "path": "plus/plus.js",
    "content": "let btmText = `\r\n<p class=\"hdg\">Get Flipkart Plus Membership Online and Enjoy Benefits for the Plus Life </p>\r\n    <p class=\"cnt\">To democratise access and broaden diversity in e-commerce, Flipkart never stops adding new features.\r\n        With this goal in mind, the reward programme Flipkart Plus is designed to improve client relationships and\r\n        provide them with additional benefits. Flipkart Plus membership is an earned loyalty programme created to\r\n        satisfy a wide range of Flipkart customers. Hence, there is no Flipkart Plus membership price, however, you can\r\n        use SuperCoins to access its advantages. Flipkart Plus membership benefits include getting free and quick\r\n        delivery, as well as access to exclusive marketplace launch previews. Getting priority customer service,\r\n        acquiring exclusive Flipkart Pay Later choices, and receiving selected rewards from ecosystem partners across\r\n        travel, OTT, lifestyle, health and fitness, are among the additional advantages. This means that you can\r\n        (Flipkart) explore plus and get engaged in the Plus campaign and get exclusive deals and benefits. So, if you\r\n        want to become a member of Flipkart’s prime membership, all you have to do is shop more and earn SuperCoins\r\n        without having to pay Flipkart membership prices.</p>\r\n    <br>\r\n    <p class=\"hdg\">All You Need to Know About Flipkart Plus Membership</p>\r\n    <p class=\"cnt\">Flipkart customers receive extra benefits in the form of SuperCoins. Every month, Flipkart issues\r\n        billions of SuperCoins for its regular customers. You will receive a Plus membership invitation once you have\r\n        earned 200 SuperCoins in a calendar year. You must activate the invitation within 30 days of receiving it to\r\n        have access to this Membership. You won't have to use SuperCoins in your account to activate this membership.\r\n        Spending up to 100 rupees will get you two SuperCoins. You can earn up to 50 SuperCoins in a single order.\r\n        Besides, SuperCoins can be used to profit from a variety of services and offerings. Flipkart has been working on\r\n        bringing SuperCoins to the ecosystem since launching the concept in 2021. One move in this direction was the\r\n        introduction of SuperCoin Pay and SuperCoin Exchange. For Indians, choosing to shop is an emotional decision,\r\n        and rewarding it wholeheartedly creates a strong emotional connection with the business. This was a crucial\r\n        realisation that prompted the development of this loyalty programme. The Flipkart Plus phenomenon is\r\n        particularly pronounced in the heartland cities in Tier 2+ cities of India.</p>\r\n    <br>\r\n    <p class=\"hdg\">Flipkart Plus Membership Benefits</p>\r\n    <p class=\"cnt\">If you are a member of this loyalty program, you can earn up to four SuperCoins for every 100 rupees\r\n        you spend. This membership offers you free shipping on all Plus products. And, you can get early entry to sales\r\n        to take advantage of low prices before everyone else. You can also get priority assistance whenever you need it\r\n        and go ahead of the line. Additionally, you can benefit from a special offer that is exclusively offered to the\r\n        members. You can get assured enrollment in the Flipkart Pay Later service. To get this membership, all you need\r\n        to do is purchase your favourite or required item. By making purchases, you can earn Super Coins, which you can\r\n        then use on Flipkart Plus to redeem great rewards, deals, recharges, and more.</p>\r\n    <style>\r\n        p {\r\n            margin: 0;\r\n            padding: 0;\r\n        }\r\n\r\n        .hdg {\r\n            font-weight: bold;\r\n        }\r\n\r\n        .cnt {\r\n            font-size: 12px;\r\n        }\r\n    </style>\r\n`;\r\n\r\ndocument.getElementById(\"btmTxtP\").innerHTML = btmText;\r\n\r\ndocument.addEventListener(\"DOMContentLoaded\", () => {\r\n  fetch(\"products.json\")\r\n      .then(response => response.json())\r\n      .then(products => {\r\n          const productList = document.getElementById(\"productList\");\r\n          products.forEach(product => {\r\n              const productDiv = document.createElement(\"div\");\r\n              productDiv.className = \"product\";\r\n              productDiv.innerHTML = `\r\n                  <img src=\"${product.image}\" alt=\"Product Image\" />\r\n                  <div class=\"name\">${product.name}</div>\r\n                  <div class=\"price\">${product.price}</div>\r\n              `;\r\n              productList.appendChild(productDiv);\r\n          });\r\n      })\r\n      .catch(error => console.error(\"Error loading products:\", error));\r\n});\r\n\r\n// fetch header footer\r\n\r\ndocument.addEventListener(\"DOMContentLoaded\", () => {\r\n  const components = [\r\n    { id: \"header-plus\", url: \"../header/header.html\" },\r\n    { id: \"footer-plus\", url: \"../footer/footer.html\" },\r\n  ];\r\n\r\n  components.forEach((component) => {\r\n    fetch(component.url)\r\n      .then((response) => response.text())\r\n      .then((data) => {\r\n        document.getElementById(component.id).innerHTML = data;\r\n      })\r\n      .catch((error) =>\r\n        console.error(`Error loading ${component.url}:`, error)\r\n      );\r\n  });\r\n});\r\n"
  },
  {
    "path": "plus/products.json",
    "content": "[\n    {\n        \"name\": \"Moto G\",\n        \"price\": \"₹9999\",\n        \"image\": \"../img/phone-6.webp\",\n        \"category\": \"Mobile\"\n    },\n    {\n        \"name\": \"Poco M6\",\n        \"price\": \"₹11,999\",\n        \"image\": \"../img/phone-2.webp\",\n        \"category\": \"Mobile\"\n    },\n    {\n        \"name\": \"Poco C65\",\n        \"price\": \"₹21,999\",\n        \"image\": \"../img/phone-3.webp\",\n        \"category\": \"Mobile\"\n    },\n    {\n        \"name\": \"Moto A14\",\n        \"price\": \"₹19,999\",\n        \"image\": \"../img/phone-5.webp\",\n        \"category\": \"Mobile\"\n    },\n    {\n        \"name\": \"Samsung Galaxy\",\n        \"price\": \"₹15,999\",\n        \"image\": \"https://fdn2.gsmarena.com/vv/pics/samsung/samsung-galaxy-s22-ultra-5g-2.jpg\",\n        \"category\": \"Mobile\"\n    },\n    {\n        \"name\": \"iPhone 12\",\n        \"price\": \"₹59,999\",\n        \"image\": \"https://fdn2.gsmarena.com/vv/pics/apple/apple-iphone-12-r1.jpg\",\n        \"category\": \"Mobile\"\n    },\n    {\n        \"name\": \"Dell Inspiron 15\",\n        \"price\": \"₹45,999\",\n        \"image\": \"https://i.dell.com/is/image/DellContent/content/dam/ss2/product-images/dell-client-products/notebooks/inspiron-notebooks/15-3530-intel/media-gallery/silver-plastic/notebook-inspiron-15-3530-nt-plastic-usbc-silver-gallery-4.psd?fmt=pjpg&pscan=auto&scl=1&wid=4582&hei=2810&qlt=100,1&resMode=sharp2&size=4582,2810&chrss=full&imwidth=5000\",\n        \"category\": \"Laptop\"\n    },\n    {\n        \"name\": \"HP Pavilion x360\",\n        \"price\": \"₹55,999\",\n        \"image\": \"https://m.media-amazon.com/images/I/71Njhmxnc5L.jpg\",\n        \"category\": \"Laptop\"\n    },\n    {\n        \"name\": \"Apple MacBook Air\",\n        \"price\": \"₹92,999\",\n        \"image\": \"https://store.storeimages.cdn-apple.com/4668/as-images.apple.com/is/mba13-midnight-select-202402?wid=904&hei=840&fmt=jpeg&qlt=90&.v=1708367688034\",\n        \"category\": \"Laptop\"\n    },\n    {\n        \"name\": \"Logitech MX Master 3\",\n        \"price\": \"₹8,499\",\n        \"image\": \"https://m.media-amazon.com/images/I/613a-3jtieL.jpg\",\n        \"category\": \"Accessory\"\n    },\n    {\n        \"name\": \"Sony WH-1000XM4\",\n        \"price\": \"₹29,990\",\n        \"image\": \"https://www.sony.co.in/image/5d02da5df552836db894cead8a68f5f3?fmt=pjpeg&wid=330&bgcolor=FFFFFF&bgc=FFFFFF\",\n        \"category\": \"Accessory\"\n    },\n    {\n        \"name\": \"Philips Air Fryer\",\n        \"price\": \"₹12,999\",\n        \"image\": \"https://m.media-amazon.com/images/I/61uCr9G6hIL._AC_UF894,1000_QL80_.jpg\",\n        \"category\": \"Home Appliance\"\n    },\n    {\n        \"name\": \"Samsung 32' Smart TV\",\n        \"price\": \"₹22,999\",\n        \"image\": \"https://images.samsung.com/is/image/samsung/p6pim/in/ua32t4340akxxl/gallery/in-hd-tv-ua32t4340akxxl-front-black-537470101?$650_519_PNG$\",\n        \"category\": \"Home Appliance\"\n    }\n]\n"
  },
  {
    "path": "sell-online/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\" />\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\r\n    <title>Sell Online - start Selling Online On Flipkart Seller Hub</title>\r\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\r\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\r\n    <link rel=\"stylesheet\" href=\"./style.css\" />\r\n    <style>\r\n        #progress-container {\r\n            position: fixed;\r\n            top: 0px;\r\n            left: 0;\r\n            width: 100%;\r\n            height: 15px;\r\n            z-index: 99990;\r\n        }\r\n\r\n        #progress-bar {\r\n            height: 53%;\r\n            width: 0;\r\n            background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\r\n            box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\r\n            transition: width 0.09s ease-in-out;\r\n            border-radius: 10px;\r\n        }\r\n\r\n        .sell-online-form {\r\n            background-color: #ffffff;\r\n            border-radius: 8px;\r\n            padding: 30px;\r\n            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);\r\n            width: 80%;\r\n            max-width: 600px;\r\n            margin: 20px auto;\r\n        }\r\n\r\n        .sell-online-form h2 {\r\n            margin-top: 0;\r\n            font-size: 24px;\r\n            text-align: center;\r\n            margin-bottom: 20px;\r\n            color: #2874F0;\r\n        }\r\n\r\n        .sell-online-form .form-group {\r\n            margin-bottom: 20px;\r\n        }\r\n\r\n        .sell-online-form .form-group label {\r\n            display: block;\r\n            margin-bottom: 8px;\r\n            font-weight: bold;\r\n        }\r\n\r\n        .sell-online-form .form-group input {\r\n            width: 100%;\r\n            padding: 10px;\r\n            box-sizing: border-box;\r\n            border: 1px solid #ccc;\r\n            border-radius: 5px;\r\n            font-size: 16px;\r\n        }\r\n\r\n        .sell-online-form .btn {\r\n            padding: 12px 20px;\r\n            border: none;\r\n            background-color: #2874F0;\r\n            color: #fff;\r\n            cursor: pointer;\r\n            border-radius: 5px;\r\n            font-size: 16px;\r\n            margin-right: 10px;\r\n            transition: background-color 0.3s ease;\r\n        }\r\n\r\n        .sell-online-form .btn:hover {\r\n            background-color: #1a5bbf;\r\n        }\r\n\r\n        .sell-online-form .btn:disabled {\r\n            background-color: #ccc;\r\n            cursor: not-allowed;\r\n        }\r\n\r\n        .sell-online-form .form-step {\r\n            display: none;\r\n        }\r\n\r\n        .sell-online-form .form-step-active {\r\n            display: block;\r\n        }\r\n\r\n        .sell-online-form .form {\r\n            margin-top: 20px;\r\n        }\r\n\r\n        .sell-online-form .step-title {\r\n            font-size: 20px;\r\n            margin-bottom: 15px;\r\n            color: #333;\r\n            text-align: center;\r\n        }\r\n\r\n        .sell-online-form .btn-group {\r\n            text-align: center;\r\n            margin-top: 20px;\r\n        }\r\n\r\n        .sell-online-form .btn-group .btn {\r\n            margin: 5px;\r\n        }\r\n    </style>\r\n</head>\r\n<body>\r\n    <header id=\"header-orders\" class=\"text-center text-secondary fs-4\">\r\n        This is Header\r\n    </header>\r\n\r\n    <div id=\"progress-container\">\r\n        <div id=\"progress-bar\"></div>\r\n    </div>\r\n\r\n    <script>\r\n        window.addEventListener('scroll', function() {\r\n            const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\r\n            const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\r\n            const scrolled = (winScroll / height) * 100;\r\n            document.getElementById('progress-bar').style.width = scrolled + '%';\r\n        });\r\n    </script>\r\n\r\n    <div class=\"container orders\">\r\n        <div class=\"text\">\r\n            <div class=\"div1\">\r\n                <h1 class=\"Selling\">Sell Online with Flipkart</h1>\r\n                <main>\r\n                    <ul>\r\n                        <li>Sell to 45 crore+ Flipkart customers</li>\r\n                        <li>7+ days secure & regular payments</li>\r\n                        <li>Low cost of doing business</li>\r\n                        <li>Access to The Big Billion Days & more</li>\r\n                        <li>One click Seller Support</li>\r\n                    </ul>\r\n                </main>\r\n            </div>\r\n\r\n            <h2>Seller Success Stories</h2>\r\n            <p>Flipkart offers a diverse range of over 3000+ categories where you can sell your products. These categories represent just a fraction of the wide variety available on Flipkart, providing ample opportunities for sellers to showcase their products to a large customer base. Here are some popular categories to consider for online selling:</p>\r\n        </div>\r\n        <div class=\"bg-img\">\r\n            <img src=\"Desktop_sell.png\" alt=\"Sell Online\">\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"container\">\r\n        <h2>Create Account</h2>\r\n        <p>Creating your Flipkart seller account is a quick process, taking less than 10 minutes, and requires only 3 documents. Follow the checklist to ensure a seamless account creation experience. By having these documents ready, you can streamline the account creation process and get started on Flipkart as an online seller in no time.</p>\r\n        <p>* for selling in all categories except for book<br>** for selling under books category</p>\r\n\r\n        <div class=\"gstin-box\">\r\n            <h3>Don’t have a GSTIN?</h3>\r\n            <p>Follow the steps below to generate for your online business.</p>\r\n            <div class=\"steps\">\r\n                <div class=\"step\">\r\n                    <p><a href=\"https://www.gst.gov.in\">Register / Login to www.gst.gov.in</a></p>\r\n                </div>\r\n                <div class=\"step\">\r\n                    <p>Fill in the GST Enrolment Application Form</p>\r\n                </div>\r\n                <div class=\"step\">\r\n                    <p>Submit Enrolment Application</p>\r\n                </div>\r\n            </div>\r\n        </div>\r\n\r\n        <p>Flipkart offers a diverse range of over 3000+ categories where you can sell your products. These categories represent just a fraction of the wide variety available on Flipkart, providing ample opportunities for sellers to showcase their products to a large customer base. Here are some popular categories to consider for online selling:</p>\r\n    </div>\r\n\r\n    <div class=\"container\">\r\n        <h2>Grow Faster</h2>\r\n        <p>\r\n            At Flipkart, we recognize that there may be times when you require additional assistance for your online business. That's why, with your Flipkart seller account, you gain access to a diverse range of tools and support functions designed to foster business growth. These include:\r\n        </p>\r\n        <ul>\r\n            <li>Price Recommendation Tool: Helps you determine optimal pricing for your products.</li>\r\n            <li>Product Recommendation Tool: Suggests popular and trending products to expand your product selection.</li>\r\n            <li>Flipkart Ads: Enables you to advertise your products and reach a larger customer base.</li>\r\n            <li>Paid Account Management services: Offers dedicated account management support for personalised guidance.</li>\r\n            <li>Catalog & Photoshoot services: Assists with creating high-quality product catalogues and images.</li>\r\n            <li>Shopping Festivals and more: Participate in exciting sales events and promotional campaigns.</li>\r\n        </ul>\r\n        <p><a href=\"#\">Know more</a> on how to grow your business</p>\r\n    </div>\r\n\r\n    <div class=\"help-support\">\r\n        <h2>Help & Support</h2>\r\n        <p>What sets us apart is our exceptional Flipkart seller support assistance. We prioritize your needs and are committed to providing you with prompt assistance, whether you have questions, doubts, or require any kind of support for your business. Our dedicated team is here to help you every step of the way, ensuring that you have a smooth and successful selling experience on Flipkart. Feel free to reach out to us whenever you need assistance - we're always here to support you.</p>\r\n        <p><a href=\"#\">Know more</a> about the assistance we offer.</p>\r\n        <p>A step-by-step guide to help with your Flipkart account creation can be <a href=\"#\">downloaded from here</a>.</p>\r\n    </div>\r\n\r\n    <div class=\"sell-online-form\">\r\n        <h2>Start Selling on Flipkart</h2>\r\n        <div id=\"step1\" class=\"form-step form-step-active\">\r\n            <div class=\"step-title\">Step 1: Business Details</div>\r\n            <form>\r\n                <div class=\"form-group\">\r\n                    <label for=\"business-name\">Business Name</label>\r\n                    <input type=\"text\" id=\"business-name\" name=\"business-name\" required>\r\n                </div>\r\n                <div class=\"form-group\">\r\n                    <label for=\"gstin\">GSTIN</label>\r\n                    <input type=\"text\" id=\"gstin\" name=\"gstin\" required>\r\n                </div>\r\n                <div class=\"form-group\">\r\n                    <label for=\"email\">Email</label>\r\n                    <input type=\"email\" id=\"email\" name=\"email\" required>\r\n                </div>\r\n                <div class=\"btn-group\">\r\n                    <button type=\"button\" class=\"btn next-btn\">Next</button>\r\n                </div>\r\n            </form>\r\n        </div>\r\n\r\n        <div id=\"step2\" class=\"form-step\">\r\n            <div class=\"step-title\">Step 2: Personal Details</div>\r\n            <form>\r\n                <div class=\"form-group\">\r\n                    <label for=\"name\">Name</label>\r\n                    <input type=\"text\" id=\"name\" name=\"name\" required>\r\n                </div>\r\n                <div class=\"form-group\">\r\n                    <label for=\"mobile\">Mobile</label>\r\n                    <input type=\"text\" id=\"mobile\" name=\"mobile\" required>\r\n                </div>\r\n                <div class=\"btn-group\">\r\n                    <button type=\"button\" class=\"btn prev-btn\">Previous</button>\r\n                    <button type=\"button\" class=\"btn next-btn\">Next</button>\r\n                </div>\r\n            </form>\r\n        </div>\r\n\r\n        <div id=\"step3\" class=\"form-step\">\r\n            <div class=\"step-title\">Step 3: Bank Details</div>\r\n            <form>\r\n                <div class=\"form-group\">\r\n                    <label for=\"account-number\">Account Number</label>\r\n                    <input type=\"text\" id=\"account-number\" name=\"account-number\" required>\r\n                </div>\r\n                <div class=\"form-group\">\r\n                    <label for=\"ifsc\">IFSC Code</label>\r\n                    <input type=\"text\" id=\"ifsc\" name=\"ifsc\" required>\r\n                </div>\r\n                <div class=\"btn-group\">\r\n                    <button type=\"button\" class=\"btn prev-btn\">Previous</button>\r\n                    <button type=\"button\" class=\"btn submit-btn\">Submit</button>\r\n                </div>\r\n            </form>\r\n        </div>\r\n    </div>\r\n\r\n    <script>\r\n        document.addEventListener('DOMContentLoaded', function() {\r\n            const nextBtns = document.querySelectorAll('.next-btn');\r\n            const prevBtns = document.querySelectorAll('.prev-btn');\r\n            const formSteps = document.querySelectorAll('.form-step');\r\n\r\n            let formStepsNum = 0;\r\n\r\n            nextBtns.forEach(btn => {\r\n                btn.addEventListener('click', () => {\r\n                    formStepsNum++;\r\n                    updateFormSteps();\r\n                });\r\n            });\r\n\r\n            prevBtns.forEach(btn => {\r\n                btn.addEventListener('click', () => {\r\n                    formStepsNum--;\r\n                    updateFormSteps();\r\n                });\r\n            });\r\n\r\n            function updateFormSteps() {\r\n                formSteps.forEach(formStep => {\r\n                    formStep.classList.contains('form-step-active') && formStep.classList.remove('form-step-active');\r\n                });\r\n                formSteps[formStepsNum].classList.add('form-step-active');\r\n            }\r\n        });\r\n    </script>\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "sell-online/script.js",
    "content": "document.addEventListener('DOMContentLoaded', function () {\n    const form = document.getElementById('sellForm');\n    const formSteps = Array.from(document.querySelectorAll('.form-step'));\n    const nextButtons = Array.from(document.querySelectorAll('.btn-next'));\n    const prevButtons = Array.from(document.querySelectorAll('.btn-prev'));\n    const submitButton = form.querySelector('.btn-submit');\n    \n    let currentStep = 0;\n\n    nextButtons.forEach((button, index) => {\n        button.addEventListener('click', () => {\n            if (validateFormStep(index)) {\n                currentStep++;\n                updateFormSteps();\n            }\n        });\n    });\n\n    prevButtons.forEach((button) => {\n        button.addEventListener('click', () => {\n            currentStep--;\n            updateFormSteps();\n        });\n    });\n\n    form.addEventListener('submit', (e) => {\n        e.preventDefault();\n        Swal.fire(\n            'Good job!',\n            'Form Submitted Successfully!',\n            'success'\n        );\n    });\n\n    function updateFormSteps() {\n        formSteps.forEach((step, index) => {\n            step.classList.toggle('form-step-active', index === currentStep);\n        });\n    }\n\n    function validateFormStep(index) {\n        const inputs = formSteps[index].querySelectorAll('input');\n        for (let input of inputs) {\n            if (!input.value) {\n                alert(`Please fill in the ${input.previousElementSibling.innerText}`);\n                return false;\n            }\n        }\n        return true;\n    }\n\n    updateFormSteps();\n});\n"
  },
  {
    "path": "sell-online/styles.css",
    "content": "body {\n    font-family: Arial, sans-serif;\n}\n\n.sell-online-form {\n    background-color: #ffffff;\n    border-radius: 8px;\n    padding: 30px;\n    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);\n    width: 80%;\n    max-width: 600px;\n    margin: 20px auto;\n}\n\n.sell-online-form h2 {\n    margin-top: 0;\n    font-size: 24px;\n    text-align: center;\n    margin-bottom: 20px;\n    color: #2874F0;\n}\n\n.sell-online-form .form-group {\n    margin-bottom: 20px;\n}\n\n.sell-online-form .form-group label {\n    display: block;\n    margin-bottom: 8px;\n    font-weight: bold;\n}\n\n.sell-online-form .form-group input {\n    width: 100%;\n    padding: 10px;\n    box-sizing: border-box;\n    border: 1px solid #ccc;\n    border-radius: 5px;\n    font-size: 16px;\n}\n\n.sell-online-form .btn {\n    padding: 12px 20px;\n    border: none;\n    background-color: #2874F0;\n    color: #fff;\n    cursor: pointer;\n    border-radius: 5px;\n    font-size: 16px;\n    margin-right: 10px;\n    transition: background-color 0.3s ease;\n}\n\n.sell-online-form .btn:hover {\n    background-color: #1a5bbf;\n}\n\n.sell-online-form .btn:disabled {\n    background-color: #ccc;\n    cursor: not-allowed;\n}\n\n.sell-online-form .form-step {\n    display: none;\n}\n\n.sell-online-form .form-step-active {\n    display: block;\n}\n\n.sell-online-form .form {\n    margin-top: 20px;\n}\n\n.sell-online-form .step-title {\n    font-size: 20px;\n    margin-bottom: 15px;\n    color: #333;\n    text-align: center;\n}\n\n.sell-online-form .btn-group {\n    text-align: center;\n    margin-top: 20px;\n}\n\n.sell-online-form .btn-group .btn {\n    margin: 5px;\n}\n"
  },
  {
    "path": "server_backend/.gitignore",
    "content": "# npm\nnode_modules\npackage-lock.json\n*.log\n*.gz\n\n# Coveralls\n.nyc_output\ncoverage\n\n# Benchmarking\nbenchmarks/graphs\n\n# ignore additional files using core.excludesFile\n# https://git-scm.com/docs/gitignore"
  },
  {
    "path": "server_backend/db.js",
    "content": "const mongoose = require('mongoose');\nconst dotenv = require('dotenv');\n\ndotenv.config();\n\nconst connectDB = async () => {\n    try {\n      await mongoose.connect(process.env.MONGOURI, {\n        useNewUrlParser: true,\n        useUnifiedTopology: true,\n      });\n      console.log('MongoDB Connected...');\n    } catch (err) {\n      console.error(err.message);\n      // Exit process with failure\n      process.exit(1);\n    }\n  };\n\nmodule.exports = connectDB;"
  },
  {
    "path": "server_backend/index.js",
    "content": "const express = require('express');\nconst connectDB = require('./db');\nconst authRoutes = require('./routes/auth');\nconst dotenv = require('dotenv');\nconst cors = require('cors');\n\ndotenv.config();\n\nconst app = express();\n\n// cors added\napp.use(cors());\n\n// Connect Database\nconnectDB();\n\n// Init Middleware\napp.use(express.json({ extended: false }));\n\n// Define Routes\napp.use('/api', authRoutes);\n\napp.get('/',()=>{\n    '<h1>Server Started</h1>'\n})\n\nconst PORT = process.env.PORT || 5000;\n\napp.listen(PORT, () => console.log(`Server started on port http://localhost:${PORT}`));\n"
  },
  {
    "path": "server_backend/models/User.js",
    "content": "const mongoose = require('mongoose');\n\nconst UserSchema = new mongoose.Schema({\n  email: {\n    type: String,\n    required: true,\n    unique: true,\n  },\n  password: {\n    type: String,\n    required: true,\n  },\n  otp: String,\n  otpExpires: Date,\n});\n\nmodule.exports = mongoose.model('User', UserSchema);\n"
  },
  {
    "path": "server_backend/package.json",
    "content": "{\n  \"name\": \"server_backend\",\n  \"version\": \"1.0.0\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n    \"start\": \"nodemon index.js\"\n  },\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"description\": \"\",\n  \"dependencies\": {\n    \"bcryptjs\": \"^2.4.3\",\n    \"body-parser\": \"^1.20.2\",\n    \"cors\": \"^2.8.5\",\n    \"crypto\": \"^1.0.1\",\n    \"dotenv\": \"^16.4.5\",\n    \"express\": \"^4.19.2\",\n    \"jsonwebtoken\": \"^9.0.2\",\n    \"mongodb\": \"^6.8.0\",\n    \"mongoose\": \"^8.5.1\",\n    \"nodemailer\": \"^6.9.14\",\n    \"nodemon\": \"^3.1.4\"\n  }\n}\n"
  },
  {
    "path": "server_backend/routes/auth.js",
    "content": "const express = require('express');\nconst router = express.Router();\nconst bcrypt = require('bcryptjs');\nconst jwt = require('jsonwebtoken');\nconst User = require('../models/User');\nconst dotenv = require('dotenv');\nconst crypto = require('crypto');\nconst nodemailer = require('nodemailer');\n\ndotenv.config();\n\nconst transporter = nodemailer.createTransport({\n  service: 'Gmail',\n  auth: {\n    user: process.env.EMAIL_USER,\n    pass: process.env.EMAIL_PASS,\n  },\n});\n\n\n// Register route\nrouter.post('/register', async (req, res) => {\n  const { email, password } = req.body;\n\n  try {\n    let user = await User.findOne({ email });\n\n    if (user) {\n      return res.status(400).json({ msg: 'email already exists' });\n    }\n\n    user = new User({\n      email,\n      password,\n    });\n\n    const salt = await bcrypt.genSalt(10);\n    user.password = await bcrypt.hash(password, salt);\n\n    await user.save();\n\n    const payload = {\n      user: {\n        id: user.id,\n      },\n    };\n\n    jwt.sign(\n      payload,\n      process.env.JWTSECRET,\n      { expiresIn: 3600 }, // Token expires in 1 hour\n      (err, token) => {\n        if (err) throw err;\n        res.json({ token });\n      }\n    );\n  } catch (err) {\n    console.error(err.message);\n    res.status(500).send('Server Error');\n  }\n});\n\n// Login route\nrouter.post('/login', async (req, res) => {\n  const { email, password } = req.body;\n\n  try {\n    let user = await User.findOne({ email });\n\n    if (!user) {\n      return res.status(400).json({ msg: 'Invalid Credentials' });\n    }\n\n    const isMatch = await bcrypt.compare(password, user.password);\n\n    if (!isMatch) {\n      return res.status(400).json({ msg: 'Invalid Credentials' });\n    }\n\n    const payload = {\n      user: {\n        id: user.id,\n      },\n    };\n\n    jwt.sign(\n      payload,\n      process.env.JWTSECRET,\n      { expiresIn: 3600 },\n      (err, token) => {\n        if (err) throw err;\n        res.json({ token });\n      }\n    );\n  } catch (err) {\n    console.error(err.message);\n    res.status(500).send('Server Error');\n  }\n});\n\n\n// Generate OTP and send email\nrouter.post('/send-otp', async (req, res) => {\n  const { email } = req.body;\n\n  try {\n    // Check if user exists\n    const user = await User.findOne({ email });\n    if (!user) {\n      return res.status(400).json({ msg: 'Email not registered' });\n    }\n\n    const otp = crypto.randomInt(100000, 999999).toString();\n    \n    user.otp = otp;\n    user.otpExpires = Date.now() + 15 * 60 * 1000;\n    await user.save();\n\n    const mailOptions = {\n      from: process.env.EMAIL_USER,\n      to: email,\n      subject: 'Your OTP Code',\n      text: `Your OTP code is ${otp}. It is valid for 15 minutes.`,\n    };\n\n    transporter.sendMail(mailOptions, (error, info) => {\n      if (error) {\n        console.error('Error sending email:', error);\n        return res.status(500).json({ msg: 'Error sending OTP email' });\n      }\n      res.json({ msg: 'OTP sent' });\n    });\n  } catch (err) {\n    console.error(err.message);\n    res.status(500).send('Server Error');\n  }\n});\n\n\n\nmodule.exports = router;\n"
  },
  {
    "path": "src/Beauty, Toys & More/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Beauty, Toys & More/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Beauty, Toys & More/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('beauty'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Electronics/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Electronics/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Electronics/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('electronic'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Fashion/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Fashion/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Fashion/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('fashion'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Furniture/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Furniture/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Furniture/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('furniture'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Grocery/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Grocery/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Grocery/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('grocery'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Home & Kitchen/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Home & Kitchen/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Home & Kitchen/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('home'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Mobile Store.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Mobile Shop</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n</head>\n  <style>\n    body {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n}\n\nheader {\n    background-color: #333;\n    color: white;\n    padding: 1em 0;\n    text-align: center;\n}\n\nheader h1 {\n    margin: 0;\n}\n\nnav ul {\n    list-style: none;\n    padding: 0;\n}\n\nnav ul li {\n    display: inline;\n    margin: 0 1em;\n}\n\nnav ul li a {\n    color: white;\n    text-decoration: none;\n}\n\nsection {\n    padding: 2em;\n    text-align: center;\n}\n\n.product-list {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: center;\n}\n\n.product-item {\n    border: 1px solid #ccc;\n    border-radius: 8px;\n    margin: 1em;\n    padding: 1em;\n    width: 200px;\n}\n\n.product-item img {\n    max-width: 100%;\n    height: auto;\n}\n\nfooter {\n    background-color: #333;\n    color: white;\n    padding: 1em 0;\n    text-align: center;\n}\n\nform {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n}\n\nform label {\n    margin-top: 1em;\n}\n\nform input, form textarea {\n    margin-top: 0.5em;\n    padding: 0.5em;\n    width: 100%;\n    max-width: 300px;\n}\n\nform button {\n    margin-top: 1em;\n    padding: 0.5em 1em;\n}\n\n  </style>\n<body>\n    <header>\n        <h1>Mobile Shop</h1>\n        <nav>\n            <ul>\n                <li><a href=\"#home\">Home</a></li>\n                <li><a href=\"#products\">Products</a></li>\n                <li><a href=\"#about\">About</a></li>\n                <li><a href=\"#contact\">Contact</a></li>\n            </ul>\n        </nav>\n    </header>\n\n    <section id=\"home\">\n        <h2>Welcome to Our Mobile Shop</h2>\n        <p>Find the latest and greatest mobile phones here!</p>\n    </section>\n\n    <section id=\"products\">\n        <h2>Products</h2>\n        <div class=\"product-list\">\n            <!-- Product items will be injected here by JavaScript -->\n        </div>\n    </section>\n\n    <section id=\"about\">\n        <h2>About Us</h2>\n        <p>We are a leading mobile shop providing the best smartphones at competitive prices.</p>\n    </section>\n\n    <section id=\"contact\">\n        <h2>Contact Us</h2>\n        <form id=\"contact-form\">\n            <label for=\"name\">Name:</label>\n            <input type=\"text\" id=\"name\" name=\"name\" required>\n            <label for=\"email\">Email:</label>\n            <input type=\"email\" id=\"email\" name=\"email\" required>\n            <label for=\"message\">Message:</label>\n            <textarea id=\"message\" name=\"message\" required></textarea>\n            <button type=\"submit\">Send</button>\n        </form>\n    </section>\n\n    <footer>\n        <p>&copy; 2024 Mobile Shop. All rights reserved.</p>\n    </footer>\n\n    <script>\n      document.addEventListener(\"DOMContentLoaded\", function() {\n    const products = [\n        { name: \"iPhone 13\", price: \"$799\", image: \"https://via.placeholder.com/150\" },\n        { name: \"Samsung Galaxy S21\", price: \"$699\", image: \"https://via.placeholder.com/150\" },\n        { name: \"Google Pixel 6\", price: \"$599\", image: \"https://via.placeholder.com/150\" },\n    ];\n\n    const productList = document.querySelector(\".product-list\");\n\n    products.forEach(product => {\n        const productItem = document.createElement(\"div\");\n        productItem.classList.add(\"product-item\");\n\n        productItem.innerHTML = `\n            <img src=\"${product.image}\" alt=\"${product.name}\">\n            <h3>${product.name}</h3>\n            <p>${product.price}</p>\n        `;\n\n        productList.appendChild(productItem);\n    });\n\n    document.getElementById(\"contact-form\").addEventListener(\"submit\", function(event) {\n        event.preventDefault();\n        alert(\"Thank you for your message!\");\n    });\n});\n\n    </script>\n</body>\n</html>\n"
  },
  {
    "path": "src/Mobile and Tab Store.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Mobile Shop</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n</head>\n  <style>\n    body {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n}\n\nheader {\n    background-color: #333;\n    color: white;\n    padding: 1em 0;\n    text-align: center;\n}\n\nheader h1 {\n    margin: 0;\n}\n\nnav ul {\n    list-style: none;\n    padding: 0;\n}\n\nnav ul li {\n    display: inline;\n    margin: 0 1em;\n}\n\nnav ul li a {\n    color: white;\n    text-decoration: none;\n}\n\nsection {\n    padding: 2em;\n    text-align: center;\n}\n\n.product-list {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: center;\n}\n\n.product-item {\n    border: 1px solid #ccc;\n    border-radius: 8px;\n    margin: 1em;\n    padding: 1em;\n    width: 200px;\n}\n\n.product-item img {\n    max-width: 100%;\n    height: auto;\n}\n\nfooter {\n    background-color: #333;\n    color: white;\n    padding: 1em 0;\n    text-align: center;\n}\n\nform {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n}\n\nform label {\n    margin-top: 1em;\n}\n\nform input, form textarea {\n    margin-top: 0.5em;\n    padding: 0.5em;\n    width: 100%;\n    max-width: 300px;\n}\n\nform button {\n    margin-top: 1em;\n    padding: 0.5em 1em;\n}\n\n  </style>\n<body>\n    <header>\n        <h1>Mobile Shop</h1>\n        <nav>\n            <ul>\n                <li><a href=\"#home\">Home</a></li>\n                <li><a href=\"#products\">Products</a></li>\n                <li><a href=\"#about\">About</a></li>\n                <li><a href=\"#contact\">Contact</a></li>\n            </ul>\n        </nav>\n    </header>\n\n    <section id=\"home\">\n        <h2>Welcome to Our Mobile Shop</h2>\n        <p>Find the latest and greatest mobile phones here!</p>\n    </section>\n\n    <section id=\"products\">\n        <h2>Products</h2>\n        <div class=\"product-list\">\n            <!-- Product items will be injected here by JavaScript -->\n        </div>\n    </section>\n\n    <section id=\"about\">\n        <h2>About Us</h2>\n        <p>We are a leading mobile shop providing the best smartphones at competitive prices.</p>\n    </section>\n\n    <section id=\"contact\">\n        <h2>Contact Us</h2>\n        <form id=\"contact-form\">\n            <label for=\"name\">Name:</label>\n            <input type=\"text\" id=\"name\" name=\"name\" required>\n            <label for=\"email\">Email:</label>\n            <input type=\"email\" id=\"email\" name=\"email\" required>\n            <label for=\"message\">Message:</label>\n            <textarea id=\"message\" name=\"message\" required></textarea>\n            <button type=\"submit\">Send</button>\n        </form>\n    </section>\n\n    <footer>\n        <p>&copy; 2024 Mobile Shop. All rights reserved.</p>\n    </footer>\n\n    <script>\n      document.addEventListener(\"DOMContentLoaded\", function() {\n    const products = [\n        { name: \"iPhone 13\", price: \"$799\", image: \"https://via.placeholder.com/150\" },\n        { name: \"Samsung Galaxy S21\", price: \"$699\", image: \"https://via.placeholder.com/150\" },\n        { name: \"Google Pixel 6\", price: \"$599\", image: \"https://via.placeholder.com/150\" },\n    ];\n\n    const productList = document.querySelector(\".product-list\");\n\n    products.forEach(product => {\n        const productItem = document.createElement(\"div\");\n        productItem.classList.add(\"product-item\");\n\n        productItem.innerHTML = `\n            <img src=\"${product.image}\" alt=\"${product.name}\">\n            <h3>${product.name}</h3>\n            <p>${product.price}</p>\n        `;\n\n        productList.appendChild(productItem);\n    });\n\n    document.getElementById(\"contact-form\").addEventListener(\"submit\", function(event) {\n        event.preventDefault();\n        alert(\"Thank you for your message!\");\n    });\n});\n\n    </script>\n</body>\n</html>\n"
  },
  {
    "path": "src/Mobiles & Tablets/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Mobiles & Tablets/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Mobiles & Tablets/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('mobile'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Mobiles & Tablets - Copy/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Flipkart</title>\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" class=\"text-center text-secondary fs-4\"></header>\r\n    <h1 style=\"text-align: center;\">Comming Soon</h1>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script>\r\n        document.addEventListener(\"DOMContentLoaded\", () => {\r\n            [\r\n                { id: \"footer\", url: \"../../components/footer.html\" },\r\n                { id: \"header\", url: \"../../components/header.html\" },\r\n            ].forEach(({ id, url }) =>\r\n                fetch(url)\r\n                    .then((res) => res.text())\r\n                    .then((data) => (document.getElementById(id).innerHTML = data))\r\n                    .catch((err) => console.error(`Error loading ${url}:`, err))\r\n            );\r\n        });\r\n\r\n    </script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/TVs & Appliances/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/TVs & Appliances/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/TVs & Appliances/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('appliances'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/Top Offers/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Top Offers/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <link rel=\"icon\" type=\"image/x-icon\" href=\"../../img/flipkart_favicon.ico\">\r\n  <title>Flipkart | Top Offers</title>\r\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/bootstrap.min.css\">\r\n  <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\r\n</head>\r\n\r\n<body>\r\n  <header id=\"header-TO\"></header>\r\n  <div class=\"containter-fluid bg-white\">\r\n    <div class=\"containter-fluid p-3 mt-1\" style=\"border-bottom: 1px solid #e4e7eb; background: #196dd0;\">\r\n      <h1 class=\"text-white\">Top Offers</h1>\r\n    </div>\r\n    <div class=\"container-fluid\">\r\n      <img src=\"xyz1.jpg\" alt=\"topOffers\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"xyz2.jpg\" alt=\"topOffers\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"xyz3.jpg\" alt=\"topOffers\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"xyz4.jpg\" alt=\"topOffers\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"../../img/fashion-.webp\" alt=\"fashion\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"../../img/electronics.webp\" alt=\"fashion\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"../../img/home.webp\" alt=\"fashion\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"../../img/ferniture1.webp\" alt=\"fashion\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"../../img/smartPhone.webp\" alt=\"fashion\" class=\"img-fluid\" width=\"100%\">\r\n      <img src=\"../../img/grooming.webp\" alt=\"fashion\" class=\"img-fluid\" width=\"100%\">\r\n    </div>\r\n  </div>\r\n  <footer id=\"footer-TO\" style=\"background-color: #292d33;\"> </footer>\r\n  <!-- javaScript -->\r\n  <script src=\"../js/bootstrap.bundle.min.js\"></script>\r\n  <script>\r\n// for header and footer\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    const components = [\r\n        { id: 'footer-TO', url: '../../components/footer.html' },\r\n        { id: 'header-TO', url: '../../components/header.html' },\r\n    ];\r\n\r\n    components.forEach(component => {\r\n        fetch(component.url)\r\n            .then(response => response.text())\r\n            .then(data => {\r\n                document.getElementById(component.id).innerHTML = data;\r\n            })\r\n            .catch(error => console.error(`Error loading ${component.url}:`, error));\r\n    });\r\n});\r\n\r\n// header search bar search function \r\nsetTimeout(() => {  \r\n  const inputField_h = document.getElementById('inputField_h');\r\n  const fetchButton_h = document.getElementById('fetchButton_h');\r\n\r\n  function fetchValue_h() {\r\n      const value = inputField_h.value;\r\n      window.location.href = `../search/?query=${value}`;\r\n  }\r\n \r\n  fetchButton_h.addEventListener('click', fetchValue_h);\r\n\r\n  inputField_h.addEventListener('keydown', (event) => {\r\n      if (event.key === 'Enter') {\r\n          fetchValue_h();\r\n      }\r\n  });\r\n\r\n\r\n}, 500);\r\n\r\n//end \r\n\r\n  </script>\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "src/Travel/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Travel/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n\t<meta charset=\"UTF-8\">\n\t<meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\t<link rel=\"icon\" type=\"image/x-icon\" href=\"../../img/flipkart_favicon.ico\">\n\t<title>Flight bookings, Cheap flights, Lowest Air tickets at Flipkart.com</title>\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"../../css/bootstrap.min.css\">\n\t<link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"travel-style.css\">\n</head>\n\n<body>\n\t<!-- Header -->\n\t<header id=\"header\"></header>\n\n\t<div class=\"d-flex justify-content-center align-items-end m-2 pb-4\"\n\t\tstyle=\"background-image: url(../../img/getSetTravel.webp); height: 75vh; background-size: cover;\">\n\t\t<div class=\"bookTripForm mb-4\">\n\t\t\t<div class=\"d-flex flex-column \">\n\t\t\t\t<div class=\"radioButton d-flex\">\n\t\t\t\t\t<div class=\"custom-control custom-radio custom-control-inline p-2\">\n\t\t\t\t\t\t<input type=\"radio\" id=\"customRadioInline1\" name=\"customRadioInline1\" class=\"custom-control-input\">\n\t\t\t\t\t\t<label class=\"custom-control-label\" for=\"customRadioInline1\">One Way</label>\n\t\t\t\t\t  </div>\n\t\t\t\t\t  <div class=\"custom-control custom-radio custom-control-inline p-2\">\n\t\t\t\t\t\t<input type=\"radio\" id=\"customRadioInline2\" name=\"customRadioInline1\" class=\"custom-control-input\" checked>\n\t\t\t\t\t\t<label class=\"custom-control-label\" for=\"customRadioInline2\">Round Trip</label>\n\t\t\t\t\t  </div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"formSection d-flex\">\t\t\t\t\t\n\t\t\t\t\t<div class=\"d-flex\">\n\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t<input required=\"\" placeholder=\"\" type=\"text\" class=\"input\" width=\"200px\">\n\t\t\t\t\t\t\t<span>From</span>\n\t\t\t\t\t\t\t<p style=\"font-size: smaller;\">Any worldwide city or airport</p>\n\t\t\t\t\t\t</label>\n\t\t\t\t\n\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t<input required=\"\" placeholder=\"\" type=\"text\" class=\"input\"width=\"200px\">\n\t\t\t\t\t\t\t<span>To</span>\n\t\t\t\t\t\t\t<p style=\"font-size: smaller;\">Any worldwide city or airport</p>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t<input required=\"\" placeholder=\"\" type=\"date\" class=\"input\" id=\"toDayDate\" style=\"width: 150px;\">\n\t\t\t\t\t\t\t<span>Depart On</span>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t<input required=\"\" placeholder=\"\" type=\"date\" class=\"input\" id=\"returnDayDate\"style=\"width: 150px;\">\n\t\t\t\t\t\t\t<span>Return On</span>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t<input required=\"\" placeholder=\"\" value=\"1 Traveler | Economy\" type=\"text\" readonly class=\"input\">\n\t\t\t\t\t\t\t<span style=\" top: 30px;\">Travelers | Class</span>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t<button class=\"btn btn-primary mt-1\">Submit</button>\n\t\t\t\t\t\t</label>\n\t\t\t\t\t</div>  \n\t\t\t\t\t\n\t\t\t\t</div>\n\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\n\t<!-- carousel start -->\n\t<div class=\"container-fluid\">\n\t\t<div id=\"carouselExampleIndicators\" class=\"carousel slide\" data-bs-ride=\"carousel\">\n\t\t\t<div class=\"carousel-indicators\">\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"0\" class=\"active\"\n\t\t\t\t\taria-current=\"true\" aria-label=\"Slide 1\"></button>\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"1\"\n\t\t\t\t\taria-label=\"Slide 2\"></button>\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"2\"\n\t\t\t\t\taria-label=\"Slide 3\"></button>\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"3\"\n\t\t\t\t\taria-label=\"Slide 4\"></button>\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"4\"\n\t\t\t\t\taria-label=\"Slide 5\"></button>\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"5\"\n\t\t\t\t\taria-label=\"Slide 6\"></button>\n\t\t\t\t<button type=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide-to=\"6\"\n\t\t\t\t\taria-label=\"Slide 7\"></button>\n\t\t\t</div>\n\t\t\t<div class=\"carousel-inner\">\n\t\t\t\t<div class=\"carousel-item active\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel1.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"carousel-item\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel2.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"carousel-item\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel3.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"carousel-item\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel4.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"carousel-item\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel2.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"carousel-item\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel4.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t\t<div class=\"carousel-item\">\n\t\t\t\t\t<img src=\"../../img/travelcarousel3.jpg\" class=\"d-block w-100\" alt=\"...\">\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<button class=\"carousel-control-prev bg-white\" style=\"width: 35px; height: 45%;  margin-top: 60px;\"\n\t\t\t\ttype=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide=\"prev\">\n\t\t\t\t<span class=\"carousel-control-prev-icon\" aria-hidden=\"true\"></span>\n\t\t\t\t<i class=\"bi bi-caret-left\" style=\"color: black; z-index: 50; margin-right: 10px;\"></i>\n\t\t\t\t<span class=\"visually-hidden\">Previous</span>\n\t\t\t</button>\n\t\t\t<button class=\"carousel-control-next bg-white\" style=\"width: 35px; height: 45%;margin-top: 60px;\"\n\t\t\t\ttype=\"button\" data-bs-target=\"#carouselExampleIndicators\" data-bs-slide=\"next\">\n\t\t\t\t<span class=\"carousel-control-next-icon\" aria-hidden=\"true\"></span>\n\t\t\t\t<i class=\"bi bi-caret-right\" style=\"color: black; z-index: 50; margin-right: 10px;\"></i>\n\t\t\t\t<span class=\"visually-hidden\">Next</span>\n\t\t\t</button>\n\t\t</div>\n\t</div>\n\t<!-- carousel end -->\n\n\t<div class=\"container-fluid d-flex justify-content-center\">\n\t\t<img src=\"../../img/314d78512857f86d.png\" class=\"img-fluid\" alt=\"\">\n\t</div>\n\t<div class=\"container-fluid\">\n\t\t<div class=\"row\">\n\t\t\t<div class=\"col-md-4\">\n\t\t\t\t<img src=\"../../img/domesticFlights.webp\" class=\"img-fluid\" alt=\"\">\n\t\t\t</div>\n\t\t\t<div class=\"col-md-4\">\n\t\t\t\t<img src=\"../../img/internationalFlights.webp\" class=\"img-fluid\" alt=\"\">\n\t\t\t</div>\n\t\t\t<div class=\"col-md-4\">\n\t\t\t\t<img src=\"../../img/domesticFlights0.webp\" class=\"img-fluid\" alt=\"\">\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\t<div class=\"container-fluid\">\n\t\t<div class=\"row\">\n\t\t\t<div class=\"col-12\">\n\t\t\t\t<img src=\"../../img/tobankoffer.png\" width=\"100%\" alt=\"\">\n\t\t\t</div>\n\t\t\t<div class=\"col-12\">\n\t\t\t\t<img src=\"../../img/additionalCashbackAxisflip.webp\" width=\"100%\" alt=\"\">\n\t\t\t</div>\n\t\t\t<div class=\"col-12\">\n\t\t\t\t<img src=\"../../img/travelFlivacto.JPG\" width=\"100%\" alt=\"\">\n\t\t\t</div>\n\t\t\t<p class=\"p-4\" style=\"background-color:#f8f8f8 ;\">Thanks to online portals, you don’t have to depend on\n\t\t\t\ttravel\n\t\t\t\tagents or anyone else to make flight bookings. You\n\t\t\t\tcan use your laptop or mobile phone to go through all the available flights, hotels, resorts, and more\n\t\t\t\tto make\n\t\t\t\tall\n\t\t\t\tyour flight ticket bookings. Most of these portals offer many festive flight offers that will help you\n\t\t\t\tbook\n\t\t\t\tinternational and domestic flights at great prices. This way, you can stay within your budget. Once you\n\t\t\t\ttake\n\t\t\t\tcare\n\t\t\t\tof your travel arrangements, you can also look through all the accommodation options available. Make\n\t\t\t\tsure that\n\t\t\t\tyou\n\t\t\t\tgo through all the reviews of the various properties listed online so that you can have a pleasant stay.\n\t\t\t\tWithout\n\t\t\t\tdoing enough research, you may end up paying a lot of money for a place that doesn’t suit your needs.\n\t\t\t\tSo, while\n\t\t\t\tlooking at the best flight offers online, you can also go through numerous blogs and articles about the\n\t\t\t\tbest\n\t\t\t\tplaces to stay at your destination. This will help you find romantic, adventurous, or chilled-out\n\t\t\t\tproperties.\n\t\t\t\tOnce\n\t\t\t\tall your arrangements are done, you can plan your itinerary, pack your bags, and countdown the days\n\t\t\t\tuntil your\n\t\t\t\tmuch-awaited getaway. The information you are reading has been last updated on 05-Jun-24.</p>\n\t\t</div>\n\t</div>\n\n\n\t<div id=\"travelFooterUpText\" class=\"p-4\"></div>\n\t<footer id=\"footer\" style=\"background-color: #292d33;\"> </footer>\n\t\n\t<!-- javaScript -->\n\t<script src=\"../../js/bootstrap.bundle.min.js\"></script>\n\t<script src=\"travel-script.js\"></script>\n</body>\n\n</html>\n"
  },
  {
    "path": "src/Travel/travel-script.js",
    "content": "// for footer\r\ndocument.addEventListener(\"DOMContentLoaded\", () => {\r\n  [\r\n      { id: \"footer\", url: \"../../components/footer.html\" },\r\n      { id: \"header\", url: \"../../components/header.html\" },\r\n  ].forEach(({ id, url }) =>\r\n      fetch(url)\r\n          .then((res) => res.text())\r\n          .then((data) => (document.getElementById(id).innerHTML = data))\r\n          .catch((err) => console.error(`Error loading ${url}:`, err))\r\n  );\r\n});\r\n// end header and footer \r\n\r\n\r\n// date and time \r\nconst currentDate = new Date();\r\nconst year = currentDate.getFullYear();\r\nconst month = String(currentDate.getMonth() + 1).padStart(2, '0'); \r\nconst toDay = String((currentDate.getDate())).padStart(2, '0');\r\nconst returnDay = String((currentDate.getDate()+5)).padStart(2, '0'); \r\n// Set the input value to today's date (YYYY-MM-DD format)\r\ndocument.getElementById('toDayDate').value = `${year}-${month}-${toDay}`;\r\ndocument.getElementById('returnDayDate').value = `${year}-${month}-${returnDay}`;\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n// for text\r\n\r\nlet travelFooterUpText=`\r\n  <div>\r\n    <style>\r\n      div p{\r\n        font-size: 10px;\r\n      }\r\n    </style>\r\n    \r\n\r\n    <p>If seeing the world is on your bucket list, then you can start your journey by booking flight tickets online.\r\n      Here are a few FAQs that can help you clear any possible doubt you might have about booking flight tickets online\r\n      with Flipkart:\r\n\r\n      Q. Why should I book flight tickets online?\r\n\r\n      Ans: Online air ticket booking has many benefits. You can compare the airfares offered by different airlines and\r\n      of different dates with just a few clicks. You can also check in-flight facilities, flight details, and\r\n      cancellation policies for each flight. You also get multiple payment options to choose and pay as you wish.\r\n\r\n      Q. Why should I book flights from Flipkart Flights?\r\n\r\n      Ans: Booking through Flipkart Flights is an easy process and requires just a few clicks. Flipkart also offers\r\n      cheap flights at great discounts using coupon codes, such as NEW12 and FLY600. There are also instant EMI options\r\n      as well as offers on credit/debit card payments to make your flight booking budget-friendly and hassle-free.\r\n\r\n      Q. How can I book flight tickets online?\r\n\r\n      Ans: With a few clicks and in a few seconds, you can book domestic and/or international flight tickets online.\r\n      Just select the route, date of travel, number of travellers, and class, then click on the search button. Then,\r\n      select your flight, click on the book option, add travellers' details, add coupon code to avail discounts, and\r\n      checkout using your card to avail more bank offers.\r\n\r\n      Q. When should I book to get the best flight ticket prices?\r\n\r\n      Ans: For domestic flight tickets, if you want to avail the best prices, then it is recommended that you should\r\n      book the tickets at least three to four weeks prior to the date of travel. For the best international flight\r\n      ticket prices, you should book seven to eight weeks prior to the date of travel.\r\n\r\n      Q. Can I get a full refund on my cancelled ticket?\r\n\r\n      Ans: There is cancellation protection insurance available at a nominal price that you can buy while booking your\r\n      flight tickets on Flipkart. Under this insurance policy, you can get a full refund if you cancel your flight for\r\n      any reason. You can cancel your ticket up to 24 hours prior to travel, and full refund is available on domestic\r\n      tickets. Check the full policy here T&C page.\r\n\r\n      Q. Should I book a seat for my infant?\r\n\r\n      Ans: Legally, a child under two years of age does not need a seat. But, if you prefer then you can book a seat for\r\n      your infant. The airfare for a child below two years and for above two years are different as the children above\r\n      two years of age need a seat for flying.\r\n\r\n      Q. What are the classes for which flight tickets can be booked?\r\n\r\n      Ans: Most airlines offer Economy and Business Class. Some also have Premium Economy class.\r\n\r\n      Q. How many seats can I book in a single booking?\r\n\r\n      Ans: On Flipkart, you can book up to nine tickets in a single booking.\r\n\r\n      Q. How much time does it take to get my ticket confirmation?\r\n\r\n      Ans: Within a few minutes, you receive a confirmation email on your email ID that you provided while booking the\r\n      ticket.\r\n\r\n      Q. Can I book tickets for another person using my account?\r\n\r\n      Ans: Yes, you can. At the time of booking, enter the correct details of the passenger.\r\n\r\n      Q. How can I get a boarding pass for a booked ticket?\r\n\r\n      Ans: By showing the ticket confirmation email at the airport's check-in counter you can collect your boarding pass\r\n      from the airline representatives. Or, you can do a web check-in on the airline's website and take a printout of\r\n      the boarding pass.\r\n\r\n      Q. Do I have to show ID proof when I check-in?\r\n\r\n      Ans: Yes, you need to show a valid ID card, such as your PAN card or driver's licence, at the time of checking in\r\n      at the airport. You also need to show your passport for international travel.\r\n\r\n      Q. How much baggage can I carry on a flight?\r\n\r\n      Ans: Different airlines have different baggage allowance policies. So, check with the airline operators to know\r\n      the exact baggage allowance and restrictions for your cabin baggage and checked-in bags.\r\n\r\n      Q. Can I pay later for my flight ticket bookings?\r\n\r\n      Ans: No, at present no such service is available on Flipkart. To successfully book a flight ticket, you need to\r\n      pay the full amount. However, we do have an EMI option. </p>\r\n\r\n\r\n    <p>Flight Ticket Booking on Flipkart</p>\r\n    <p>Have you been eyeing a beautiful destination, but not doing the plane tickets to reach there, as they are\r\n      expensive? Do you want to skip taking help from different people and book your plane tickets at low prices? If\r\n      yes, then you can do your flight ticket booking on Flipkart at surprisingly affordable prices. You can get your\r\n      tickets for domestic flights and international flights at prices that are amazingly cheap and pocket-friendly.\r\n      Hence, you won't have to worry about not being able to visit your desired destination due to financial reasons.\r\n      Also, you won't have to call anyone and take help to go ahead with the ticket booking process. The site has an\r\n      easy-to-use interface. So you can navigate your way through it, and by the time you are done with your booking,\r\n      you will move a day closer to your travel date. You can open the site and check the plane ticket prices for the\r\n      domestic or international destinations that you want to visit. </p>\r\n\r\n    <p>Do Flight Bookings Online</p>\r\n    <p>Gone are the days when only the rich could afford flight tickets. Now, not only the price of a plane ticket is\r\n      affordable, but the flight booking procedure is easy too. So, if you are planning a vacation and you are looking\r\n      for a site from where you can book cheap flight tickets easily, then you have found the correct destination.\r\n      Flipkart, apart from letting you buy products at reasonable prices, also takes care of your travel needs. Thereby,\r\n      any time you want to book a flight, you can check the ticket for your destination on the site. You can even book\r\n      overseas flight tickets. The plane tickets are available at modest prices, so you won't have to shell out a huge\r\n      amount of money. The site has also curated several options for you.</p>\r\n\r\n    <p>Book Cheap Flights</p>\r\n    <p>If you have never landed on the site's page before, and it is your first time, then do not worry. We will help\r\n      you navigate through the categories so that you can do your flight bookings in no time. You can check the options\r\n      below:\r\n\r\n      Top Deals: In the “Top Deals” section, you will find several flight offers. By using the best flight offers that\r\n      are listed out by the site, you will be able to save money.\r\n\r\n      Travel Checklist: Amongst other things, the “Travel Checklist” category will help you proceed with the web\r\n      check-in process. So, if you do not want to go through the hassle of waiting in long queues at the airport to get\r\n      your boarding pass, then you can do your web check-in at home. However, do not forget to check the options and\r\n      facilities that are available through web check-in for the flight which you have booked.\r\n\r\n      Your Safety is Important to Us: If you are travelling by plane for the first time in your life, then you must be\r\n      very excited about the journey. Before embarking on it, we suggest you check the section “Your Safety is Important\r\n      to Us” on the site to know more about the safety guidelines and all such things.\r\n\r\n      Best Deals: You can check the section “Best Deals” if you want more profit while doing your flight ticket\r\n      bookings. For example, if you are a loyal customer of the site and you have collected a lot of SuperCoins through\r\n      your purchases on the site, then you can use those to book your tickets. If you have to travel somewhere urgently\r\n      and you are running short of cash, then also the site lets you book tickets. You can check the EMI option in this\r\n      section and learn more about it.\r\n\r\n      Book Flights on Flipkart\r\n\r\n      Now, that you are aware of the options, you can go ahead and check the listed deals and all the other options on\r\n      the site. Once you check them through and through, you can enter your destination details and then do your flight\r\n      bookings in no time. </p>\r\n\r\n    <p>Hassle-free Flight Ticket Booking</p>\r\n    <p>You can now do your flight ticket booking for various destinations, both, domestic and international, at prices\r\n      that are affordable and cheap. To start with your booking process, you can open the Flipkart site. Do not worry,\r\n      as you will be thoroughly guided throughout the site's easy booking procedure. Once you start, your tickets will\r\n      be done and confirmed in no time. So, you won't have to rely on someone else, or any expensive third-party agent\r\n      to help you book your plane tickets. You will also end up saving money while booking on the site.\r\n\r\n      There are various destinations for which you can book your flights. So, be it Goa, Dubai, Berlin, Paris,\r\n      Chandigarh, and Mumbai, you can book your flight tickets to these places, and more such places at low prices. You\r\n      can choose the options as per your itinerary and book the tickets for the airline whose departure and return\r\n      timings fit your schedule. </p>\r\n\r\n    <p>Cheap Air Travel</p>\r\n    <p>\r\n      As we mentioned above, your flight ticket booking procedure will be hassle-free, as the site will help you in each step. This means, even if you are booking your plane tickets for the first time, you won't face any issue. You can enter your destination details and your dates to check which airlines are available. Once those steps are done, you will get a list of all the airlines available for the dates that you specified. You can compare the prices between the airlines, and then do your air tickets accordingly. \r\n\r\nTo make your flight booking experience even more fruitful, you can apply the various flight offers that have been made available for you by the site. The flight ticket offer codes are available for multiple airlines, so if you have any particular airline in mind, you can book the ticket of that airline without spending a fortune. You can apply the discount and offer codes and see the prices for the tickets dropping further. While booking your cheap flight tickets, you can, at the same time, check the ticket prices for several picturesque international destinations too. And, if you get cheap air tickets for places like Amsterdam or Prague, then you can book the tickets for those places too. \r\n\r\nBook Affordable Plane Tickets on Flipkart\r\n\r\nNow that you know how to go about with your flight ticket booking, do not wait any longer to do your online flight booking for your desired destination. You can check the dates and then go ahead with the bookings. If you keep waiting, the chances for getting a flight on your desired day, time, and date might become bleak. So, do not wait any further if you have already decided a place where you want to travel. You will end up making good memories and also feel refreshed. This will help you stay happy too. Even if you are checking a round-trip ticket for a business trip, then also you can make the most out of that trip. You can take a few hours off from your meetings and explore the place and the local food. Once done, you will come back home feeling happy, satisfied, and rejuvenated. \r\n\r\nBook Cheap Plane Tickets \r\nNow that you are aware of where to procure your air tickets for cheap, we would like to help you with the process a bit more. If you are doing your flight ticket booking for the first time, then you can check the steps below for a fruitful and easy experience:\r\nBook Cheap Air Tickets for a Round-trip or a One-way Trip: You can start your flight booking procedure by telling the site whether you want to book your flight tickets for a round-trip or a one-way trip. If you want to save more money by booking cheap flight tickets, we suggest you select the round-trip option. However, if you are not sure of the return date from your destination, then you can choose the one-way option. \r\nSelect the Time: If you want to search for flights that will depart in the early morning or late at night on your desired date of travel, then you can do so by selecting an option from the list of choices which are given on the left side of the page. \r\nBook Tickets for Non-stop Flights: If you want to book a ticket from an airline that will drop you to your destination without halting at another location, then you can select the \"Non-stop\" option from the left side of the page. \r\nBook Refundable Tickets: If, while booking your ticket, you are not 100% sure that you will be able to travel on the date which you have specified, then you can select the \"Refundable\" option from the left side of the page. So, even if you cancel your ticket before the date of flying, you will get your money back. However, you must check the terms and conditions to know more about the process. \r\nApply Flight Offer Codes: The site has listed a plethora of flight ticket offer codes. You can select them and apply while booking your tickets to help you save more money. \r\nEasy Booking\r\nYou can check the options mentioned-above while doing your online flight booking. Once everything is sorted, you can proceed with the flight ticket booking procedure on the site without any hassle. \r\nFlight Ticket Booking Made Convenient\r\nWe all want to travel, both, in and out of the country - don't we? But, we blame the lack of those extra bucks in our bank accounts as well as the price of plane tickets for our inability to go out and see the world. However, if you changed a few things about how you plan your trips then you could visit all those dream travel destinations that you've been talking about to your buddies at work. Do we have a secret recipe that will make you rich? No. After all, it is impossible for one to become rich overnight (unless you inherited parents' fortune as Bruce Wayne did). What we have here is a means to keep the wanderlust within you alive without having you to burn a hole in your pocket - online flight ticket booking. You may have seen a lot of famous travellers on social media sites visiting 100s of countries. But, do you think that they'd have made it this far if they kept spending a king's ransom on plane tickets? Probably not. One of the major factors that's responsible for all the success that famous travellers have is achieved is their smartness. But, how are they smarter than amateur travellers? Well, their ability to think and plan things in advance is what separates them from the ‘wannabes'. Want to travel smart? Well, then try and follow some of the tips and tricks that we have mentioned below:\r\n\r\nFlight Ticket Booking Made Convenient\r\nWe all want to travel, both, in and out of the country - don't we? But, we blame the lack of those extra bucks in our bank accounts as well as the price of plane tickets for our inability to go out and see the world. However, if you changed a few things about how you plan your trips then you could visit all those dream travel destinations that you've been talking about to your buddies at work. Do we have a secret recipe that will make you rich? No. After all, it is impossible for one to become rich overnight (unless you inherited parents' fortune as Bruce Wayne did). What we have here is a means to keep the wanderlust within you alive without having you to burn a hole in your pocket - online flight ticket booking. You may have seen a lot of famous travellers on social media sites visiting 100s of countries. But, do you think that they'd have made it this far if they kept spending a king's ransom on plane tickets? Probably not. One of the major factors that's responsible for all the success that famous travellers have is achieved is their smartness. But, how are they smarter than amateur travellers? Well, their ability to think and plan things in advance is what separates them from the ‘wannabes'. Want to travel smart? Well, then try and follow some of the tips and tricks that we have mentioned below:\r\n\r\nTry Online Flight Ticket Booking\r\n\r\nSome of you might resort to your ‘trusted' agent when it comes to booking plane tickets. Now, even though a lot of you wouldn't agree with us, you should know that there are a lot of travel agents who charge you with some hidden fees in order to make a profit. Sounds unfair - right? But, you can easily avoid paying the hidden fees by booking plane tickets online. By using online flight booking, you can easily check and compare different flight ticket offers. This way, you can ensure that you aren't overspending.\r\n\r\nBook Your Flights in Advance\r\n\r\nIf you want to travel on a budget, then you should always aim for cheap flight tickets. But, aren't all tickets for flights supposed to be expensive? No, not if you book them in advance. You can easily save hundreds, or even thousands of rupees, if you book tickets in advance as flight ticket booking sites offer massive discounts when you do so. Quite an easy way to get cheap air tickets - right? Yes, flights offer you this as well.\r\n\r\nNow, the process of online flight ticket booking may sound complicated, but it isn't really. You just need a device, such as a smartphone, through which you can get on the Internet and book a ticket online.\r\n\r\nTry Online Flight Ticket Booking\r\nSome of you might resort to your ‘trusted' agent when it comes to booking plane tickets. Now, even though a lot of you wouldn't agree with us, you should know that there are a lot of travel agents who charge you with some hidden fees in order to make a profit. Sounds unfair - right? But, you can easily avoid paying the hidden fees by booking plane tickets online. By using online flight booking, you can easily check and compare different flight ticket offers. This way, you can ensure that you aren't overspending.\r\n\r\nBook Your Flights in Advance\r\nIf you want to travel on a budget, then you should always aim for cheap flight tickets. But, aren't all tickets for flights supposed to be expensive? No, not if you book them in advance. You can easily save hundreds, or even thousands of rupees, if you book tickets in advance as flight ticket booking sites offer massive discounts when you do so. Quite an easy way to get cheap air tickets - right? Yes, flights offer you this as well.\r\n\r\nNow, the process of online flight ticket booking may sound complicated, but it isn't really. You just need a device, such as a smartphone, through which you can get on the Internet and book a ticket online.\r\n    </p>\r\n\r\n  </div>\r\n`\r\ndocument.getElementById(\"travelFooterUpText\").innerHTML=travelFooterUpText\r\n\r\n\r\n\r\n// header search bar search function \r\nsetTimeout(() => {  \r\n  const inputField_h = document.getElementById('inputField_h');\r\n  const fetchButton_h = document.getElementById('fetchButton_h');\r\n\r\n  function fetchValue_h() {\r\n      const value = inputField_h.value;\r\n      window.location.href = `?query=${value}`;\r\n  }\r\n \r\n  fetchButton_h.addEventListener('click', fetchValue_h);\r\n\r\n  inputField_h.addEventListener('keydown', (event) => {\r\n      if (event.key === 'Enter') {\r\n          fetchValue_h();\r\n      }\r\n  });\r\n\r\n\r\n}, 500);\r\n\r\n//end "
  },
  {
    "path": "src/Travel/travel-style.css",
    "content": "* {\r\n    margin: 0;\r\n    padding: 0;\r\n    box-sizing: border-box;\r\n    /* border: 1px solid red; */\r\n}\r\n\r\n.bookTripForm {\r\n    border: 1px solid white;\r\n    border-radius: 5px;\r\n    padding: 20px 10px;\r\n    width: 80vw;\r\n    min-height: calc(10vw + 20px);\r\n    background: #fff;\r\n    font-size: small;\r\n}\r\n\r\n.formSection label {\r\n  position: relative;\r\n  padding: 0 3px;\r\n}\r\n\r\n.formSection label .input {\r\n  width: 100%;\r\n  padding: 10px 10px 20px 20px;\r\n  outline: 0;\r\n  border: 1px solid rgba(105, 105, 105, 0.397);\r\n  border-radius: 10px;\r\n}\r\n\r\n.formSection label .input + span {\r\n  position: absolute;\r\n  left: 10px;\r\n  top: 15px;\r\n  color: grey;\r\n  font-size: 0.9em;\r\n  cursor: text;\r\n  transition: 0.3s ease;\r\n}\r\n\r\n.formSection label .input:placeholder-shown + span {\r\n  top: 15px;\r\n  font-size: 0.9em;\r\n}\r\n\r\n.formSection label .input:focus + span,.formSection label .input:valid + span {\r\n  top: 30px;\r\n  font-size: 0.7em;\r\n  font-weight: 600;\r\n}\r\n\r\n\r\n/* CSS for Responsive  */\r\n\r\n@media screen and (min-width: 1000px) {\r\n  \r\n    /*  */\r\n  }"
  },
  {
    "path": "src/Two Wheelers/footer_.css",
    "content": "*{\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n._1ZMrY_ {\r\n    display: grid;\r\n    grid-template-columns: repeat(6,1fr);\r\n    padding: 40px 60px 0;\r\n    -webkit-column-gap: 20px;\r\n    column-gap: 20px\r\n}\r\n\r\n._3I5N7v {\r\n    color: #878787;\r\n    font-size: 12px;\r\n    margin-bottom: 12px\r\n}\r\n\r\n._2l3nc- {\r\n    margin-right: 16px\r\n}\r\n\r\n._1UkyFI {\r\n    margin-bottom: 16px\r\n}\r\n\r\n._31kgzK {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n._1oQ-r6 {\r\n    cursor: text;\r\n    margin: 0 !important;\r\n    padding: 0 !important;\r\n}\r\n\r\n.MkhHNl {\r\n    font-size: 12px;\r\n    white-space: nowrap\r\n}\r\n\r\n.MkhHNl.btl4ck {\r\n    border-left: 1px solid #454d5e;\r\n    padding-left: 32px\r\n}\r\n\r\n.MkhHNl p {\r\n    white-space: nowrap;\r\n    color: #fff;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.MkhHNl a {\r\n    color: #2874f0\r\n}\r\n\r\n.HlWMPX {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 12px;\r\n    color: #fff;\r\n    display: block;\r\n    line-height: 18px;\r\n    text-decoration: none;\r\n}\r\n\r\n.HlWMPX:hover {\r\n    text-decoration: underline\r\n}\r\n\r\n.c4gehN {\r\n    display: flex;\r\n    align-items: center\r\n}\r\n\r\n.c4gehN a {\r\n    margin-left: 8px;\r\n    font-size: 12px;\r\n    line-height: 18px\r\n}\r\n\r\n.c4gehN a,.pCGSTE {\r\n    color: #fff\r\n}\r\n\r\n.KSr9-T {\r\n    display: flex;\r\n    justify-content: space-between;\r\n    margin: 0 auto;\r\n    width: 90%\r\n}\r\n\r\n.KSr9-T ._2KSh8A {\r\n    color: hsla(0,0%,100%,.6);\r\n    line-height: 30px\r\n}\r\n\r\n.KSr9-T ._2KSh8A span {\r\n    color: hsla(0,0%,100%,.6)!important\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2 {\r\n    padding: 0 5px;\r\n    border-right: 1px solid #878787\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._4VlZa2:last-child {\r\n    border-right: none\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._3IcjOc {\r\n    color: #2874f0\r\n}\r\n\r\n.KSr9-T ._2KSh8A ._2QNIBI {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1HSe4t {\r\n    border-top: 1px solid #454d5e;\r\n    padding: 25px 0;\r\n    margin-top: 40px;\r\n    width: 100%;\r\n    display: flex;\r\n    justify-content: space-evenly;\r\n    align-items: center\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:1191px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(3,1fr);\r\n        padding: 40px 20px 0;\r\n        grid-column-gap: 20px;\r\n        -webkit-column-gap: 12px;\r\n        column-gap: 12px\r\n    }\r\n\r\n    ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) {\r\n        margin-top: 20px\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n}\r\n\r\n@media (min-width: 768px) and (max-width:900px) {\r\n    ._1HSe4t,.c4gehN a {\r\n        font-size:8px\r\n    }\r\n\r\n    .c4gehN a {\r\n        margin-left: 4px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ZMrY_ {\r\n        grid-template-columns:repeat(1,1fr);\r\n        padding: 40px 20px 0;\r\n        -webkit-column-gap: 20px;\r\n        column-gap: 20px\r\n    }\r\n\r\n    ._1ZMrY_>div:not(:first-child) {\r\n        margin: 12px 0 0\r\n    }\r\n\r\n    .MkhHNl {\r\n        padding: 0\r\n    }\r\n\r\n    .MkhHNl.btl4ck {\r\n        border: none;\r\n        padding-left: 0\r\n    }\r\n\r\n    ._1HSe4t {\r\n        display: grid;\r\n        grid-template-columns: repeat(1,1fr);\r\n        padding: 0 20px;\r\n        margin-top: 10px\r\n    }\r\n\r\n    ._1HSe4t * {\r\n        margin: 8px 0\r\n    }\r\n}\r\n\r\n.jF78FJ {\r\n    padding: 30px;\r\n    color: #878787;\r\n    background-color: #f5f5f5\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 {\r\n    line-height: 16px;\r\n    font-size: 12px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h1 {\r\n    font-size: 16px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 {\r\n    font-size: 14px;\r\n    margin-bottom: 10px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 a {\r\n    color: #2874f0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 table {\r\n    width: 50%;\r\n    border-collapse: collapse;\r\n    margin: 10px 0\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th {\r\n    border: 1px solid #878787;\r\n    padding-left: 5px\r\n}\r\n\r\n.jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul {\r\n    list-style: decimal inside\r\n}\r\n\r\n.TKplD7 {\r\n    background: #212121;\r\n    border-top: 1px solid #f5f5f5;\r\n    margin-top: 25px\r\n}\r\n\r\n.-qLUdm {\r\n    width: 100%\r\n}\r\n\r\n._1UgUYI {\r\n    display: none;\r\n    position: absolute;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3);\r\n    border-radius: 8px;\r\n    background-color: #fff;\r\n    z-index: 100;\r\n    font-family: inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n    overflow: hidden;\r\n    line-height: 20px\r\n}\r\n\r\n._1UgUYI ._16rZTH {\r\n    min-width: 240px\r\n}\r\n\r\n._1UgUYI ._16rZTH object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg {\r\n    display: flex;\r\n    width: 100%;\r\n    padding: 12px 16px;\r\n    background-color: #fff;\r\n    justify-content: space-between\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c {\r\n    display: none;\r\n    content: \"\";\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 1px 1px 0;\r\n    transform-origin: 50% 50%;\r\n    transform: translateY(75%) rotate(-45deg)\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx {\r\n    background-color: #f0f5ff;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c {\r\n    display: inline-block\r\n}\r\n\r\n._1UgUYI ._31z7R_ {\r\n    min-height: 100%;\r\n    min-width: 240px;\r\n    box-shadow: 0 8px 8px 1px rgba(0,0,0,.3)\r\n}\r\n\r\n._1UgUYI ._31z7R_ object {\r\n    display: flex;\r\n    flex-direction: column\r\n}\r\n\r\n._1UgUYI ._31z7R_ object .uAl2uE {\r\n    font-size: 12px;\r\n    line-height: 18px;\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    padding: 8px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry {\r\n    line-height: 20px;\r\n    padding: 12px 16px\r\n}\r\n\r\n._1UgUYI ._31z7R_ object ._3490ry:hover {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif\r\n}\r\n\r\n@media (min-width: 768px) {\r\n    ._2eN8ye {\r\n        display:flex\r\n    }\r\n\r\n    ._1wE2Px {\r\n        z-index: 100;\r\n        position: absolute\r\n    }\r\n\r\n    ._23axDd {\r\n        background-color: transparent;\r\n        position: fixed;\r\n        width: 100vw;\r\n        height: 100vh;\r\n        z-index: 99;\r\n        top: 0;\r\n        left: 0\r\n    }\r\n}\r\n\r\nbutton {\r\n    border: 0;\r\n    outline: 0;\r\n    background-color: transparent\r\n}\r\n\r\n._3sdu8W {\r\n    position: relative;\r\n    display: flex;\r\n    flex-direction: row;\r\n    justify-content: center;\r\n    width: 100%;\r\n    z-index: 10000;\r\n    min-height: 40px;\r\n    color: #111112;\r\n    background-color: #fff\r\n}\r\n\r\n@media (max-width: 1192px) {\r\n    ._3sdu8W {\r\n        overflow-x:scroll;\r\n        justify-content: normal\r\n    }\r\n}\r\n\r\n._3sdu8W.emupdz {\r\n    background: #fff;\r\n    min-height: 126px\r\n}\r\n\r\n._3sdu8W._1XD520 {\r\n    background: #fff\r\n}\r\n\r\n._1ch8e_ {\r\n    min-width: 90px;\r\n    padding: 16px;\r\n    cursor: pointer;\r\n    text-decoration: none;\r\n    position: relative;\r\n    box-sizing: content-box\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 {\r\n    text-align: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n    margin-bottom: 4px\r\n}\r\n\r\n@media (min-width: 1192px) {\r\n    ._1ch8e_ div>.YBLJE4 ._3ETuFY {\r\n        margin-bottom:12px\r\n    }\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n    font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif;\r\n    font-size: 14px;\r\n    display: flex;\r\n    align-items: center;\r\n    justify-content: center\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 {\r\n    margin-left: 8px\r\n}\r\n\r\n._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    content: \"\";\r\n    display: inline-block;\r\n    position: relative;\r\n    height: 6px;\r\n    width: 6px;\r\n    border-color: #111112;\r\n    border-style: solid;\r\n    border-width: 0 2px 2px 0;\r\n    transform: scale(1) translateY(-50%) rotate(45deg);\r\n    transform-origin: 50% 50%;\r\n    transition: transform .3s\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T {\r\n        font-family:inter_regular,fallback-inter_regular,Arial,sans-serif;\r\n        font-size: 12px;\r\n        line-height: 16px\r\n    }\r\n}\r\n\r\n@media (max-width: 767px) {\r\n    ._1ch8e_ {\r\n        min-width:90px;\r\n        padding: 12px 12px 8px\r\n    }\r\n\r\n    ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n        display: none\r\n    }\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T {\r\n    color: #2874f0\r\n}\r\n\r\n._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before {\r\n    transform-origin: 50% 50%;\r\n    transform: scale(1) translateY(0) rotate(-135deg);\r\n    border-color: #2874f0\r\n}\r\n\r\n._1ch8e_:first-child,._1ch8e_:last-child {\r\n    padding-left: 24px\r\n}\r\n"
  },
  {
    "path": "src/Two Wheelers/index.html",
    "content": "<!DOCTYPE html>\r\n<html lang=\"en\">\r\n\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title id=\"pageTitle\">Flipkart</title>\r\n    <link rel=\"shortcut icon\" href=\"../../img/flipkart_lite.png\" type=\"image/x-icon\">\r\n    <link rel=\"stylesheet\" href=\"../../css/bootstrap.min.css\">\r\n</head>\r\n\r\n<body>\r\n    <header id=\"header\" style=\"height: 60px; background: #2604a1;;\"></header>\r\n    <div id=\"component\" class=\"row m-1\"></div>\r\n    <footer id=\"footer\" style=\"background-color: #203a61 !important\"></footer>\r\n    <script src=\"thisComponet.js\"></script>\r\n    <script src=\"../../js/bootstrap.bundle.min.js\"></script>\r\n</body>\r\n\r\n</html>"
  },
  {
    "path": "src/Two Wheelers/thisComponet.js",
    "content": "document.addEventListener(\"DOMContentLoaded\", () => {\r\n    [\r\n        { id: \"footer\", url: \"../../components/footer.html\" },\r\n        { id: \"header\", url: \"../../components/header.html\" },\r\n    ].forEach(({ id, url }) =>\r\n        fetch(url)\r\n            .then((res) => res.text())\r\n            .then((data) => (document.getElementById(id).innerHTML = data))\r\n            .catch((err) => console.error(`Error loading ${url}:`, err))\r\n    );\r\n});\r\n// end header and footer \r\n\r\n// javascript for title\r\nlet path = window.location.pathname;\r\nlet firstSlashIndex = path.indexOf('/');\r\nlet secondSlashIndex = path.indexOf('/', firstSlashIndex + 1);\r\nlet fileName = path.substring(secondSlashIndex + 1);\r\nlet [a,b] =fileName.split('/');\r\ndocument.getElementById('pageTitle').textContent = a;\r\n\r\n// javascript for products\r\n// Function to create a product card\r\nfunction createelectronicsProductCard(product) {\r\n    const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10))\r\n    const afterDiscontPrice=Math.round((100-discont)*product.price/100)\r\n  \r\n    function formatIndianRupee(number) {\r\n      const parts = number.toString().split(\".\");\r\n      const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\r\n      const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\r\n      return formattedNumber;\r\n    }\r\n    \r\n    return `\r\n    <style>\r\n    .products div{font-size:14px}.products img:hover{transform:scale(1.1)}.products{font-size:medium;display:flex;flex-direction:column;align-items:center}.rating{background-color:green;width:fit-content;padding:0 16px;border-radius:5px;color:#fff}.products .product_Img{height:150px}.products img{padding:1px;width:100%;height:100%;object-fit:contain}\r\n    </style>\r\n      <a class=\"btn col-lg-2 col-md-3 col-sm-4 col-6 p-2\" href=\"../../addtokart/?query=${product.name}\">\r\n          <div class=\"products\">\r\n              <div class=\"text-center product_Img img-fluid\">\r\n                  <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${product.productImg}\" alt=\"${product.id}\">\r\n              </div>\r\n              <div class=\"text-center card-title pt-1\">${product.name.slice(0, 20)} ${product.name.length > 20 ? \"<b>...</b>\":\"\"}</div>\r\n              <div class=\"text-center mb-1 rating\">${product.rating} &nbsp<i class=\"bi bi-star-fill\"></i></div>\r\n              <div class=\"text-center\"><strong>₹${formatIndianRupee(afterDiscontPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(product.price)}</del> <span style=\"color:#388e3c\"> ${discont}% off </span></div>\r\n          </div>\r\n      </a>\r\n  `;\r\n    }\r\n  \r\n  \r\n  function electronicsFetch(g) {\r\n    const electronicsList = document.getElementById('component');\r\n    electronicsList.innerHTML = g.map(product => createelectronicsProductCard(product)).join('');\r\n  }\r\n  \r\n  \r\n  // Fetch data from the JSON file and electronics for each brand\r\n  fetch('https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json')\r\n    .then(response => response.json())\r\n    .then(data => {\r\n      const g = data.filter(product => product.category.toLowerCase().includes('two-wheelers'));\r\n      electronicsFetch(g);\r\n      })\r\n      .catch(error => console.error('Error fetching data:', error));"
  },
  {
    "path": "src/demo.css",
    "content": " * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,\"Segoe UI\",Roboto,\"Helvetica Neue\",Arial,\"Noto Sans\",\"Liberation Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\"Liberation Mono\",\"Courier New\",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:\"— \"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + (.5rem + 2px));padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + (1rem + 2px));padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + (.75rem + 2px))}textarea.form-control-sm{min-height:calc(1.5em + (.5rem + 2px))}textarea.form-control-lg{min-height:calc(1.5em + (1rem + 2px))}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size=\"1\"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\")}.form-check-input:checked[type=radio]{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\")}.form-switch .form-check-input:checked{background-position:right center;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size=\"1\"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size=\"1\"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:\"\"}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:\"\";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem; height: 1.7rem;}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:\"\";background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, \"/\")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, \".\") \". \";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:\"\";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:\"\";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:\"\";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:\"\"}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\")}.carousel-control-next-icon{background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1050;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.clearfix::after{display:block;clear:both;content:\"\"}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:\"\"}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:\"\"}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}\n/*# sourceMappingURL=bootstrap.min.css.map */\n"
  },
  {
    "path": "src/demo.html",
    "content": "\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Mobile Shop</title>\n    <link rel=\"stylesheet\" href=\"styles.css\">\n  <style>\n    body {\n    font-family: Arial, sans-serif;\n    margin: 0;\n    padding: 0;\n}\n\nheader {\n    background-color: #333;\n    color: white;\n    padding: 1em 0;\n    text-align: center;\n}\n\nheader h1 {\n    margin: 0;\n}\n\nnav ul {\n    list-style: none;\n    padding: 0;\n}\n\nnav ul li {\n    display: inline;\n    margin: 0 1em;\n}\n\nnav ul li a {\n    color: white;\n    text-decoration: none;\n}\n\nsection {\n    padding: 2em;\n    text-align: center;\n}\n\n.product-list {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: center;\n}\n\n.product-item {\n    border: 1px solid #ccc;\n    border-radius: 8px;\n    margin: 1em;\n    padding: 1em;\n    width: 200px;\n}\n\n.product-item img {\n    max-width: 100%;\n    height: auto;\n}\n\nfooter {\n    background-color: #333;\n    color: white;\n    padding: 1em 0;\n    text-align: center;\n}\n\nform {\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n}\n\nform label {\n    margin-top: 1em;\n}\n\nform input, form textarea {\n    margin-top: 0.5em;\n    padding: 0.5em;\n    width: 100%;\n    max-width: 300px;\n}\n\nform button {\n    margin-top: 1em;\n    padding: 0.5em 1em;\n}\n\n  </style>\n</head>\n<body>\n    <header>\n        <h1>Mobile Shop</h1>\n        <nav>\n            <ul>\n                <li><a href=\"#home\">Home</a></li>\n                <li><a href=\"#products\">Products</a></li>\n                <li><a href=\"#about\">About</a></li>\n                <li><a href=\"#contact\">Contact</a></li>\n            </ul>\n        </nav>\n    </header>\n\n    <section id=\"home\">\n        <h2>Welcome to Our Mobile Shop</h2>\n        <p>Find the latest and greatest mobile phones here!</p>\n    </section>\n\n    <section id=\"products\">\n        <h2>Products</h2>\n        <div class=\"product-list\">\n            <!-- Product items will be injected here by JavaScript -->\n        </div>\n    </section>\n\n    <section id=\"about\">\n        <h2>About Us</h2>\n        <p>We are a leading mobile shop providing the best smartphones at competitive prices.</p>\n    </section>\n\n    <section id=\"contact\">\n        <h2>Contact Us</h2>\n        <form id=\"contact-form\">\n            <label for=\"name\">Name:</label>\n            <input type=\"text\" id=\"name\" name=\"name\" required>\n            <label for=\"email\">Email:</label>\n            <input type=\"email\" id=\"email\" name=\"email\" required>\n            <label for=\"message\">Message:</label>\n            <textarea id=\"message\" name=\"message\" required></textarea>\n            <button type=\"submit\">Send</button>\n        </form>\n    </section>\n\n    <footer>\n        <p>&copy; 2024 Mobile Shop. All rights reserved.</p>\n    </footer>\n\n    <script>\n      document.addEventListener(\"DOMContentLoaded\", function() {\n    const products = [\n        { name: \"iPhone 13\", price: \"$799\", image: \"https://via.placeholder.com/150\" },\n        { name: \"Samsung Galaxy S21\", price: \"$699\", image: \"https://via.placeholder.com/150\" },\n        { name: \"Google Pixel 6\", price: \"$599\", image: \"https://via.placeholder.com/150\" },\n    ];\n\n    const productList = document.querySelector(\".product-list\");\n\n    products.forEach(product => {\n        const productItem = document.createElement(\"div\");\n        productItem.classList.add(\"product-item\");\n\n        productItem.innerHTML = `\n            <img src=\"${product.image}\" alt=\"${product.name}\">\n            <h3>${product.name}</h3>\n            <p>${product.price}</p>\n        `;\n\n        productList.appendChild(productItem);\n    });\n\n    document.getElementById(\"contact-form\").addEventListener(\"submit\", function(event) {\n        event.preventDefault();\n        alert(\"Thank you for your message!\");\n    });\n});\n\n    </script>\n</body>\n</html>\n>\n"
  },
  {
    "path": "the-gift-card-store/giftcard.css",
    "content": "/* styles.css */\nbody {\n  font-family: Arial, sans-serif;\n  background-color: #f4f4f4;\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: column;\n  min-height: 100vh;\n}\n\n.navbar {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  background-color: #2874f0;\n  padding: 10px 20px;\n  color: white;\n}\n\n.navbar .logo {\n  display: flex;\n  align-items: center;\n}\n\n.navbar .logo img {\n  height: 40px;\n  margin-right: 10px;\n}\n\n.navbar .title {\n  font-size: 24px;\n  font-weight: bold;\n}\n\n.navbar .links {\n  display: flex;\n  gap: 20px;\n}\n\n.navbar .links a {\n  color: white;\n  text-decoration: none;\n  font-size: 16px;\n}\n\n.navbar .links a:hover {\n  text-decoration: underline;\n}\n\n.navbar .search-bar {\n  flex-grow: 1;\n  margin: 0 20px;\n}\n\n.navbar .search-bar input[type=\"text\"] {\n  width: 100%;\n  padding: 10px;\n  border: none;\n  border-radius: 4px;\n}\n\n.gift-card-section {\n  background-color: #fff;\n  padding: 20px;\n  border-radius: 8px;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n  text-align: center;\n  width: 90%;\n  max-width: 400px;\n  margin: 20px auto 20px auto;\n}\n\n.info {\n  margin: 10px;\n  background-color: #e6eeff;\n}\n\n.head {\n  font-size: 20px;\n  color: black;\n  padding: 10px 0 0 10px;\n}\n\n.detail {\n  color: #0202027d;\n  padding: 0 10px 10px 10px;\n}\n\nh1 {\n  color: #2874f0;\n}\n\nform {\n  margin-bottom: 20px;\n}\n\nlabel {\n  display: block;\n  margin-bottom: 10px;\n}\n\nselect {\n  width: 100%;\n  padding: 10px;\n  margin-bottom: 20px;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\nselect:hover {\n  border-color: #2874f0;\n}\n\nbutton[type=\"submit\"] {\n  background-color: #2874f0;\n  color: #fff;\n  padding: 10px 20px;\n  border: none;\n  border-radius: 4px;\n  cursor: pointer;\n  font-size: 16px;\n  margin: 10px;\n}\n\nbutton:hover {\n  background-color: #1a5bb8;\n}\n\n.preview {\n  background-color: #f9f9f9;\n  padding: 20px;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n}\n\n.preview h2 {\n  margin-top: 0;\n}\n\n\n@media (max-width: 768px) {\n\n  .navbar-container,\n  .footer-container {\n    flex-direction: column;\n    align-items: center;\n  }\n\n  .navbar-links {\n    margin-top: 10px;\n  }\n\n  .navbar-links a {\n    margin-left: 0;\n    margin-top: 5px;\n  }\n}"
  },
  {
    "path": "the-gift-card-store/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Flipkart Gift Card</title>\n  <link rel=\"shortcut icon\" href=\"../img/flipkart_favicon.ico\" type=\"image/x-icon\">\n  <link rel=\"stylesheet\" href=\"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css\">\n  <style>\n    /* Progress Bar Styles */\n    #progress-container {\n      position: fixed;\n      top: 0;\n      left: 0;\n      width: 100%;\n      height: 15px;\n      z-index: 99990;\n    }\n\n    #progress-bar {\n      height: 53%;\n      width: 0;\n      background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n      box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n      transition: width 0.09s ease-in-out;\n      border-radius: 10px;\n    }\n\n    /* Navbar Styles */\n    .navbar {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      padding: 10px 20px;\n      background-color: #f8f9fa;\n      border-bottom: 1px solid #e5e5e5;\n    }\n\n    .navbar .logo .title {\n      font-size: 24px;\n      font-weight: bold;\n      color: #007bff;\n    }\n\n    .navbar .search-bar input {\n      padding: 5px 10px;\n      width: 300px;\n      border-radius: 5px;\n      border: 1px solid #ddd;\n    }\n\n    .navbar .links a {\n      margin: 0 10px;\n      text-decoration: none;\n      color: #007bff;\n      font-size: 16px;\n    }\n\n    .navbar .links a:hover {\n      text-decoration: underline;\n    }\n\n    /* Info Section Styles */\n    .info {\n      padding: 20px;\n      background-color: #f4f4f4;\n    }\n\n    .info .head {\n      font-size: 28px;\n      margin-bottom: 20px;\n    }\n\n    .info .detail {\n      font-size: 16px;\n      line-height: 1.6;\n    }\n\n    /* Gift Card Section Styles */\n    .gift-card-section {\n      padding: 20px;\n      background-color: #fff;\n    }\n\n    .gift-card-section h1 {\n      font-size: 24px;\n      margin-bottom: 20px;\n    }\n\n    .gift-card-section form {\n      margin-bottom: 20px;\n    }\n\n    .gift-card-section label {\n      display: block;\n      margin-bottom: 5px;\n      font-weight: bold;\n    }\n\n    .gift-card-section select {\n      padding: 5px;\n      border-radius: 5px;\n      border: 1px solid #ddd;\n      margin-bottom: 10px;\n    }\n\n    .gift-card-section button {\n      padding: 10px 20px;\n      background-color: #007bff;\n      color: #fff;\n      border: none;\n      border-radius: 5px;\n      cursor: pointer;\n    }\n\n    .gift-card-section button:hover {\n      background-color: #0056b3;\n    }\n\n    .gift-card-section .preview {\n      margin-top: 20px;\n    }\n\n    .gift-card-section .preview h2 {\n      font-size: 20px;\n    }\n\n    /* Footer Styles */\n    #footer-giftCard {\n      height: 100px;\n      background-color: #292d33;\n      margin-top: 20px;\n    }\n  </style>\n</head>\n\n<body>\n  <div id=\"progress-container\">\n    <div id=\"progress-bar\"></div>\n  </div>\n\n  <script>\n    window.addEventListener('scroll', function() {\n      const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n      const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n      const scrolled = (winScroll / height) * 100;\n      document.getElementById('progress-bar').style.width = scrolled + '%';\n    });\n  </script>\n\n  <div class=\"navbar\">\n    <div class=\"logo\">\n      <div class=\"title\">Flipkart Plus</div>\n    </div>\n    <div class=\"search-bar\">\n      <input type=\"text\" placeholder=\"Search for products, brands and more\">\n    </div>\n    <div class=\"links\">\n      <a href=\"../index.html\">Home</a>\n      <a href=\"../gift-cards/index.html\">Gift Cards</a>\n      <a href=\"../supercoin/index.html\">SuperCoin</a>\n      <a href=\"../helpcentre/index.html\">Support</a>\n    </div>\n  </div>\n\n  <div class=\"info\">\n    <h1 class=\"head\">Gift Card Store</h1>\n    <div class=\"detail\">\n      Special occasions call for special gifts. Whether it's a birthday or an anniversary, finding the right gift for\n      your loved ones is always a difficult task. And after you get a gift, you have to hope that they like what you\n      got. Well, there’s a simple solution to this conundrum - Flipkart Gift Cards Store. You can give Flipkart gift\n      cards and Vouchers across multiple occasions to your friends or family and give them the chance to shop for\n      whatever their heart desires. So, what are you waiting for? Get gift vouchers online on Flipkart, gift or redeem\n      them and do more with this feature. Flipkart Gift Card Store also has a wide range of Gift Cards from categories\n      such as travel, jewellery, fashion, grocery, and apps &amp; more. You can choose from a diverse range of\n      denominations available or enter any preferred amount between Rs 25 to Rs 10,000. Bid adieu to gifting troubles,\n      send online gift cards to your friends and family, bring a smile to their faces and make special moments even more\n      special!. The information you are reading has been last updated on 17-May-24.\n    </div>\n  </div>\n\n  <div class=\"gift-card-section\">\n    <h1>Flipkart Gift Card</h1>\n    <form id=\"giftCardForm\">\n      <label for=\"amount\">Select Amount:</label>\n      <select id=\"amount\" name=\"amount\">\n        <option value=\"500\">₹500</option>\n        <option value=\"1000\">₹1000</option>\n        <option value=\"2000\">₹2000</option>\n        <option value=\"5000\">₹5000</option>\n      </select>\n      <button type=\"submit\">Buy Now</button>\n    </form>\n    <div class=\"preview\">\n      <h2>Gift Card Preview</h2>\n      <p>Amount: <span id=\"selectedAmount\">₹500</span></p>\n    </div>\n  </div>\n\n  <div id=\"footer-giftCard\"></div>\n</body>\n\n</html>\n"
  },
  {
    "path": "top-offer.css",
    "content": ".hero{\n    background-image: url(img/heo-top-offers.png);\n    width: 100vw;\n    height: 100vh;\n    background-size: cover;\n    background-repeat: no-repeat;\n}\n.offer{\n    height: 80vh;\n    width: 98vw;\n    background-size: cover;\n    background-repeat: no-repeat;\n    margin: auto;\n    margin: 1rem;\n}\n#one{\n    background-image: url(img/oone.png);\n}\n#two{\n    background-image: url(img/otwo.png);\n}\n#three{\n    background-image: url(img/othree.png);\n}\n#four{\n    background-image: url(img/ofour.png);\n}\n#five{\n    background-image: url(img/ofive.png);\n}\n#six{\n    background-image: url(img/osix.png);\n}\n#seven{\n    background-image: url(img/oseven.png);\n}\n#eight{\n    background-image: url(img/oeight.png);\n}"
  },
  {
    "path": "top-offers.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\n    <title>Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More.\n        Best Offers!</title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/bootstrap.min.css\">\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n    <link rel=\"stylesheet\" href=\"css/homeHeader.css\">\n    <link rel=\"stylesheet\" href=\"top-offer.css\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/index.css\">\n    <link rel=\"stylesheet\" href=\"css/footer.css\">\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css\" rel=\"stylesheet\" />\n    <link href=\"css/contactus.css\" rel=\"stylesheet\">\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\">\n    <title>Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books &amp; More.\n        Best Offers!</title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"img/flipkart_lite.png\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/bootstrap.min.css\">\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css\">\n    <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css\">\n    <link rel=\"stylesheet\" href=\"css/homeHeader.css\">\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/index.css\">\n    <link rel=\"stylesheet\" href=\"css/footer.css\">\n\n    <link href=\"https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css\" rel=\"stylesheet\" />\n\n\n    <link href=\"css/contactus.css\" rel=\"stylesheet\">\n\n    <style>\n           body {\n            font-family: Arial, sans-serif;\n            background-color: #f8f9fa;\n            color: #4a4a4a;\n            margin: 0;\n            padding: 0;\n        }\n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 1rem;\n        }\n        .flex {\n            display: flex;\n        }\n        .flex-wrap {\n            flex-wrap: wrap;\n        }\n        .flex-col {\n            flex-direction: column;\n        }\n        .items-center {\n            align-items: center;\n        }\n        .justify-center {\n            justify-content: center;\n        }\n        .relative {\n            position: relative;\n        }\n        .w-6 {\n            width: 1.5rem;\n        }\n        .h-6 {\n            height: 1.5rem;\n        }\n        .h-full {\n            height: 100%;\n        }\n        .w-full {\n            width: 100%;\n        }\n        .mt-10 {\n            margin-top: 2.5rem;\n        }\n        .pt-10 {\n            padding-top: 2.5rem;\n        }\n        .pb-10 {\n            padding-bottom: 2.5rem;\n        }\n        .pb-20 {\n            padding-bottom: 5rem;\n        }\n        .rounded-full {\n            border-radius: 50%;\n        }\n        .bg-gray-200 {\n            background-color: #e5e5e5;\n        }\n        .bg-indigo-500 {\n            background-color: #6366f1;\n        }\n        .bg-indigo-100 {\n            background-color: #ebf4ff;\n        }\n        .text-white {\n            color: #ffffff;\n        }\n        .text-gray-600 {\n            color: #718096;\n        }\n        .text-gray-900 {\n            color: #1a202c;\n        }\n        .title-font {\n            font-weight: 600;\n        }\n        .text-sm {\n            font-size: 0.875rem;\n        }\n        .text-xl {\n            font-size: 1.25rem;\n        }\n        .leading-relaxed {\n            line-height: 1.625;\n        }\n        .mb-1 {\n            margin-bottom: 0.25rem;\n        }\n        .md-w-2-3 {\n            width: 66.666667%;\n        }\n        .md-pl-8 {\n            padding-left: 2rem;\n        }\n        .pl-6 {\n            padding-left: 1.5rem;\n        }\n        .sm-items-center {\n            align-items: center;\n        }\n        .sm-mt-0 {\n            margin-top: 0;\n        }\n        .sm-pl-6 {\n            padding-left: 1.5rem;\n        }\n        .pointer-events-none {\n            pointer-events: none;\n        }\n        html {\n            scroll-behavior: smooth;\n        }\n\n        body {\n            margin: 0;\n            padding: 0;\n        }\n\n        .scrollToTop {\n            height: 40px;\n            width: 40px;\n            background: hsl(217, 87%, 45%);\n            display: none;\n            justify-content: center;\n            align-items: center;\n            border-radius: 50%;\n            color: white;\n            cursor: pointer;\n            position: fixed;\n            bottom: 45px;\n            right: 50%;\n            left: 50%;\n        }\n            .inner {\n                height: 85%;\n                width: 85%;\n                background: black;\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                border-radius: 50%;\n            }\n\n        .r4vIwl{\n            padding: 8px 10px 10px 0;\n    width: 100%;\n    color: #000;\n    font-size: inherit;\n    background: #fff;\n    border: none;\n    border-bottom: 1px solid #e0e0e0;\n}\n        \n\n        /* } */\n\n    #progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n\n@media screen and (max-width: 600px) {\n    .form-container button#button {\n        margin-left: 0 !important;\n    }\n    .main {\n        margin-left: 0;\n        width: 100%;\n    }\n}\n    </style>\n\n\n</head>\n<body>\n    <!-- header start -->\n    <header id=\"homeHeader\">\n        <nav class=\"navbar homeHeader navbar-expand-lg navbar-light bg-light\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/fkheaderlogo_exploreplus-44005d.svg\"\n                    width=\"160\" height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n            <div id=\"navbarNav_\" style=\"display: flex; align-items: center;\">\n                <ul class=\"navbar-nav\">\n                    <li class=\"nav-item navItem1\">\n                        <div id=\"searchbar\" class=\"navtab\">\n                            <span id=\"searchButton\" class=\"search-icon\">\n                                <svg width=\"30\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"\n                                    xmlns=\"http://www.w3.org/2000/svg\">\n                                    <title>Search Icon</title>\n                                    <path\n                                        d=\"M10.5 18C14.6421 18 18 14.6421 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18Z\"\n                                        stroke=\"#717478\" stroke-width=\"1.4\" stroke-linecap=\"round\"\n                                        stroke-linejoin=\"round\"></path>\n                                    <path d=\"M16 16L21 21\" stroke=\"#717478\" stroke-width=\"1\" stroke-linecap=\"round\"\n                                        stroke-linejoin=\"round\"></path>\n                                </svg>\n                            </span>\n                            <span class=\"flex-grow\">\n                                <input id=\"input_data\" class=\"searchbar\" type=\"text\"\n                                    placeholder=\"Search for Products, Brands and More\" />\n                            </span>\n                            <div id=\"autocompleteResults\" class=\"autocom-box\">\n                                <!-- Autocomplete results here -->\n                            </div>\n                        </div>\n                    </li>\n                </ul>\n                <ul class=\"navbar-nav ml-auto\">\n                    <li class=\"nav-item dropdown\" id=\"navbarDropdown\">\n                        <a class=\"nav-link acnavdd ml-3 mr-5\" href=\"#\" role=\"button\" data-bs-toggle=\"dropdown\"\n                            aria-expanded=\"false\">\n                            <img src=\"img/svg/profile-.svg\" alt=\"Profile\" href=\"account/login-signup.html\"\n                                style=\"width: 20px; height: 20px; margin-right: 5px; margin-left: 10px;\" />\n                            <span class=\"navname\" style=\"font-size: 14px;\">Login <i\n                                    class=\"bi bi-chevron-down\"></i></span>\n                        </a>\n                        <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\" style=\"left: 0;\">\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/home_account.html\"><img width=\"20\"\n                                    src=\"img/svg/profile-.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> My Profile\n                            </a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"login/login.html\"><img width=\"20\" src=\"img/svg/profile-.svg\"\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Log into account </a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/login-signup.html\"><img width=\"20\"\n                                    src=\"img/svg/profile-.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> Sign In</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"plus/\"><img width=\"20\" src=\"img/svg/fkplus-+.svg\"\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Flipkart Plus Zone</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/orders.html\"><img width=\"20\" src=\"img/svg/orders.svg\"\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Orders</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"wishlist/\"><img width=\"20\" src=\"img/svg/wishList.svg\"\n                                    alt=\"flipKart\" style=\"margin-right: 5px;\"> Wishlist</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/notifications.html\"><img width=\"20\"\n                                    src=\"img/svg/notifications.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\">\n                                Notifications</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/rewards.html\"><img width=\"20\"\n                                    src=\"img/svg/rewards.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> Rewards</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"./the-gift-card-store/index.html\"><img width=\"20\"\n                                    src=\"img/svg/giftCard.svg\" alt=\"flipKart\" style=\"margin-right: 5px;\"> Gift Cards</a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/contact.html\"><img width=\"20\" height=\"10\"\n                                    src=\"https://pngimg.com/uploads/phone/phone_PNG48988.png\" alt=\"flipKart\"\n                                    style=\"margin-right: 5px;\"> Contact Us </a>\n                            <a class=\"dropdown-item d-flex gap-2\" href=\"account/feedback.html\"><i class=\"bi bi-chat-dots\"></i> My\n                                Feedback </a>\n                        </div>\n                    </li>\n\n                    <li class=\"nav-item\">\n                        <a class=\"nav-link mr-5\" href=\"viewcart/\" style=\"font-size: 14px; margin-left: 20px; font-weight: 500;\">\n                            <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_cart-eed150.svg\"\n                                style=\"width: 20px; height: 20px; margin-right: 5px;\" /> Cart\n                        </a>\n                    </li>\n                    <li class=\"nav-item\">\n                        <a class=\"nav-link\" href=\"./pages/Sell_Online/sell_online.html\" style=\"font-size: 14px;\">\n                            <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\"\n                                style=\"width: 20px; height: 20px; margin-right: 5px;\" /> Become a Seller\n<!--                         <a class=\"nav-link mr-5\" href=\"sell-online/\" style=\"font-size: 14px; margin-left: 30px; font-weight: 500;\">\n                            <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/Store-9eeae2.svg\" style=\"width: 20px; height: 20px; margin-right: 5px;\" /> Become a Seller\n                        </a> -->\n                    </li>\n                    <li class=\"nav-item dropdown mr-5\" style=\"margin-left: 50px;\" id=\"moreLinksDropdown\">\n                        <a href=\"#\"><i class=\"fas fa-ellipsis-v\"></i></a>\n                        <div class=\"dropdown-menu\">\n\n                            <a href=\"https://www.flipkart.com/communication-preferences/push?t=all\"><i class=\"fa-regular fa-bell\"></i> &nbsp; Notification Preferences</a>\n                            <a href=\"https://www.flipkart.com/helpcentre\"><i class=\"fa-solid fa-headset\"></i>&nbsp; 24 X 7 customer service</a>\n                            <a href=\"https://advertising.flipkart.com/login?returl=/?otracker=ch_vn_advertise_header\"><i class=\"fas fa-arrow-up\"></i>&nbsp; Advertise</a>\n                            <a href=\"https://www.flipkart.com/mobile-apps?otracker=ch_vn_mobile_apps\"><i class=\"fa-solid fa-download\"></i> &nbsp; Download App</a>\n\n\n                        </div>\n                    </li>\n                    <style>\n                        .nav-item .dropdown-menu a {\n                            color: black;\n                            padding: 6px 16px;\n                            text-decoration: none;\n                            display: block;\n                        }\n\n                        .nav-item .dropdown-menu a:hover {\n                            background-color: #f1f1f1;\n                        }\n\n                        .nav-item:hover .dropdown-menu {\n                            display: block;\n                        }\n\n                        .nav-item:hover{\n                            text-decoration: underline;\n                        }\n                    </style>\n\n                    <!-- <a class=\"nav-link nav-dd dropdown-toggle\" href=\"#\" role=\"button\" data-bs-toggle=\"dropdown\" aria-expanded=\"false\">\n   <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/header_3verticalDots-ea7819.svg\" style=\"width: 20px; height: 20px; margin-right: 5px;\" /> More Links\n    </a> -->\n\n\n                    \n                    </li>\n\n                </ul>\n            </div>\n        </nav>\n    </header>\n    <div class=\"hero\">\n    </div>\n    <div class=\"offer\" id=\"one\"></div>\n    <div class=\"offer\" id=\"two\"></div>\n    <div class=\"offer\" id=\"three\"></div>\n    <div class=\"offer\" id=\"four\"></div>\n    <div class=\"offer\" id=\"five\"></div>\n    <div class=\"offer\" id=\"six\"></div>\n    <div class=\"offer\" id=\"seven\"></div>\n    <div class=\"offer\" id=\"eight\"></div>\n    <footer id=\"footer\" style=\"background-color: #09090a;\"></footer>\n    <footer style=\"background-color: #09090a; margin-top: 3rem;\">\n        <div class=\"container-fluid footerTop\">\n            <div class=\"row footer1\">\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>ABOUT</h5>\n                        <ul>\n                            <li><a href=\"../pages/contact_us/contact_us.html\">Contact Us</a></li>\n                            <li><a href=\"\">About Us</a></li>\n                            <li><a href=\"\">Careers</a></li>\n                            <li><a href=\"\">Flipkart Stories</a></li>\n                            <li><a href=\"\">Press</a></li>\n                            <li><a href=\"../pages/Corporate_Information/index.html\">Corporate Information</a></li>\n                            <li><i><a href=\"\">Explore Plus</a></i></li>\n                            \n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>GROUP COMPANIES</h5>\n                        <ul>\n                            <li><a href=\"https://www.myntra.com/\">Myntra</a></li>\n                            <li><a href=\"https://www.flipkartwholesale.com/\">Flipkart Wholesale</a></li>\n                            <li><a href=\"https://www.cleartrip.com/\">Cleartrip</a></li>\n                            <li><a href=\"https://www.shopsy.in/\">Shopsy</a></li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>HELP</h5>\n                        <ul>\n                            <li><a href=\"../pages/Payments/index.html\">Payments</a></li>\n                            <li><a href=\"../pages/Shipping/index.html\">Shipping</a></li>\n                            <li><a href=\"../pages/Cancellation_and_Returns/index.html\">Cancellation & Returns</a></li>\n                            <li><a href=\"/FAQ.html\">FAQ</a></li>\n                            <li><a href=\"\">Report Infringement</a></li>\n                          \n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>CONSUMER POLICY</h5>\n                        <ul>\n                            <li><a href=\"../pages/return and Cancellation/return.html\">Cancellation & Returns</a></li>\n                            <li><a href=\"../pages/terms/index.html\">Terms Of Use</a></li>\n                            <li><a href=\"../pages/Security/security.html\">Security</a></li>\n                            <li><a href=\"../pages/privacypolicy/index.html\">Privacy</a></li>\n                            <li><a href=\"\">Sitemap</a></li>\n                            <li><a href=\"\">Grievance Redressal</a></li>\n                            <li><a href=\"../pages/EPR_Page/epr.html\">EPR Compilance</a></li>\n\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6 mailSocial\">\n                    <div class=\"footerI\">\n                        <div class=\"mail\">\n                            <h5>Mail Us:</h5>\n                            <p>\n                                Flipkart Internet Private Limited,\n                                Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                                Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India\n                            </p>\n                        </div>\n                        <div class=\"social\">\n                            <h5>Social</h5>\n                            <ul>\n                                <li><a href=\"https://www.facebook.com/flipkart/\" aria-label=\"Facebook\">\n                                    <img src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjkzMzEgMjFDMTcuOTAzNyAyMSAyMS45MzMxIDE2Ljk3MDYgMjEuOTMzMSAxMkMyMS45MzMxIDcuMDI5NDQgMTcuOTAzNyAzIDEyLjkzMzEgM0M3Ljk2MjU0IDMgMy45MzMxMSA3LjAyOTQ0IDMuOTMzMTEgMTJDMy45MzMxMSAxNi45NzA2IDcuOTYyNTQgMjEgMTIuOTMzMSAyMVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE2LjY4MzEgOC4yNUgxNS4xODMxQzE0LjU4NjQgOC4yNSAxNC4wMTQxIDguNDg3MDUgMTMuNTkyMSA4LjkwOTAxQzEzLjE3MDIgOS4zMzA5NyAxMi45MzMxIDkuOTAzMjYgMTIuOTMzMSAxMC41VjIxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05LjkzMzExIDEzLjVIMTUuOTMzMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K\" alt=\"Flipkart Facebook Page\"></a></li>\n                                <li><a href=\"https://twitter.com/Flipkart\" aria-label=\"Twitter\">\n                                    <img src=\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE4M18yMCkiPgo8cGF0aCBkPSJNMTMuNTQzNiAxMC42MTc5TDIwLjA5NzEgM0gxOC41NDQxTDEyLjg1MzcgOS42MTQ0OEw4LjMwODg3IDNIMy4wNjY4OUw5LjkzOTY0IDEzLjAwMjNMMy4wNjY4OSAyMC45OTA4SDQuNjE5OTRMMTAuNjI5MSAxNC4wMDU2TDE1LjQyODggMjAuOTkwOEgyMC42NzA4TDEzLjU0MzIgMTAuNjE3OUgxMy41NDM2Wk0xMS40MTY1IDEzLjA5MDRMMTAuNzIwMiAxMi4wOTQ0TDUuMTc5NTMgNC4xNjkxMUg3LjU2NDkxTDEyLjAzNjMgMTAuNTY1MUwxMi43MzI2IDExLjU2MTFMMTguNTQ0OCAxOS44NzQ4SDE2LjE1OTVMMTEuNDE2NSAxMy4wOTA4VjEzLjA5MDRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE4M18yMCI+CjxyZWN0IHg9IjMuMDY2ODkiIHk9IjMiIHdpZHRoPSIxNy42MDM5IiBoZWlnaHQ9IjE4IiByeD0iMC4yIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=\" alt=\"Flipkart Twitter Page\"></a></li>\n                                <li><a href=\"https://www.youtube.com/flipkart\" aria-label=\"YouTube\">\n                                    <img src=\"https://static-assets-web.flixcart.com/fk-p-linchpin-web/fk-cp-zion/img/YoutubeLogo_958b78.svg\" alt=\"Flipkart YouTube Channel\"></a></li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n                <div class=\"col-lg-2 col-md-4 col-sm-6\">\n                    <div class=\"footerI\">\n                        <h5>Registered Office Address:</h5>\n                        <p>Flipkart Internet Private Limited,\n                            Buildings Alyssa, Begonia & Clove Embassy Tech Village,\n                            Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India</p>\n                        <p>CIN : U51109KA2012PTC066107</p>\n                        <p>Telephone: <a class=\"text-primary\" href=\"tel:044-45614700\">044-45614700</a>\n                            / <a class=\"text-primary\" href=\"tel:044-67415800\">044-67415800</a>\n                        </p>\n                    </div>\n                </div>\n            </div>\n        </div>\n\n        <div class=\"container-fluid footerEnd\">\n            <div class=\"row align-items-center\">\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE2IDE1Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0yLTJoMjB2MjBILTJ6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTUuOTMgNS42MTRoLTIuOTQ4VjQuMTRjMC0uODE4LS42NTUtMS40NzMtMS40NzMtMS40NzNIOC41NmMtLjgxNyAwLTEuNDczLjY1NS0xLjQ3MyAxLjQ3M3YxLjQ3NEg0LjE0Yy0uODE4IDAtMS40NjYuNjU2LTEuNDY2IDEuNDc0bC0uMDA3IDguMTA1YzAgLjgxOC42NTUgMS40NzQgMS40NzMgMS40NzRoMTEuNzljLjgxOCAwIDEuNDc0LS42NTYgMS40NzQtMS40NzRWNy4wODhjMC0uODE4LS42NTYtMS40NzQtMS40NzQtMS40NzR6bS00LjQyMSAwSDguNTZWNC4xNGgyLjk0OHYxLjQ3NHoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yIC0yKSIvPgogICAgPC9nPgo8L3N2Zz4K\"\n                        alt=\"Become a Seller\" width=\"16\" height=\"15\">\n                    <a href=\"../pages/Sell_Online/sell_online.html\"             \n                        aria-label=\"Become a Seller\"><span>Become a Seller</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE1IDE1Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0zLTNoMjB2MjBILTN6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTAuNDkyIDNDNi4zNTMgMyAzIDYuMzYgMyAxMC41YzAgNC4xNCAzLjM1MyA3LjUgNy40OTIgNy41QzE0LjY0IDE4IDE4IDE0LjY0IDE4IDEwLjUgMTggNi4zNiAxNC42NCAzIDEwLjQ5MiAzem0zLjE4IDEyTDEwLjUgMTMuMDg4IDcuMzI3IDE1bC44NC0zLjYwN0w1LjM3IDguOTdsMy42OS0uMzE1TDEwLjUgNS4yNWwxLjQ0IDMuMzk4IDMuNjkuMzE1LTIuNzk4IDIuNDIyLjg0IDMuNjE1eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMgLTMpIi8+CiAgICA8L2c+Cjwvc3ZnPgo=\"\n                        alt=\"Advertise\" width=\"15\" height=\"15\">\n                    <a href=\"https://brands.flipkart.com\" aria-label=\"Advertise\"><span>Advertise</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDE4IDE3Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0xLTFoMjB2MjBILTF6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMTYuNjY3IDVIMTQuODVjLjA5Mi0uMjU4LjE1LS41NDIuMTUtLjgzM2EyLjQ5NyAyLjQ5NyAwIDAgMC00LjU4My0xLjM3NUwxMCAzLjM1bC0uNDE3LS41NjdBMi41MSAyLjUxIDAgMCAwIDcuNSAxLjY2N2EyLjQ5NyAyLjQ5NyAwIDAgMC0yLjUgMi41YzAgLjI5MS4wNTguNTc1LjE1LjgzM0gzLjMzM2MtLjkyNSAwLTEuNjU4Ljc0Mi0xLjY1OCAxLjY2N2wtLjAwOCA5LjE2NkExLjY2IDEuNjYgMCAwIDAgMy4zMzMgMTcuNWgxMy4zMzRhMS42NiAxLjY2IDAgMCAwIDEuNjY2LTEuNjY3VjYuNjY3QTEuNjYgMS42NiAwIDAgMCAxNi42NjcgNXptMCA2LjY2N0gzLjMzM3YtNWg0LjIzNEw1LjgzMyA5LjAyNWwxLjM1Ljk3NSAxLjk4NC0yLjdMMTAgNi4xNjdsLjgzMyAxLjEzMyAxLjk4NCAyLjcgMS4zNS0uOTc1LTEuNzM0LTIuMzU4aDQuMjM0djV6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMSAtMSkiLz4KICAgIDwvZz4KPC9zdmc+Cg==\"\n                        alt=\"Gift Cards\" width=\"18\" height=\"17\">\n                    <a href=\"../the-gift-card-store/index.html\"\n                        aria-label=\"Gift Cards\"><span>Gift Cards</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE1IDE1Ij4KICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjAlIiB4Mj0iODYuODc2JSIgeTE9IjAlIiB5Mj0iODAuMjAyJSI+CiAgICAgICAgICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNGRkQ4MDAiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkZBRjAwIi8+CiAgICAgICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDwvZGVmcz4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTS0yLTNoMjB2MjBILTJ6Ii8+CiAgICAgICAgPHBhdGggZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOS41IDNDNS4zNiAzIDIgNi4zNiAyIDEwLjUgMiAxNC42NCA1LjM2IDE4IDkuNSAxOGM0LjE0IDAgNy41LTMuMzYgNy41LTcuNUMxNyA2LjM2IDEzLjY0IDMgOS41IDN6bS43NSAxMi43NWgtMS41di0xLjVoMS41djEuNXptMS41NTMtNS44MTNsLS42NzYuNjljLS41NC41NDgtLjg3Ny45OTgtLjg3NyAyLjEyM2gtMS41di0uMzc1YzAtLjgyNS4zMzgtMS41NzUuODc3LTIuMTIzbC45My0uOTQ1Yy4yNzgtLjI3LjQ0My0uNjQ1LjQ0My0xLjA1NyAwLS44MjUtLjY3NS0xLjUtMS41LTEuNVM4IDcuNDI1IDggOC4yNUg2LjVhMyAzIDAgMSAxIDYgMGMwIC42Ni0uMjcgMS4yNi0uNjk3IDEuNjg4eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIgLTMpIi8+CiAgICA8L2c+Cjwvc3ZnPgo=\"\n                        alt=\"Help Center\" width=\"15\" height=\"15\">\n                    <a href=\"../pages/help center/index.html\"\n                        aria-label=\"Help Center\"><span>Help Center</span></a>\n                </div>\n                <div class=\"col-auto\">\n                    <span>© 2007-2024 <span>Flipkart.com</span></span>\n                </div>\n                <div class=\"col-auto\">\n                    <img src=\"https://static-assets-web.flixcart.com/batman-returns/batman-returns/p/images/payment-method-c454fb.svg\"\n                        class=\"pCGSTEF\" alt=\"Payment methods\">\n                </div>\n            </div>\n        </div>\n    </footer>\n    <script src=\"https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js\"></script>\n</body>"
  },
  {
    "path": "viewcart/cart.css",
    "content": "* {\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n    font-family: Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    /* border: 1px solid red; */\n}\n\nbody {\n    background-color: #f1f3f6;\n}\n\nnav {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 8px 5%;\n    background-color: #2874F0;\n}\n\n.nav-left {\n    display: flex;\n    align-items: center;\n    gap: 20px;\n}\n\ninput {\n    width: 40vw;\n    padding: 10px;\n}\n\nbutton {\n    padding: 10px 20px;\n    width: 150px;\n    color: rgb(75, 75, 255);\n    background-color: white;\n    font-weight: 600;\n    border: none;\n}\n\n.search {\n    position: relative;\n}\n\ni {\n    position: absolute;\n    top: 30%;\n    right: 0;\n    color: rgb(75, 75, 255);\n    height: 100%;\n    width: 30px;\n\n}\n.cartItmPMBtn {\n    width: 50px;\n    border: 2px solid #f1f3f6;\n    border-radius: 50%;\n}\n.cartItmListInviewCart .cartItmSfLRmBtn:hover{\n    cursor: pointer;\n}\n/* for popup remove and confermation */\n.popup {\n    position: fixed;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    background-color: #f0f0f0;\n    border: 1px solid #ccc;\n    padding: 10px;\n    border-radius: 5px;\n    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n    z-index: 1000;\n    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;\n    visibility: hidden;\n    opacity: 0;\n  }\n  \n  .popup.hidden {\n    opacity: 0;\n    visibility: hidden;\n  }\n  \n  .popup.visible {\n    opacity: 1;\n    visibility: visible;\n  }\n  \n\nfooter {\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: space-between;\n    padding: 0 5%;\n    margin-top: 100px;\n    font-size: 14px;\n    color: grey;\n    position: relative;\n}\n\nfooter::before {\n    position: absolute;\n    height: 2px;\n    background-color: grey;\n    content: '';\n    top: -35px;\n    width: 100%;\n    left: 0;\n}\n\nfooter span {\n    color: rgb(75, 75, 255);\n}\n\n.empty-cart {\n    margin: 25px 5%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    flex-direction: column;\n    padding: 15px;\n    background-color: white;\n    gap: 25px;\n\n}\n\n.empty-cart h4 {\n    font-size: 18px;\n}\n\n.empty-cart button {\n    background-color: rgb(255, 117, 67);\n    color: white;\n}\n\n\n\n/* card items  */\n#cardInProduct .container- {\n    margin: 5px 2vw;\n}\n\n#itemsInCart {\n    height: 60vh;\n    overflow-y: scroll;\n}\n\n#itemsInCart .itemDetail,\n.deliveryDate {\n    font-size: small;\n}\n\n#itemsInCart .itemDetail {\n    width: 60%;\n}\n\n#cardInProduct .placeOrder {\n    background: #fb641b;\n    width: max-content;\n    padding: 10px 50px;\n    border-radius: 5px;\n}\n\n#itemsInCart p {\n    margin: 0;\n    padding: 0;\n\n}\n\n\n@media screen and (max-width : 1070px) {\n    footer {\n        font-size: 12px;\n    }\n}\n\n@media screen and (max-width : 890px) {\n    footer {\n        font-size: 11px;\n        padding: 0 5px;\n    }\n\n    input {\n        width: 40vw;\n        padding: 5px;\n        font-size: 12px;\n    }\n\n    nav button {\n        padding: 5px;\n        width: 100px;\n        font-size: 12px;\n    }\n\n    .nav-left {\n        gap: 10px;\n    }\n}\n\n@media screen and (max-width : 670px) {\n    nav img {\n        height: 20px;\n    }\n\n    input,\n    nav button {\n        font-size: 8px;\n    }\n\n}"
  },
  {
    "path": "viewcart/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <meta name=\"theme-color\" content=\"#2874F0\" id=\"themeColor\" />\n    <title>Shopping Cart | Flipkart.com </title>\n    <link rel=\"icon\" type=\"image/x-icon\" href=\"../img/flipkart_lite.png\" />\n    <script src=\"https://kit.fontawesome.com/c732ec9339.js\" crossorigin=\"anonymous\"></script>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/bootstrap.min.css\" />\n    <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"./cart.css\">\n    <style>\n         #progress-container {\n    position: fixed ;\n    top: 0px;\n    left: 0;\n    width: 100%;\n    height: 15px;\n    z-index: 99990;\n    /* background: #f3f3f3; */\n}\n\n#progress-bar {\n    height: 53%;\n    width: 0;\n    background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%);\n    box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7);\n    transition: width 0.09s ease-in-out;\n    border-radius: 10px;\n}\n    </style>\n</head>\n\n<body>\n    <div id=\"progress-container\">\n        <div id=\"progress-bar\"></div>\n      </div>\n\n      <script>\n            \n        window.addEventListener('scroll', function() {\n            const winScroll = document.body.scrollTop || document.documentElement.scrollTop;\n            const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;\n            const scrolled = (winScroll / height) * 100;\n            document.getElementById('progress-bar').style.width = scrolled + '%';\n        });\n        </script>\n      \n\n    <nav>   \n        <div class=\"nav-left\">\n            <a class=\"navbar-brand\" href=\"https://flipkart-clone-seven-azure.vercel.app/\">\n                <img src=\"../img/flipcartlogo.PNG\" width=auto height=\"40\" title=\"Flipkart\" alt=\"Flipkart\" />\n            </a>\n\n            <div class=\"search\">\n                <input type=\"search\" placeholder=\"Search for products, brands and more...\">\n                <i class=\"fa fa-search\" aria-hidden=\"true\"></i>\n            </div>\n        </div>\n        <a href=\"../account/login-signup.html\"><button>Login</button></a>\n\n    </nav>\n\n\n    <div class=\"cart-container\" id=\"cardisEmpty\">\n        <div class=\"empty-cart\">\n            <img src=\"https://rukminim2.flixcart.com/www/800/800/promos/16/05/2019/d438a32e-765a-4d8b-b4a6-520b560971e8.png?q=90\"\n                alt=\"\" height=\"200px\" width=\"200px\">\n            <h4>Missing Cart items?</h4>\n            <small>\n                Login to see the items you added previously</small>\n            <a href=\"../account/login-signup.html\"><button>Login</button></a>\n        </div>\n    </div>\n\n    <div class=\"container-fluid mt-4\" id=\"cardInProduct\">\n        <div class=\"container-\">\n            <div class=\"row\">\n                <div class=\"col-md-8\">\n                    <div class=\"deliver_c_pc d-flex justify-content-between align-items-center bg-white\">\n                        <p class=\"p-3\">Delever to: <strong>Bhopal-462022</strong></p>\n                        <button class=\"btn m-3\">Change</button>\n                    </div>\n                    <div id=\"itemsInCart\">\n                        <!-- <div id=\"cartItmListInviewCart\" class=\"bg-white\">\n                            <div class=\"itemInCart d-flex p-3 m-1\">\n                              <div style=\"height: 112px; width: 112px;\" class=\"m-3\">\n                                <img src=\"../json-api/product-img/${item.productImg}\" style=\"width: auto; height: 80px; object-fit: contain;\"\n                                  alt=\"${item.name}\">\n                              </div>\n                              <div class=\"itemDetail\">\n                                <div>\n                                  <p>${item.name}</p>\n                                  <p> Forest Green Strap, Regular</p>\n                                  <p> Seller: Ezig </p>\n                                </div>\n                                <div>\n                                  <b>₹${item.price}</b> 1 offer applied\n                                </div>\n                              </div>\n                              <div class=\"deliveryDate\">\n                                Delivery by ${dayOfWeek}, ${date} | <del>₹40</del> Free\n                              </div>\n                            </div>\n                            <div class=\"cartItmRmPMdiv container-fluid pt-2 pb-2\" style=\"border-top:1px solid #f1f3f6\">\n                              <div class=\"row\">\n                                <div class=\"plusMinItm col-sm-6\">\n                                  <div class=\"d-flex justify-content-center align-items-center\">\n                                    <button class=\"cartItmPMBtn\" disabled=\"\"> – </button>\n                                    <div class=\"cartItmQty\"><input type=\"text\" class=\"text-center\" value=\"1\" style=\"width:50px\"></div>\n                                    <button class=\"cartItmPMBtn\"> + </button>\n                                  </div>\n                                </div>\n                                <div class=\"cartItmSfLRm d-flex justify-content-around align-items-center col-sm-6\">\n                                  <div class=\"cartItmSfLRmBtn\">Save for later</div>\n                                  <div class=\"cartItmSfLRmBtn\">Remove</div>\n                                </div>\n                              </div>\n                            </div>\n                          </div> -->\n                    </div>\n                    <div class=\"d-flex flex-row-reverse p-3 bg-white\" style=\"border: 2px solid #efefef;\">\n                        <button class=\"placeOrder text-white\" onclick=\"window.location.href='https://flipkart-clone-seven-azure.vercel.app/addtokart/checkout.html'\"\">PLACE ORDER \n                        </button>\n                    </div>\n                </div>\n                <div class=\"col-md-4\">\n                    <div>\n                        <h5>PRICE DETAILS</h5>\n                        <div id=\"priceDetail\">\n                            <!-- <pre>\nPrice (2 items)                 ₹15,998\nDiscount                        0\nDelivery Charges                ₹110 Free\nTotal Amount                    <b>₹3,098</b> \nYou will save ₹110 on this order\n                            </pre> -->\n                        </div>\n                        <div>\n                            <!-- demo -->\n                            <button class=\"btn btn-danger\" onclick=\"window.location.href='https://flipkart-clone-seven-azure.vercel.app/addtokart/checkout.html'\">Buy Now</button>\n                        </body>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n    </div>\n\n\n\n    <div id=\"popupCartItem\" class=\"popup hidden\"></div>\n\n    <footer>\n        <div class=\"footer-right\">\n            Policies:Returns | Policy | Terms of use | Security | Privacy | Infringement | © 2007-2024 Flipkart.com\n        </div>\n        <div class=\"footer-left\">\n            Need help? Visit the <span>Help Center</span> or <span>Contact Us</span>\n        </div>\n    </footer>\n\n    <script src=\"../js/bootstrap.bundle.min.js\"></script>\n    <script src=\"viewcart.js\"></script>\n</body>\n\n</html>\n\n\n"
  },
  {
    "path": "viewcart/viewcart.js",
    "content": "// Existing code...\n\nconst today = new Date();\nconst nextThreeDays = new Date(today);\nnextThreeDays.setDate(today.getDate() + 3);\n\nconst daysOfWeek = [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"];\nconst dayOfWeek = daysOfWeek[nextThreeDays.getDay()];\nconst date = nextThreeDays.toLocaleDateString();\n\n// Cart JS\n\n// Function to save data to local storage\nfunction saveToLocalStorage(key, newData) {\n    let existingData = getFromLocalStorage(key) || [];\n\n    // Check for duplicates and add only unique products\n    newData.forEach(newProduct => {\n        const isDuplicate = existingData.some(existingProduct => existingProduct.name === newProduct.name);\n        if (!isDuplicate) {\n            existingData.push(newProduct);\n        }\n    });\n\n    localStorage.setItem(key, JSON.stringify(existingData));\n}\n\n// Function to retrieve data from local storage\nfunction getFromLocalStorage(key) {\n    const data = localStorage.getItem(key);\n    return data ? JSON.parse(data) : [];\n}\n\n// Function to get query parameter\nfunction getQueryParameter(name) {\n    const urlParams = new URLSearchParams(window.location.search);\n    return urlParams.get(name);\n}\n\n// Function to display search results\nfunction searchFetch(products) {\n    const searchList = document.getElementById(\"itemsInCart\");\n    searchList.innerHTML = products.map((product, index) => fetchCartData(product, index)).join(\"\"); // Added index parameter to the map function\n\n    // Add event listeners for remove buttons\n    document.querySelectorAll('.cartItmSfLRmBtn.remove').forEach(button => {\n        button.addEventListener('click', function() {\n            const productName = this.getAttribute('data-name');\n            confirmRemoveItem(productName);\n        });\n    });\n\n    updateCartDisplay(products);\n    updatePriceDetail(products);\n}\n\nlet totalPrice = 0;\nlet totalItems = 0;\n\n// Function to generate HTML for a cart item\nfunction fetchCartData(item, index) { // Added index parameter to the function\n    totalItems += 1;\n    totalPrice += item.price;\n\n    const discount = (Math.floor(item.rating * (parseInt((item.price.toString()).slice(0, 2))) / 10));\n    const afterDiscountPrice = Math.round((100 - discount) * item.price / 100);\n\n    function formatIndianRupee(number) {\n        const parts = number.toString().split(\".\");\n        const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!d))/g, \",\");\n        const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\n        return formattedNumber;\n    }\n\n    return `\n  <div class=\"cartItmListInviewCart bg-white\">\n    <div class=\"itemInCart d-flex p-3 m-1\">\n      <div style=\"height: 60px; width: 112px;\" class=\"m-3 d-flex justify-content-center\">\n        <img src=\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product-img/${item.productImg}\" style=\"width: auto; height: 80px; object-fit: contain;\" alt=\"${item.name}\">\n      </div>\n      <div class=\"itemDetail\">\n        <div>\n          <p>${item.name}</p>\n          <p> Forest Green Strap, Regular</p>\n          <p> Seller: Ezig </p>\n        </div>\n        <div class=\"\"><strong>₹${formatIndianRupee(afterDiscountPrice)}</strong> <del style=\"color:#878787\">₹${formatIndianRupee(item.price)}</del> <span style=\"color:#388e3c\"> ${discount}% off </span>\n        <span class=\"text-success\">1 offer applied</span>\n        </div>\n      </div>\n      <div class=\"deliveryDate\">\n        Delivery by ${dayOfWeek}, ${date} | <del>₹40</del> Free\n      </div>\n    </div>\n    <div class=\"cartItmRmPMdiv container-fluid pt-2 pb-2\" style=\"border-top:1px solid #f1f3f6\">\n      <div class=\"row\">\n        <div class=\"plusMinItm col-sm-6\">\n          <div class=\"d-flex justify-content-center align-items-center\">\n            <button class=\"cartItmPMBtn\" onclick=\"decreaseQuantity(${index})\">–</button>&nbsp <!-- Added onclick event with index parameter -->\n            <div class=\"cartItmQty\"><input type=\"text\" class=\"text-center input\" value=\"1\" id=\"quantity-${index}\" style=\"width:50px; border: 1px solid #f1f3f6\"></div>&nbsp <!-- Added id with index parameter -->\n            <button class=\"cartItmPMBtn\" onclick=\"increaseQuantity(${index})\">+</button> <!-- Added onclick event with index parameter -->\n          </div>\n        </div>\n        <div class=\"cartItmSfLRm d-flex justify-content-around align-items-center col-sm-6\">\n          <div class=\"cartItmSfLRmBtn\">Save for later</div>\n          <div class=\"cartItmSfLRmBtn remove\" data-name=\"${item.name}\">Remove</div>\n        </div>\n      </div>\n    </div>\n  </div>\n  `;\n}\n\n// Function to increase the quantity of a specific item\nfunction increaseQuantity(index) { // Added function to handle increasing quantity\n    const input = document.getElementById(`quantity-${index}`); // Use index to target specific input\n    input.value = Number(input.value) + 1;\n}\n\n// Function to decrease the quantity of a specific item\nfunction decreaseQuantity(index) { // Added function to handle decreasing quantity\n    const input = document.getElementById(`quantity-${index}`); // Use index to target specific input\n    const currentValue = Number(input.value);\n    if (currentValue > 1) {\n        input.value = currentValue - 1;\n    } else {\n        const productName = input.closest('.cartItmListInviewCart').querySelector('.remove').getAttribute('data-name');\n        confirmRemoveItem(productName);\n    }\n}\n\n// Function to confirm and remove an item from the cart\nfunction confirmRemoveItem(name) {\n    const confirmRemove = confirm(`Are you sure you want to remove \"${name}\" from the cart?`);\n    if (confirmRemove) {\n        removeItem(name);\n    }\n}\n\n// Function to remove an item from the cart\nfunction removeItem(name) {\n    let existingData = getFromLocalStorage(\"filteredProducts\") || [];\n    const updatedData = existingData.filter(item => item.name !== name);\n    localStorage.setItem(\"filteredProducts\", JSON.stringify(updatedData));\n\n    // Update the displayed cart and price details\n    searchFetch(updatedData);\n\n    // Show success popup\n    showPopup(`\"${name}\" has been removed from your cart successfully.`);\n}\n\n// Function to show a popup message\nfunction showPopup(message) {\n    const popup = document.getElementById('popupCartItem');\n    popup.textContent = message;\n    popup.classList.remove('hidden');\n    popup.classList.add('visible');\n\n    // Hide the popup after 1 second\n    setTimeout(() => {\n        popup.classList.remove('visible');\n        popup.classList.add('hidden');\n    }, 3000);\n}\n\n// Function to show or hide cart based on product list\nfunction updateCartDisplay(filteredProducts) {\n    let cartInProduct = document.getElementById(\"cardInProduct\");\n    let cartisEmpty = document.getElementById(\"cardisEmpty\");\n\n    if (filteredProducts.length === 0) {\n        cartInProduct.style.display = \"none\";\n        cartisEmpty.style.display = \"block\";\n    } else {\n        cartInProduct.style.display = \"block\";\n        cartisEmpty.style.display = \"none\";\n    }\n}\n\n// Function to update the price detail section\nfunction updatePriceDetail(products) {\n    function formatIndianRupee(number) {\n        const parts = number.toString().split(\".\");\n        const integerPart = parts[0].replace(/\\B(?=(\\d{3})+(?!d))/g, \",\");\n        const formattedNumber = parts.length > 1 ? integerPart + \".\" + parts[1] : integerPart;\n        return formattedNumber;\n    }\n    totalItems = products.length;\n    totalMRP = products.reduce((acc, item) => acc + (item.price), 0);\n    totalPrice = products.reduce((acc, item) => acc + (Math.round((100 - ((Math.floor(item.rating * (parseInt((item.price.toString()).slice(0, 2))) / 10)))) * item.price / 100)), 0);\n    totalDiscount = totalMRP - totalPrice\n\n    let priceDetail = `\n    <div style=\"display: flex; flex-direction: column;\">\n      <div class=\"d-flex justify-content-between\">\n        <div>Price (${totalItems} items) </div>\n        <div>₹${formatIndianRupee(totalMRP)}</div>\n      </div>\n      <div class=\"d-flex justify-content-between\">\n        <div>Discount </div>\n        <div>₹${formatIndianRupee(totalDiscount)}</div>\n      </div>\n      <div class=\"d-flex justify-content-between\">\n        <div>Delivery Charges </div>\n        <div>Free</div>\n      </div>\n      <div class=\"d-flex justify-content-between\">\n        <div><strong>Total Amount</strong></div>\n        <div>₹${formatIndianRupee(totalPrice)}</div>\n      </div>\n    </div>`\n\n    document.getElementById(\"priceDetail\").innerHTML = priceDetail;\n}\n\n// Fetch and display data\nfetch(\"https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json\")\n    .then(response => response.json())\n    .then(data => {\n        const query = getQueryParameter(\"query\");\n        const filteredProducts = data.filter(product => product.name === query);\n\n        // Save filtered products to local storage without overwriting existing data\n        saveToLocalStorage(\"filteredProducts\", filteredProducts);\n\n        // Retrieve updated filtered products from local storage\n        const savedFilteredProducts = getFromLocalStorage(\"filteredProducts\");\n\n        // Display the filtered products\n        searchFetch(savedFilteredProducts);\n    })\n    .catch(error => console.error(\"Error fetching data:\", error));"
  }
]