Spaces:
Runtime error
Runtime error
Upload 4 files
Browse files- Dockerfile +28 -0
- app.py +199 -0
- requirements.txt +19 -0
- templates/index.html +103 -0
Dockerfile
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use official Python image
|
| 2 |
+
FROM python:3.10-slim
|
| 3 |
+
|
| 4 |
+
# Set environment variables
|
| 5 |
+
ENV PYTHONUNBUFFERED=1 \
|
| 6 |
+
PYTHONDONTWRITEBYTECODE=1 \
|
| 7 |
+
PIP_NO_CACHE_DIR=1
|
| 8 |
+
|
| 9 |
+
# Set work directory
|
| 10 |
+
WORKDIR /app
|
| 11 |
+
|
| 12 |
+
# Copy all files into the container
|
| 13 |
+
COPY . /app
|
| 14 |
+
|
| 15 |
+
# Install system dependencies
|
| 16 |
+
RUN apt-get update && apt-get install -y \
|
| 17 |
+
git \
|
| 18 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 19 |
+
|
| 20 |
+
# Install Python dependencies
|
| 21 |
+
RUN pip install --upgrade pip
|
| 22 |
+
RUN pip install -r requirements.txt
|
| 23 |
+
|
| 24 |
+
# Expose port for Hugging Face
|
| 25 |
+
EXPOSE 7860
|
| 26 |
+
|
| 27 |
+
# Start the Flask app
|
| 28 |
+
CMD ["python", "app.py"]
|
app.py
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from flask import Flask, request, render_template, send_file, redirect, url_for
|
| 2 |
+
import os
|
| 3 |
+
import re
|
| 4 |
+
import uuid
|
| 5 |
+
import numpy as np
|
| 6 |
+
import faiss
|
| 7 |
+
from sentence_transformers import SentenceTransformer
|
| 8 |
+
from transformers import pipeline
|
| 9 |
+
from PyPDF2 import PdfReader
|
| 10 |
+
|
| 11 |
+
print("✅ App starting...")
|
| 12 |
+
print("⏳ Loading SentenceTransformer model...")
|
| 13 |
+
model = SentenceTransformer('all-MiniLM-L6-v2')
|
| 14 |
+
print("✅ Model loaded.")
|
| 15 |
+
|
| 16 |
+
print("⏳ Loading NLI pipeline...")
|
| 17 |
+
nli = pipeline("text-classification", model="microsoft/deberta-large-mnli")
|
| 18 |
+
print("✅ NLI pipeline loaded.")
|
| 19 |
+
|
| 20 |
+
app = Flask(__name__)
|
| 21 |
+
|
| 22 |
+
# ── base folders ───────────────────────────────────────────────────────────────
|
| 23 |
+
BASE_UPLOADS = os.path.join(os.path.dirname(__file__), "uploads")
|
| 24 |
+
BASE_RESULTS = os.path.join(os.path.dirname(__file__), "results")
|
| 25 |
+
os.makedirs(BASE_UPLOADS, exist_ok=True)
|
| 26 |
+
os.makedirs(BASE_RESULTS, exist_ok=True)
|
| 27 |
+
|
| 28 |
+
# ── clear uploads at launch ────────────────────────────────────────────────────
|
| 29 |
+
def clear_uploads_folder():
|
| 30 |
+
"""Remove all files and subfolders inside the uploads folder on app launch."""
|
| 31 |
+
for entry in os.listdir(BASE_UPLOADS):
|
| 32 |
+
path = os.path.join(BASE_UPLOADS, entry)
|
| 33 |
+
if os.path.isdir(path):
|
| 34 |
+
for root, dirs, files in os.walk(path, topdown=False):
|
| 35 |
+
for fname in files:
|
| 36 |
+
os.remove(os.path.join(root, fname))
|
| 37 |
+
for dname in dirs:
|
| 38 |
+
os.rmdir(os.path.join(root, dname))
|
| 39 |
+
os.rmdir(path)
|
| 40 |
+
else:
|
| 41 |
+
os.remove(path)
|
| 42 |
+
clear_uploads_folder()
|
| 43 |
+
print("✅ Uploads folder cleared.")
|
| 44 |
+
|
| 45 |
+
# runtime cache keyed by search‑id → (paragraphs, embeddings, faiss‑index)
|
| 46 |
+
index_data = {}
|
| 47 |
+
|
| 48 |
+
# ── helpers ────────────────────────────────────────────────────────────────────
|
| 49 |
+
def get_paths(sid: str):
|
| 50 |
+
"""Return per‑search folders & files, creating them if needed."""
|
| 51 |
+
up_folder = os.path.join(BASE_UPLOADS, sid)
|
| 52 |
+
res_folder = os.path.join(BASE_RESULTS, sid)
|
| 53 |
+
os.makedirs(up_folder, exist_ok=True)
|
| 54 |
+
os.makedirs(res_folder, exist_ok=True)
|
| 55 |
+
merged_file = os.path.join(res_folder, "merged.txt")
|
| 56 |
+
result_file = os.path.join(res_folder, "results.txt")
|
| 57 |
+
return up_folder, res_folder, merged_file, result_file
|
| 58 |
+
|
| 59 |
+
def extract_text(file_path):
|
| 60 |
+
if file_path.endswith('.txt'):
|
| 61 |
+
with open(file_path, 'r', encoding='utf-8') as f:
|
| 62 |
+
return f.read()
|
| 63 |
+
elif file_path.endswith('.pdf'):
|
| 64 |
+
reader = PdfReader(file_path)
|
| 65 |
+
full_text = " ".join(page.extract_text() for page in reader.pages if page.extract_text())
|
| 66 |
+
full_text = re.sub(r'(?<=[.!?])\s{2,}', '\n\n', full_text)
|
| 67 |
+
full_text = re.sub(r'(?<=[a-z])\.\s+(?=[A-Z])', '.\n\n', full_text)
|
| 68 |
+
full_text = re.sub(r'(\n\s*){2,}', '\n\n', full_text)
|
| 69 |
+
return full_text
|
| 70 |
+
return ""
|
| 71 |
+
|
| 72 |
+
def rebuild_merged_and_index(sid: str):
|
| 73 |
+
"""Re‑embed everything for *this* search id."""
|
| 74 |
+
up_folder, _, merged_file, _ = get_paths(sid)
|
| 75 |
+
|
| 76 |
+
merged_text = ""
|
| 77 |
+
for filename in os.listdir(up_folder):
|
| 78 |
+
if filename.lower().endswith((".pdf", ".txt")):
|
| 79 |
+
merged_text += extract_text(os.path.join(up_folder, filename)) + "\n\n"
|
| 80 |
+
|
| 81 |
+
with open(merged_file, "w", encoding='utf-8') as f:
|
| 82 |
+
f.write(merged_text)
|
| 83 |
+
|
| 84 |
+
paras = re.split(r'\n\s*\n+', merged_text)
|
| 85 |
+
paras = [p.strip().replace('\n', ' ') for p in paras if len(p.strip().split()) > 4]
|
| 86 |
+
if not paras:
|
| 87 |
+
index_data[sid] = ([], None, None)
|
| 88 |
+
return
|
| 89 |
+
|
| 90 |
+
embed = model.encode(paras, batch_size=32, show_progress_bar=False)
|
| 91 |
+
embed = np.asarray(embed)
|
| 92 |
+
if embed.ndim == 1:
|
| 93 |
+
embed = embed[np.newaxis, :]
|
| 94 |
+
faiss.normalize_L2(embed)
|
| 95 |
+
idx = faiss.IndexFlatIP(embed.shape[1])
|
| 96 |
+
idx.add(embed)
|
| 97 |
+
|
| 98 |
+
index_data[sid] = (paras, embed, idx)
|
| 99 |
+
|
| 100 |
+
# ── routes ─────────────────────────────────────────────────────────────────────
|
| 101 |
+
@app.route("/", methods=["GET", "POST"])
|
| 102 |
+
def index():
|
| 103 |
+
# Each *page load* gets its own UUID, preserved via hidden form fields/URLs
|
| 104 |
+
sid = request.args.get("sid") or request.form.get("sid")
|
| 105 |
+
if not sid:
|
| 106 |
+
sid = str(uuid.uuid4())
|
| 107 |
+
|
| 108 |
+
up_folder, _, _, _ = get_paths(sid) # ensure dirs exist
|
| 109 |
+
paragraphs, embeddings, index_faiss = index_data.get(sid, ([], None, None))
|
| 110 |
+
|
| 111 |
+
results = []
|
| 112 |
+
query = ""
|
| 113 |
+
k = 5
|
| 114 |
+
|
| 115 |
+
if request.method == "POST":
|
| 116 |
+
query = request.form.get("query", "").strip()
|
| 117 |
+
try:
|
| 118 |
+
k = int(request.form.get("topk", 5))
|
| 119 |
+
except ValueError:
|
| 120 |
+
k = 5
|
| 121 |
+
|
| 122 |
+
if paragraphs and query:
|
| 123 |
+
q_embed = model.encode([query])
|
| 124 |
+
q_embed = np.asarray(q_embed)
|
| 125 |
+
if q_embed.ndim == 1:
|
| 126 |
+
q_embed = q_embed[np.newaxis, :]
|
| 127 |
+
faiss.normalize_L2(q_embed)
|
| 128 |
+
D, I = index_faiss.search(q_embed, k=min(k, len(paragraphs)))
|
| 129 |
+
results = [paragraphs[i] for i in I[0]]
|
| 130 |
+
|
| 131 |
+
_, res_folder, _, result_file = get_paths(sid)
|
| 132 |
+
with open(result_file, "w", encoding='utf-8') as f:
|
| 133 |
+
for para in results:
|
| 134 |
+
f.write(para + "\n\n")
|
| 135 |
+
|
| 136 |
+
return render_template("index.html", results=results, query=query, topk=k, sid=sid)
|
| 137 |
+
|
| 138 |
+
@app.route("/upload", methods=["POST"])
|
| 139 |
+
def upload_file():
|
| 140 |
+
sid = request.args.get("sid")
|
| 141 |
+
if not sid:
|
| 142 |
+
return ("Missing sid", 400)
|
| 143 |
+
|
| 144 |
+
up_folder, _, _, _ = get_paths(sid)
|
| 145 |
+
uploaded_files = request.files.getlist("file")
|
| 146 |
+
for file in uploaded_files:
|
| 147 |
+
if file and file.filename.lower().endswith((".pdf", ".txt")):
|
| 148 |
+
file.save(os.path.join(up_folder, file.filename))
|
| 149 |
+
|
| 150 |
+
rebuild_merged_and_index(sid)
|
| 151 |
+
return ("", 204)
|
| 152 |
+
|
| 153 |
+
@app.route("/download")
|
| 154 |
+
def download():
|
| 155 |
+
sid = request.args.get("sid")
|
| 156 |
+
if not sid:
|
| 157 |
+
return ("Missing sid", 400)
|
| 158 |
+
|
| 159 |
+
_, _, _, result_file = get_paths(sid)
|
| 160 |
+
if not os.path.exists(result_file):
|
| 161 |
+
return ("Nothing to download", 404)
|
| 162 |
+
return send_file(result_file, as_attachment=True)
|
| 163 |
+
|
| 164 |
+
@app.route("/download_merged")
|
| 165 |
+
def download_merged():
|
| 166 |
+
sid = request.args.get("sid")
|
| 167 |
+
if not sid:
|
| 168 |
+
return ("Missing sid", 400)
|
| 169 |
+
|
| 170 |
+
_, _, merged_file, _ = get_paths(sid)
|
| 171 |
+
if not os.path.exists(merged_file):
|
| 172 |
+
return ("Nothing to download", 404)
|
| 173 |
+
return send_file(merged_file, as_attachment=True)
|
| 174 |
+
|
| 175 |
+
|
| 176 |
+
@app.route("/reset")
|
| 177 |
+
def reset():
|
| 178 |
+
sid = request.args.get("sid")
|
| 179 |
+
if not sid:
|
| 180 |
+
return redirect(url_for('index'))
|
| 181 |
+
|
| 182 |
+
up_folder, res_folder, _, _ = get_paths(sid)
|
| 183 |
+
for folder in [up_folder, res_folder]:
|
| 184 |
+
if os.path.exists(folder):
|
| 185 |
+
for f in os.listdir(folder):
|
| 186 |
+
os.remove(os.path.join(folder, f))
|
| 187 |
+
|
| 188 |
+
index_data.pop(sid, None) # drop cached embeddings
|
| 189 |
+
return redirect(url_for('index'))
|
| 190 |
+
|
| 191 |
+
#if __name__ == "__main__":
|
| 192 |
+
# from waitress import serve
|
| 193 |
+
# # Use threads to approximate “workers” on Windows (Waitress is single‑process).
|
| 194 |
+
# serve(app, host="0.0.0.0", port=9001, threads=4)
|
| 195 |
+
|
| 196 |
+
|
| 197 |
+
if __name__ == "__main__":
|
| 198 |
+
app.run(host="0.0.0.0", port=7860)
|
| 199 |
+
|
requirements.txt
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core UI
|
| 2 |
+
gradio>=4.37.0
|
| 3 |
+
flask
|
| 4 |
+
# Embeddings / transformers
|
| 5 |
+
sentence-transformers==2.7.0
|
| 6 |
+
transformers>=4.40.0
|
| 7 |
+
|
| 8 |
+
# Torch backend (CPU is fine on HF Spaces free tier)
|
| 9 |
+
torch>=2.2.0
|
| 10 |
+
|
| 11 |
+
# PDF + utils
|
| 12 |
+
PyPDF2==3.0.1
|
| 13 |
+
numpy<2
|
| 14 |
+
|
| 15 |
+
# Vector search
|
| 16 |
+
faiss-cpu==1.8.0
|
| 17 |
+
|
| 18 |
+
accelerate>=0.28.0
|
| 19 |
+
scikit-learn>=1.3.0
|
templates/index.html
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>Retriever</title>
|
| 5 |
+
<style>
|
| 6 |
+
body { font-family:sans-serif; max-width:800px; margin:40px auto; }
|
| 7 |
+
progress { width:300px; height:20px; vertical-align:middle; }
|
| 8 |
+
#uploadStatus { margin-left:10px; font-weight:bold; }
|
| 9 |
+
#uploadProgress::-webkit-progress-value { background:#4caf50; }
|
| 10 |
+
#uploadProgress::-webkit-progress-bar { background:#eee; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<h2>Upload Text or PDF Files</h2>
|
| 15 |
+
|
| 16 |
+
<input type="file" id="fileUpload" multiple><br><br>
|
| 17 |
+
<progress id="uploadProgress" value="0" max="100" style="display:none;"></progress>
|
| 18 |
+
<span id="uploadStatus"></span>
|
| 19 |
+
|
| 20 |
+
<script>
|
| 21 |
+
// Embed search‑id from the server
|
| 22 |
+
const SID = "{{ sid }}";
|
| 23 |
+
|
| 24 |
+
document.getElementById("fileUpload").addEventListener("change", function () {
|
| 25 |
+
const files = this.files;
|
| 26 |
+
if (files.length === 0) return;
|
| 27 |
+
|
| 28 |
+
const formData = new FormData();
|
| 29 |
+
for (const file of files) {
|
| 30 |
+
formData.append("file", file);
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
const xhr = new XMLHttpRequest();
|
| 34 |
+
const progressBar = document.getElementById("uploadProgress");
|
| 35 |
+
const statusText = document.getElementById("uploadStatus");
|
| 36 |
+
|
| 37 |
+
// ⬇️ send sid with the upload
|
| 38 |
+
xhr.open("POST", `/upload?sid=${SID}`, true);
|
| 39 |
+
|
| 40 |
+
xhr.upload.onprogress = function (e) {
|
| 41 |
+
if (e.lengthComputable) {
|
| 42 |
+
const percent = Math.round((e.loaded / e.total) * 100);
|
| 43 |
+
progressBar.value = percent;
|
| 44 |
+
progressBar.style.display = "inline-block";
|
| 45 |
+
statusText.textContent = `Uploading: ${percent}%`;
|
| 46 |
+
}
|
| 47 |
+
};
|
| 48 |
+
|
| 49 |
+
xhr.onload = function () {
|
| 50 |
+
progressBar.value = 100;
|
| 51 |
+
statusText.textContent = "✅ Upload complete!";
|
| 52 |
+
setTimeout(() => { progressBar.style.display="none"; statusText.textContent=""; }, 1500);
|
| 53 |
+
};
|
| 54 |
+
xhr.onerror = function () { statusText.textContent = "❌ Upload failed."; };
|
| 55 |
+
xhr.send(formData);
|
| 56 |
+
});
|
| 57 |
+
|
| 58 |
+
document.querySelector('form[method="post"]').addEventListener("submit", function () {
|
| 59 |
+
const progressBar = document.getElementById("searchProgress");
|
| 60 |
+
const statusText = document.getElementById("searchStatus");
|
| 61 |
+
progressBar.removeAttribute("value"); // indeterminate mode
|
| 62 |
+
progressBar.style.display = "inline-block";
|
| 63 |
+
statusText.textContent = "🔍 Processing search...";
|
| 64 |
+
});
|
| 65 |
+
</script>
|
| 66 |
+
|
| 67 |
+
<hr>
|
| 68 |
+
|
| 69 |
+
<!-- ⬇️ the hidden sid travels with every form submit -->
|
| 70 |
+
<form method="post">
|
| 71 |
+
<input type="hidden" name="sid" value="{{ sid }}">
|
| 72 |
+
<label>Enter your question or claim:</label><br>
|
| 73 |
+
<textarea name="query" rows="4" cols="80" required>{{ query }}</textarea><br><br>
|
| 74 |
+
|
| 75 |
+
<label>Number of paragraphs to return:</label>
|
| 76 |
+
<input type="number" name="topk" value="{{ topk }}" min="1" max="50"><br><br>
|
| 77 |
+
|
| 78 |
+
<button type="submit">Retrieve</button>
|
| 79 |
+
<progress id="searchProgress" max="100" style="width:300px; display:none;"></progress>
|
| 80 |
+
<span id="searchStatus" style="margin-left:10px;"></span>
|
| 81 |
+
</form>
|
| 82 |
+
|
| 83 |
+
<br>
|
| 84 |
+
<form method="get" action="/reset" onsubmit="return confirm('Clear all uploaded files and results?');">
|
| 85 |
+
<input type="hidden" name="sid" value="{{ sid }}">
|
| 86 |
+
<button type="submit" style="color:red;">Start New Search</button>
|
| 87 |
+
</form>
|
| 88 |
+
|
| 89 |
+
{% if results %}
|
| 90 |
+
<br>
|
| 91 |
+
<a href="{{ url_for('download', sid=sid) }}">Download these results</a> |
|
| 92 |
+
<a href="{{ url_for('download_merged', sid=sid) }}">Download full merged text</a>
|
| 93 |
+
<h3>Matching Paragraphs</h3>
|
| 94 |
+
<ol>
|
| 95 |
+
{% for para in results %}
|
| 96 |
+
<li><p>{{ para }}</p></li>
|
| 97 |
+
{% endfor %}
|
| 98 |
+
</ol>
|
| 99 |
+
{% endif %}
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
</body>
|
| 103 |
+
</html>
|